-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (81 loc) · 2.43 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SMIT-assignment-02</title>
<style>
body{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
th{
text-align: center;
}
th, td {
padding: 15px;
}
table,th,td{
border: 2px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<div class="container">
<table style="margin: auto;">
<caption style="font-size: 2rem;">CUSTOMER BILL TABLE</caption>
<tr>
<th rowspan="11">TCB</th>
<th>Order no:</th>
<td colspan="3">#adf980</td>
</tr>
<tr>
<th>Order date:</th>
<td colspan="3">21-1-2023</td>
</tr>
<tr>
<th colspan="4">CUSTOMER DETAILS</th>
</tr>
<tr>
<th>NAME</th>
<td colspan="3">A.basit</td>
</tr>
<tr>
<th>ADDRESS</th>
<td colspan="3">Memon goth ,kararchi</td>
</tr>
<tr>
<th colspan="4">ORDER DETAILS</th>
</tr>
<tr>
<td>1</td>
<td>jhon duckett html and css</td>
<td>Book</td>
<td>$90</td>
</tr>
<tr>
<td>2</td>
<td>jhon duckett javascript</td>
<td>Book</td>
<td>$100</td>
</tr>
<tr>
<td>3</td>
<td>13 pro max</td>
<td>mobile</td>
<td>$1000</td>
</tr>
<tr>
<td>4</td>
<td>A smart way to learn javascript</td>
<td>Book</td>
<td>$60</td>
</tr>
<tr>
<th colspan="3" style="text-align: right;">Total:</th>
<td>$1,250</td>
</tr>
</table>
</div>
</body>
</html>