forked from ltw-webdev-1/masthead-semantics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 939 Bytes
/
index.html
File metadata and controls
40 lines (35 loc) · 939 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en-ca">
<head>
<meta charset="utf-8">
<title>The Solar System</title>
<meta name="viewport" content="width=device width, initial scale=1">
</head>
<body>
<header>
<nav>
<img src="images/logo.svg" alt="">
<h1> The Solar System</h1>
<ul>
<li><a href="">Stars</a></li>
<li><a href="">Terrestrial planets</a></li>
<li><a href=""> Gas giants</a></li>
<li><a href=""> Dwarf planets</a></li>
<li><a href="">Asteroids</a></li>
<li><a href="">Comets</a></li>
</ul>
</nav>
</header>
<main>
<p>---</p>
<figure>
<img src="images/banner.svg" alt="">
<figcaption>The Solar System—our home in the stars</figcaption>
</figure>
</main>
<p>---</p>
<footer>
The Solar System is the gravitationally bound system comprising the Sun and the planetary system that orbits it.
</footer>
</body>
</html>