forked from SIT-Training-Group-2/training-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmars.html
84 lines (81 loc) · 3.05 KB
/
mars.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
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="mars.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Franklin&family=Space+Mono:wght@700&family=Trispace:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="navhigh.css">
<title>Mars Facts</title>
</head>
<body>
<header id="thehead">
<div id="hetitle">
<h2>THE PLANETS</h2>
</div>
<div id="navb">
<ul id="navli">
<li><a href="/mercury.html" title="Mercury" id="mercury">MERCURY</a></li>
<li><a href="/venus.html" title="Venus" id="venus">VENUS</a></li>
<li><a href="/earth.html" title="Earth" id="earth">EARTH</a></li>
<li><a href="/mars.html" title="Mars" id="mars">MARS</a></li>
<li><a href="/jupi1.html" title="Jupiter" id="jupiter">JUPITER</a></li>
<li><a href="/saturn.html" title="Saturn" id="saturn">SATURN</a></li>
<li><a href="/uranus1.html" title="Uranus" id="uranus">URANUS</a></li>
<li><a href="/neptune.html" title="Neptune" id="neptune">NEPTUNE</a></li>
</ul>
</div>
</header>
<div id="themainimg">
<img src=".\asset\planet-mars.png" id="mars-image-main" title="Mars" alt="mars">
</div>
<div id="desc">
<h1>MARS</h1>
<p id="para">Mars is the fourth planet from the Sun – a dusty, cold, desert world with a very thin atmosphere. Mars is also a dynamic planet with seasons, polar ice caps, canyons, extinct volcanoes, and evidence that it was even more active in the past.</p>
<p id="sopar">Source: <a href="https://solarsystem.nasa.gov/planets/mars/overview/" title="NASA: Mars" id="solink">NASA</a></p>
</div>
<div id="view-list">
<table id="viewtable">
<tr>
<td>Overview</td>
</tr>
<tr>
<td>Internal Structure</td>
</tr>
<tr>
<td>Surface Geology</td>
</tr>
</table>
</div>
<div id="factlist">
<ul id="factl">
<li>
<ul class="ext1">
<li>ROTATION TIME</li>
<li><br>24.6 Hours</li>
</ul>
</li>
<li>
<ul class="ext1">
<li>REVOLUTION TIME</li>
<li><br>687 Days</li>
</ul>
</li>
<li>
<ul class="ext1">
<li>RADIUS</li>
<li><br>3,389.5 km</li>
</ul>
</li>
<li>
<ul class="ext1">
<li>AVERAGE TEMP.</li>
<li><br>-81° F</li>
</ul>
</li>
</ul>
</div>
</body>
</html>