-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImages.htm
More file actions
61 lines (60 loc) · 835 Bytes
/
Images.htm
File metadata and controls
61 lines (60 loc) · 835 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Images</title>
</head>
<body bgcolor= #eee31b>
<h1>A simple table</h1>
<table border="2px" cellpadding="10" cellspacing="10" rules="cols" frame="vsides">
<caption>
table 1
</caption>
<thead>
<tr>
<th>
Item
</th>
<th>
Quantity
</th>
<th>
Price
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Apples
</td>
<td rowspan="2">
2Kgs
</td>
<td>
240
</td>
</tr>
<tr>
<td>
Tomatoes
</td>
<!-- <td>
3Kgs
</td>-->
<td>
120
</td>
</tr>
<tr>
<td colspan="2" align="center">
Total
</td>
<td>
500
</td>
</tr>
</tbody>
</table>
</body>
</html>