-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpt6.html
More file actions
79 lines (65 loc) · 1.91 KB
/
pt6.html
File metadata and controls
79 lines (65 loc) · 1.91 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
76
77
78
<html>
<head>
<title>HTML TABLE</title>
<style>
table, th, td{
border: 2px solid black;
padding: 2px;
border-collapse: collapse;
}
</style>
</head>
<body>
<table border="4">
<tr>
<th rowspan="50">TCB</th>
</tr>
<tr>
<th rowspan="1">Order no:</th>
<td colspan="3">#ABC001</td>
</tr>
<tr>
<th rowspan="1">Order Date:</th>
<td colspan="3">23-Mar-2016</td>
</tr>
<tr>
<th colspan="6">Customer</th>
</tr>
<th rowspan="1">Name:</th>
<td colspan="3">John papas</td>
<tr>
<th rowspan="1">Address:</th>
<td colspan="3">Independent Dau 5th str, 11511</td>
</tr>
<tr>
<th colspan="6">Order Details</th>
</tr>
<tr>
<td rowspan="1">1</td>
<td>Of Mice and Men</td>
<td>Book</td>
<td>10.00$</td>
</tr>
<tr>
<td rowspan="1">2</td>
<td>Len Miserable</td>
<td>Book</td>
<td>12.00$</td>
</tr>
<tr>
<td rowspan="1">3</td>
<td>Game of Thrones - S01</td>
<td>DVD</td>
<td>50.00$</td>
</tr>
<tr>
<td rowspan="1">4</td>
<td>Samsung Galaxy</td>
<td>Mobile Phone</td>
<td>200.00$</td>
</tr>
<th colspan="3">Total</th>
<td colspan="3">272.00$</td>
</table>
</body>
</html>