-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 2.39 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Earth</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<canvas id="canvas"></canvas>
<main>
<section>
<div id="earth"></div>
<div id="info">
<h1>Earth</h1>
<p>Earth is the third planet from the Sun and the only astronomical object known to harbor life. According to radiometric dating and other evidence, Earth formed over 4.5 billion years ago. Earth's gravity interacts with other objects in space, especially the Sun and the Moon, which is Earth's only natural satellite. Earth orbits around the Sun in 365.256 days, a period known as an Earth year. During this time, Earth rotates about its axis about 366.256 times.</p>
</div>
<div class="spacer"></div>
</section>
<section>
<div id="amogus"></div>
<div id="info">
<h1>Amogus</h1>
<p>Amogus</p>
</div>
<div class="spacer"></div>
</section>
<section>
<div id="mars"></div>
<div id="info">
<h1>Mars</h1>
<p>Mars is the fourth planet from the Sun and the second-smallest planet in the Solar System, being larger than only Mercury. In English, Mars carries the name of the Roman god of war and is often referred to as the "Red Planet". The latter refers to the effect of the iron oxide prevalent on Mars's surface, which gives it a reddish appearance distinctive among the astronomical bodies visible to the naked eye.</p>
</div>
<div class="spacer"></div>
</section>
<section>
<div id="jupiter"></div>
<div id="info">
<h1>Jupiter</h1>
<p>Jupiter is the fifth planet from the Sun and the largest in the Solar System. It is a gas giant with a mass more than 2.5 times that of all the other planets in the Solar System combined and slightly less than one-thousandth the mass of the Sun. Its diameter is eleven times that of Earth, and a tenth that of the Sun.</p>
<p>NOTE: Obviously not to scale</p>
</div>
<div class="spacer"></div>
</section>
</main>
<script type="module" src="main.js"></script>
</body>
</html>