-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_demo.html
62 lines (62 loc) · 1.3 KB
/
table_demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Table contents</title>
</head>
<body>
<h2>Digital promos</h2>
<table>
<thead>
<tr>
<th>Subscription</th>
<th>Price</th>
<th>Support</th>
</tr>
</thead>
<tr>
<td>Free</td>
<td>Free</td>
<td>N/A</td>
</tr>
<tr>
<td>Personal</td>
<td>$9.99</td>
<td>Weekdays</td>
</tr>
<tr>
<td>Business</td>
<td>$49.99</td>
<td>24/7</td>
</tr>
</table>
<h2>Heaviest Animals</h2>
<table>
<thead>
<tr>
<th rowspan="2">Animal</th>
<th colspan="2">Total weight</th>
<th rowspan="2">Total length(meters)</th>
</tr>
<tr>
<th>Average mass</th>
<th>Maximum mass</th>
</tr>
</thead>
<tr>
<td>Blue Whale</td>
<td>110</td>
<td>190</td>
<td>25</td>
</tr>
<tr>
<td>North Pacific right Whale</td>
<td>60</td>
<td>120</td>
<td>15.5</td>
</tr>
</table>
</body>
</html>