-
Notifications
You must be signed in to change notification settings - Fork 0
/
heaviest_birds.html
79 lines (76 loc) · 2.03 KB
/
heaviest_birds.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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>Heaviest Birds table</title>
</head>
<body>
<h1>Heaviest Birds</h1>
<table>
<thead>
<tr>
<th>Animal</th>
<th>Average Mass[kg(lb)]</th>
<th>Maximum Mass[kg(lb)]</th>
<th>Flighted</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ostrich</td>
<td>104(230)</td>
<td>1568.8(346)</td>
<td>No</td>
</tr>
<tr>
<td>Somali Ostrich</td>
<td>90(200)</td>
<td>130(287)</td>
<td>No</td>
</tr>
<tr>
<td>Wild Turkey</td>
<td>13.5(29.8)</td>
<td>39(86)</td>
<td>Yes</td>
</tr>
</tbody>
</table>
<h2>V2</h2>
<table>
<thead>
<tr>
<th rowspan="2">Animal</th>
<th colspan="2">Average Mass</th>
<th rowspan="2">Flighted</th>
</tr>
<tr>
<th>KG</th>
<th>LB</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ostrich</td>
<td>104</td>
<td>230</td>
<td>No</td>
</tr>
<tr>
<td>Somali Ostrich</td>
<td>90</td>
<td>200</td>
<td>No</td>
</tr>
<tr>
<td>Wild Turkey</td>
<td>13.5</td>
<td>29.8</td>
<td>Yes</td>
</tr>
</tbody>
</table>
</body>
</html>