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
/
italy.html
72 lines (69 loc) · 2.45 KB
/
italy.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/main.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body class="italy">
<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 href="/iceland.html">Iceland</a></li>
<li><a class="active" href="/italy.html">Italy</a></li>
<li><a href="/japan.html">Japan</a></li>
</ul>
<h1>Italy</h1>
</header>
<main>
<div class="country_image">
<img src="images/rome.jpg" alt="Roman skyline">
</div>
<p class="headline">Rediscover yourself through the sights, sounds and flavors of Italy!</p>
<section class="parent">
<div class="cities">
<!-- cities go here -->
<h3>Cities of interest</h3>
<ul>
<li>Rome</li>
<li>Milan</li>
<li>Naples</li>
<li>Florence</li>
<li>Catania</li>
<li>Venice</li>
</ul>
</div>
<div class="landmarks">
<!-- Landmarks go here -->
<h3>Landmarks of Interest</h3>
<ul>
<li>Colosseum</li>
<li>Pantheon</li>
<li>Leaning Tower of Pisa</li>
<li>St. Mark's Square</li>
<li>Cathedral of Santa Maria del Fiore</li>
<li>Roman Forum</li>
</ul>
</div>
<div class="citizens">
<!-- famous citizens go here -->
<h3>Famous Citizens</h3>
<ul>
<li>Leonardo da Vinci</li>
<li>Michelangelo</li>
<li>Christopher Columbus</li>
<li>Galileo Galilei</li>
<li>Cicero</li>
<li>Leonardo Fibonacci</li>
</ul>
</div>
</section>
</main>
<footer>© Super Saturnians 2021</footer>
</body>
</html>