-
Notifications
You must be signed in to change notification settings - Fork 1
/
iceland.html
83 lines (78 loc) · 2.9 KB
/
iceland.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/main.css">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<title>Iceland</title>
</head>
<body class="icelandPage">
<!-- Start Logo and Navigation Bar -->
<header>
<p class="logo">Super Saturnians</p>
<ul class="nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./australia.html">Australia</a></li>
<li><a class="active" href="./iceland.html">Iceland</a></li>
<li><a href="./italy.html">Italy</a></li>
<li><a href="./japan.html">Japan</a></li>
</ul>
</header>
<!-- End Logo and Navigation Bar -->
<!-- Start Country Image, Headline, Container with Cities, Landmarks, and Famous Citizens -->
<main>
<div class=mainBodyBackground>
<h1>Iceland</h1>
<div class="country_image">
<img src="./images/iceland-country-image.jpg" alt="Iceland Landscape">
</div>
<p class="headline">
Don't just take a vacation. Pursue adventure. In Iceland.
</p>
</div>
<!-- Container with Cities, Landmarks, and Famous Citizens -->
<section class="parent">
<div class="cities">
<h3>Cities of Interest</h3>
<ul>
<li>Reykjavik</li>
<li>Akureyri</li>
<li>Húsavík</li>
<li>Vík í Mýrdal</li>
<li>Seyðisfjörður</li>
<li>Siglufjörður</li>
<li>Kópavogur</li>
<li>Hafnarfjörður</li>
<li>Selfoss</li>
</ul>
</div>
<div class="landmarks">
<h3>Landmarks of Interest</h3>
<ul>
<li>Solfarid Sculpture</li>
<li>Hvitserkur - The Dinosaur Rock</li>
<li>The Blue Lagoon</li>
<li>Northern Lights</li>
<li>Svartifoss</li>
<li>Perlan</li>
<li>Akranes Lighthouse</li>
</ul>
</div>
<div class="citizens">
<h3>Famous Citizens</h3>
<ul>
<li>Björk</li>
<li>Stefan Karl Stefansson</li>
<li>Leif Erikson</li>
</ul>
</div>
</section>
</main>
<!-- End Country Image, Headline, Container with Cities, Landmarks, and Famous Citizens -->
<!-- Start Copyright -->
<footer>© Super Saturnians 2021</footer>
<!-- End Copyright -->
</body>
</html>