generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitaly.html
141 lines (119 loc) · 4.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en-US">
<!-- Head section -->
<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" />
<meta name="description" content="Travel agency. Offering tour packages for individuals or groups." />
<meta name="keywords" content="holiday, travel, best value, package holidays, book cheap holidays" />
<title>Travel Destinations</title>
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="icon" type="image/x-icon" href="assets/images/favicon/favicon.ico" />
<link rel="apple-touch-icon" href="assets/images/favicon/apple-touch-icon.png" />
</head>
<!-- Body section -->
<body>
<!-- Hero video -->
<div class="video-container">
<video class="fullscreen-video" poster="assets/images/poster_big.webp" loop muted autoplay>
<source src="assets/images/hero_1080.mp4" type="video/mp4" />
</video>
</div>
<!-- Header section -->
<header>
<!-- Logo -->
<a href="index.html">
<img id="logo" src="assets/images/logo_new.webp" alt="Travel Destinations company logo" />
</a>
<!--Nav menu - adapted for this project from:
https://moderncss.dev/css-only-accessible-dropdown-navigation-menu/ -->
<nav aria-label="Main Navigation">
<ul>
<li>
<a href="index.html" aria-label="Click here to open Homepage">Home</a>
</li>
<li class="dropdown">
<button type="button" class="dropdown__title" aria-label="Destinations">
Destinations
</button>
<ul class="dropdown__menu">
<li>
<a href="italy.html" aria-label="Click here to open Italy page">Italy</a>
</li>
<li>
<a href="spain.html" aria-label="Click here to open Spain page">Spain</a>
</li>
<li>
<a href="portugal.html" aria-label="Click here to open Portugal page">Portugal</a>
</li>
<li>
<a href="greece.html" aria-label="Click here to open Greece page">Greece</a>
</li>
<li>
<a href="turkey.html" aria-label="Click here to open Turkey page">Turkey</a>
</li>
<li>
<a href="croatia.html" aria-label="Click here to open Croatia page">Croatia</a>
</li>
</ul>
</li>
<li>
<a href="contact.html" aria-label="Click here to open Contact us page">Contact us</a>
</li>
</ul>
</nav>
</header>
<!-- Main content -->
<main>
<!-- Description -->
<h1>Italy</h1>
<div class="country_description">
<p>
Italy, a European country with a long Mediterranean coastline, has
left a powerful mark on Western culture and cuisine. Its capital,
Rome, is home to the Vatican as well as landmark art and ancient
ruins. Other major cities include Florence, with Renaissance
masterpieces such as Michelangelo’s "David" and Brunelleschi's Duomo;
Venice, the city of canals; and Milan, Italy’s fashion capital.
</p>
</div>
<!-- Coutries container -->
<div class="countries_page_container">
<div class="countries_page">
<img src="assets/images/italy_big.webp" alt="Holiday houses on coastline" />
</div>
<div class="iframe-container">
<iframe aria-label="10 Best places to visit in Italy"
src="https://www.youtube.com/embed/FlRwssZYRM0?&theme=dark&autohide=2&cc_load_policy=1&modestbranding=1&showinfo=0&rel=0"></iframe>
</div>
</div>
<!-- Footer section -->
<footer>
<ul class="social-networks">
<li>
<a href="https://www.facebook.com" aria-label="Go to our facebook page (opens in new tab)" target="_blank"><i
class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://www.twitter.com " aria-label="Go to our twitter page (opens in new tab)" target="_blank"><i
class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://www.youtube.com" aria-label="Go to our youtube page (opens in new tab)" target="_blank"><i
class="fab fa-youtube"></i></a>
</li>
<li>
<a href="https://www.instagram.com" aria-label="Go to our instagram page (opens in new tab)"
target="_blank"><i class="fab fa-instagram"></i></a>
</li>
</ul>
<p>
*This site is for educational purposes only, all images and videos
remain the property of the owners.
</p>
</footer>
</main>
<script src="https://kit.fontawesome.com/add0cc32e5.js" crossorigin="anonymous"></script>
</body>
</html>