-
Notifications
You must be signed in to change notification settings - Fork 0
/
solarsystem.html
57 lines (56 loc) · 2.62 KB
/
solarsystem.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
<!DOCTYPE html>
<html>
<head>
<title>Solar System</title>
<!-- style to all of those table tags internal CSS.-->
<style>
table, th, td {
border: 2px solid black;
}
</style>
</head>
<body style="background-color: lightgoldenrodyellow;">
<h1 style="font-family: 'Courier New', Courier, monospace;
font-size: 80px;
color:rgb(120, 100, 20)">
Solar System
</h1>
<img src="https://upload.wikimedia.org/wikipedia/commons/c/cb/Planets2013.svg" alt="Solar System image" height= "250px" width="700px">
<p>The solar system consists of the sun and everything that orbits the sun. This includes the eight planets and their moons, the dwarf planets, asteroids, comets and other small objects.
</p>
<p> All the planets and dwarf planets, the rocky asteroids, and the icy bodies in the Kuiper belt move around the Sun in elliptical orbits in the same direction that the Sun rotates. This motion is termed prograde, or direct, motion.
</p>
<p><strong><u> Planets in the solar system: </u></strong> </p>
<table style="border: 2px solid black">
<tr style="background-color:lightgreen">
<th>No. </th>
<th>Planet Name </th>
<th>Distance from Sun </th>
</tr>
<tr>
<td>1 </td> <td>Mercury</td> <td>57.91 m km</td>
</tr>
<tr>
<td>2 </td> <td>Venus</td> <td>108.2 m km</td>
</tr>
<tr>
<td>3 </td> <td>Earth</td> <td>149.6 m km</td>
</tr>
<tr>
<td>4 </td> <td>Mars</td> <td>227.9 m km</td>
</tr>
<tr>
<td>5 </td> <td>Jupiter</td> <td>778.5 m km</td>
</tr>
<tr>
<td>6 </td> <td>Saturn</td> <td>1.434 b km</td>
</tr>
<tr>
<td>7 </td> <td>Uranus</td> <td>2.871 b km</td>
</tr>
<tr>
<td>8</td> <td>Neptune</td> <td>4.495 billion km</td>
</tr>
</table>
</body>
</html>