forked from vishvapatel/Web-Devlopment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
75 lines (72 loc) · 1.29 KB
/
practice.html
File metadata and controls
75 lines (72 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Practice</title>
<style>
</style>
</head>
<body>
<h1 align="center"> A Complex Table</h1>
<table border="3px" align="center">
<tr>
<th colspan="3"><b>Invoice #123456789</b></th>
<th colspan="2"> <b>14th January 2025</b> </th>
</tr>
<tr>
<td colspan="2">
<b>Pay to:</b><br/>
<p>Acme Billing co.<br>
123 Main St.<br>
Cityville,NA 12345
</p>
</td>
<td colspan="3">
<b>Customer:</b><br/>
<p>John Smith<br>
321 Willow Way<br>
Southeast Northwestershire, MA 54321
</p>
</td>
</tr>
<tr>
<th>
Name/Description
</th>
<th>
Qty.
</th>
<th>
@
</th>
<th colspan="2">
Cost
</th>
</tr>
<tr>
<td>Paperclips</td>
<td>1000</td>
<td>0.01</td>
<td colspan="2">10.00</td>
</tr>
<tr>
<td>Staples(box)</td>
<td>100</td>
<td>1.00</td>
<td colspan="2">100.00</td>
</tr>
<tr>
<td colspan="3" align="center"><b>Subtotal</b></td>
<td>110.0</td>
</tr>
<tr>
<td colspan="2" align="center"><b>Tax</b></td>
<td>8%</td>
<td>8.80</td>
</tr>
<tr>
<td colspan="3" align="center"><b>Grand Total</b></td>
<td>$ 118.80</td>
</tr>
</table>
</body>
</html>