forked from MaryOwusu/SE_WebTech_Repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGroup_5.html
More file actions
88 lines (80 loc) · 2.45 KB
/
Group_5.html
File metadata and controls
88 lines (80 loc) · 2.45 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
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<a href="Screenshoot/Screenshoot.png">Screenshoot</a>
<style>
table {
width: 70%;
height: 40%;
margin: 0 auto;
border-collapse: collapse;
}
th, td{
border: 2px solid black;
text-align: center;
padding: 5px;
}
</style>
</head>
<body>
<table>
<tr>
<th rowspan="16">TCB</th>
</tr>
<tr>
<th rowspan="1">Order no:</th>
<td colspan="3"; style="text-align: left"; >#ABC001</td>
</tr>
<tr>
<th rowspan="1">Order date:</th>
<td colspan="3"; style="text-align: left";>23-Mar-2016</td>
</tr>
<th rowspan="3" colspan="4">Customer</th>
</tr>
<tr></tr>
<tr></tr>
<tr>
<th rowspan="1">Name:</th>
<td colspan="3"; style="text-align: left";>John Papas</td>
</tr>
<tr>
<th rowspan="1">Address:</th>
<td colspan="3"; style="text-align: left";>Indepedence Day 5th str, 11511</td>
</tr>
<tr>
<th colspan="4">Order Details</th>
</tr>
<tr>
<td rowspan="3"; style="text-align: left";>1</td>
<td style="text-align: left";>Of Mice and Men</td>
<td style="text-align: left";>Book </td>
<td rowspan="3"; style="text-align: right";>10.00€</td>
</tr>
<tr></tr>
<tr></tr>
<tr>
<td style="text-align: left";>2</td>
<td style="text-align: left";>Les Miserables</td>
<td style="text-align: left";>Book</td>
<td style="text-align: right";>12.00€</td>
</tr>
<tr>
<td style="text-align: left";>3</td>
<td style="text-align: left";>Game of Thrones-S01</td>
<td style="text-align: left";>DVD</td>
<td style="text-align: right";>50.00€</td>
</tr>
<tr>
<td style="text-align: left";>4</td>
<td style="text-align: left";>Samsung Galaxy</td>
<td style="text-align: left";>Mobile Phone</td>
<td style="text-align: right";>200.00€</td>
</tr>
</tr>
<th rowspan="4" colspan="3"; style="text-align: right";>Total:</th>
<td style="text-align: right";>272.00€</td>
</tr>
</tr>
</table>
</body>
</html>