-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
69 lines (68 loc) · 1.6 KB
/
Copy pathtable.html
File metadata and controls
69 lines (68 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table</title>
</head>
<body>
<table border="black">
<caption>
<h3>Food Menu</h3>
</caption>
<thead>
<tr>
<th rowspan="2">Item</th>
<th colspan="2">Price</th>
</tr>
<tr>
<th>INR</th>
<th>USD</th>
</tr>
</thead>
<tbody>
<tr>
<td>Frooti</td>
<td>10</td>
<td>0.14</td>
</tr>
<tr>
<td>Samosa</td>
<td>15</td>
<td>0.17</td>
</tr>
<tr>
<td>Chips</td>
<td>20</td>
<td>0.20</td>
</tr>
</tbody>
</table>
<table border="black">
<caption>
A test table with must cells
</caption>
<tr>
<td rowspan="2"> </td>
<td colspan="2">Average</td>
<td rowspan="2">Red eys</td>
</tr>
<tr>
<td>Height</td>
<td>Weight</td>
</tr>
<tr>
<td>Males</td>
<td>1.9</td>
<td>0.003</td>
<td>40%</td>
</tr>
<tr>
<td>Females</td>
<td>1.7</td>
<td>0.002</td>
<td>43%</td>
</tr>
</table>
</body>
</html>