This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
forked from nss-day-cohort-47/hello-world-super-saturnians
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.56 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dreaming of Travel</title>
<link rel="stylesheet" href="./styles/main.css">
</head>
<body>
<header>
<h1>Dreaming of Travel</h1>
<ul class="nav">
<li><a class="active" href="/index.html">Home</a></li>
<li><a href="/australia.html">Australia</a></li>
<li><a href="/iceland.html">Iceland</a></li>
<li><a href="/italy.html">Italy</a></li>
<li><a href="/japan.html">Japan</a></li>
</ul>
<p class="clickImageInfo">Click on any of the images below to learn more about that location!</p>
</header>
<main>
<section class="indexLinks">
<div class="japanLink">
<h3>Japan</h3>
<a href="/japan.html"><img src="/images/giantsizegundam.jpg" alt="Japanese Landscape"></a>
</div>
<div class="australiaLink">
<h3>Australia</h3>
<a href="/australia.html"><img src="images/ausLandscape.jpg" alt="Australian Landscape"></a>
</div>
<div class="icelandLink">
<h3>Iceland</h3>
<a href="/iceland.html"><img src="./images/iceland-homepage.jpg" alt="Iceland Landscape"></a>
</div>
<div class="italyLink">
<h3>Italy</h3>
<a href="/italy.html"><img src="images/rome.jpg" alt="Italian Landscape"></a>
</div>
</section>
</main>
<footer>© Super Saturnians 2021</footer>
</body>
</html>