-
Notifications
You must be signed in to change notification settings - Fork 0
/
2table.html
64 lines (64 loc) · 1.53 KB
/
2table.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tables</title>
<meta name="description" content="practice tables">
<meta name="author" content="Sarathi">
<style>
th{
text-align: left;
padding: 10px;
background-color:rgba(0, 136, 141, 0.596) ;
border: 1px solid black;
}
td{
padding: 10px;
border: 1px solid black;
}
</style>
</head>
<body>
<table style="border:1px solid black;margin-left: auto ;margin-right: auto;border-collapse: collapse;">
<tr>
<th colspan="3">Invoice #12345ABC</th>
<th style="width:200px ;">18 Jul 2019</th>
</tr>
<tr>
<td colspan="2"><b>Pay to:</b><br>The Tech Parkb <br>123 Willow Street <br>Boulevar,LA-567892</td>
<td colspan="2"><b>Customer:</b><br>John Lark <br>Dummy Apartments <br>276 Main Street <br>Boulevard,LA-567892</td>
</tr>
<tr>
<th style="width:300px ;">Name/Description</th>
<th>Qty.</th>
<th>MRP</th>
<th>Amount</th>
</tr>
<tr>
<td>Briyani</td>
<td>3</td>
<td>400</td>
<td>1200</td>
</tr>
<tr>
<td>Choclate Shake</td>
<td>3</td>
<td>200</td>
<td>600</td>
</tr>
<tr>
<th colspan="3">Subtotal</th>
<td>1800</td>
</tr>
<tr>
<th colspan="2">Tax</th>
<td>10%</td>
<td>180</td>
</tr>
<tr>
<th colspan="3">Grand Total</th>
<td>Rs 1620</td>
</tr>
</table>
</body>
</html>