-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (51 loc) · 2.32 KB
/
index.html
File metadata and controls
70 lines (51 loc) · 2.32 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
<html>
<head>
<title>Hello World!!</title>
</head>
<body>
<h1>Hello World!</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/P7hmSOob_io" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen align="right"></iframe>
<h2><b>A few fact about the world we live in</b></h2>
<img src="earth.jpg" height="300" width="300">
<br> <br>
Earth is the third planet from the sun and is the largest of the terrestrial planets. Unlike the other planets in the solar system that are named after classic deities the Earth's name comes from the Anglo-Saxon word erda which means ground or soil.The Earth was formed approximately 4.54 billion years ago and is the only known planet to support life.
<hr>
<h3><b>About the Earth</b></h3>
<ul>
<li><b>Mass:</b> 5,972,000,000,000 billion kg</li>
<li><b>Diameter at equator:</b> 12,756 km</li>
<li><b>Satellites:</b> <a href="https://en.wikipedia.org/wiki/Moon">The Moon</a></li>
</ul>
<hr>
<h3><b>Top 3 Earth facts</b></h3>
<ol type="1">
<li>The Eart's rotation is gradually slowing.</li>
<li>A year isn't exactly 365 days, and the Earth doesn,t take exactly 24 hours to rotate</li>
<li>70% of the Earth's surface is water, and only one-third of its fresh water is unfrozen</li>
</ol>
<hr>
<table>
<thead>
<tr>
<th>Name</th>
<th>Radius</th>
<th>Average Temperature</th>
</tr>
</thead>
<tr>
<td>Mars</td>
<td>3,390km</td>
<td>-55`C</td>
</tr>
<tr>
<td>Venus</td>
<td>6,052km</td>
<td>460`C</td>
</tr>
</table>
<hr>
Want to know more?
<br>
<button> <a href="https://en.wikipedia.org/wiki/Earth">Click here!</a></button>
</body>
</html>