-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanetdata.html
More file actions
133 lines (128 loc) · 4.9 KB
/
Copy pathplanetdata.html
File metadata and controls
133 lines (128 loc) · 4.9 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!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>Document</title>
</head>
<style>
table,td,th{
border : 2px solid black ;
border-collapse: collapse;
}
tbody{
background-color: grey;
text-align: center;
}
thead{
background-color: grey;
}
</style>
<body bgcolor="cyan">
<h1>Planets Data</h1>
<table style="width : 100%">
<caption><h2>Information about planets</h2></caption>
<thead>
<tr>
<th colspan="2"></th>
<th id="name" colspan="3">Name</th>
<th id="mass">Mass</th>
<th id="dia">Diameter</th>
<th id="den">Density</th>
<th id="gra">Gravity</th>
<th id="temp">Temperature</th>
<th id="moon">No of moons</th>
<th id="note">Note</th>
</tr>
</thead>
<tbody>
<tr>
<th id = "tp" rowspan="3" colspan="2">Teresstial Planets</th>
<th colspan="3" id="mer" headers="name tp">Mercury</th>
<td headers="mass tp mer">0.330</td>
<td headers="dia tp mer">4.879</td>
<td headers="den tp mer">5427</td>
<td headers="gra tp mer">3.7</td>
<td headers="temp tp mer">167</td>
<td headers="moon tp mer">0</td>
<td headers="note tp mer">Closest to sun</td>
</tr>
<tr>
<th colspan="3" id="ven" headers="name tp">Venus</th>
<td headers="mass tp ven">4.87</td>
<td headers="dia tp ven">12</td>
<td headers="den tp ven">5327</td>
<td headers="gra tp ven">8.7</td>
<td headers="temp tp ven">464</td>
<td headers="moon tp ven">0</td>
<td headers="note tp ven"> </td>
</tr>
<tr>
<th colspan="3" id="ear" headers="name tp">Earth</th>
<td headers="mass tp ear">5.87</td>
<td headers="dia tp ear">12.756</td>
<td headers="den tp ear">5527</td>
<td headers="gra tp ear">9.7</td>
<td headers="temp tp ear">15</td>
<td headers="moon tp ear">1</td>
<td headers="note tp ear">Our world</td>
</tr>
<tr>
<th id="jp" colspan="1" rowspan="4" headers="tp">Jovian planet</th>
<th id="gp" colspan="1" headers=" tp jp" rowspan="2">Gas giants</th>
<th id="jup" header="name jp gp" colspan="3">Jupiter</th>
<td headers="mass jp gp jup">6.87</td>
<td headers="dia jp gp jup">13.756</td>
<td headers="den jp gp jup">6527</td>
<td headers="gra jp gp jup">9.9</td>
<td headers="temp jp gp jup">-110</td>
<td headers="moon jp gp jup">67</td>
<td headers="note jp gp jup">Largest Planet</td>
</tr>
<tr>
<th id="sat" headers="name jp gp" colspan="3">Saturn</th>
<td headers="mass jp gp sat">8.87</td>
<td headers="dia jp gp sat">10.756</td>
<td headers="den jp gp sat">2527</td>
<td headers="gra jp gp sat">5.1</td>
<td headers="temp jp gp sat">-150</td>
<td headers="moon jp gp sat">61</td>
<td headers="note jp gp sat"> </td>
</tr>
<tr>
<th id="ig" colspan="1" headers=" tp jp" rowspan="2">Ice giants</th>
<th id="ura" header="name jp ig" colspan="3">Uranus</th>
<td headers="mass jp ig ura">2.87</td>
<td headers="dia jp ig ura">8.756</td>
<td headers="den jp ig ura">2452</td>
<td headers="gra jp ig ura">4.1</td>
<td headers="temp jp ig ura">-100</td>
<td headers="moon jp ig ura">51</td>
<td headers="note jp ig ura"> </td>
</tr>
<tr>
<th id="nep" header="name jp ig" colspan="3">Neptune</th>
<td headers="mass jp ig nep">1.87</td>
<td headers="dia jp ig nep">6.756</td>
<td headers="den jp ig nep">1452</td>
<td headers="gra jp ig nep">6.1</td>
<td headers="temp jp ig nep">-200</td>
<td headers="moon jp ig nep">11</td>
<td headers="note jp ig nep"> </td>
</tr>
<tr>
<th id="df" colspan="2" rowspan="1">Draft planet</th>
<th id="plu" header="name df" colspan="3">pluto</th>
<td headers="mass df plu">3.87</td>
<td headers="dia df plu">4.756</td>
<td headers="den df plu">1252</td>
<td headers="gra df plu">8.1</td>
<td headers="temp df plu">50</td>
<td headers="moon df plu">0</td>
<td headers="note df plu"> </td>
</tr>
</tbody>
</table>
</body>
</html>