Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions Task1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<html>
<head>
<title>Hello world</title>
</head>
<body>
<h1>Hello World !</h1>
<h2>A few facts about the world we live in</h2>
<img src="https://html-mentoraide-task.netlify.app/earth.jpeg" height="400" alt="earth image"/>
<p>Earth is the third planet from the Sun and is the largest of the terrestrial planets. The Earth is the only planet in our solar system not to be named after a Greek or Roman deity.
The Earth was formed approximately 4.54 billion years ago and is the only known planet to support life.</p>
<hr>
<h3>About the Earth</h3>
<ul>
<li> Polar Diameter: 12,714 km </li>
<li>Mass: 5.97 × 10^24 kg </li>
<li>Moons: 1 (The Moon) </li>
</ul>
<hr>

<h3>Top 3 facts about the earth </h3>
<ol>
<li>The Earth’s rotation is gradually slowing.</li>
<li>The Earth was once believed to be the centre of the universe. </li>
<li>Earth has a powerful magnetic field. </li>
</ol>
<hr>
<table>
<thead>
<tr>
<th>Name</th>
<th>Radius</th>
<th>Average Temerature</th>
</tr>
</thead>
<tbody>


<tr>
<td>Mars</td>
<td>3,396km </td>
<td>-46°c</td>

</tr>
<tr>
<td>Venus</td>
<td>6,052km </td>
<td>-462°c</td>

</tr>
</tbody>
</table>
<hr>
<p>Want to know more ?</p>
<br>
<a href="https://space-facts.com/earth/?#google_vignette"> <input type="submit" value="Click here" /> </a><br>
<video width="650" height="480" controls>
<source src="https://html-mentoraide-task.netlify.app/earth.mp4" type="video/mp4"/>
</video>


</body>
</html>