-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
30 lines (21 loc) · 841 Bytes
/
Copy pathAssignment.html
File metadata and controls
30 lines (21 loc) · 841 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Space Webpage</title>
</head>
<body>
<main>
<h1>Welcome to the Depths of Space</h1>
<p>Space is the boundless three-dimensional extent in which objects and events have relative position and direction.</p>
<h3>Our Planet Earth</h3>
<p>Earth is the only planet in the Solar System known to harbor life. It looks like a blue pearl.</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/9/97/The_Earth_seen_from_Apollo_17.jpg" alt="Beautiful view of Earth from space" width="400">
<br><br>
<a href="Dog.html">Go to the Dog Webpage</a>
</main>
<footer>
<h6>Footer Note: This page was created for learning purposes.</h6>
</footer>
</body>
</html>