generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
191 lines (170 loc) · 6.78 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!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">
<div>
<img id="logo" src="assets/images/logo_new.webp" alt="Travel Destinations company logo" />
</div>
</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>
<h1>Your Travel destination for this year</h1>
<div class="main_description">
<p>
Book this year's travel destination with us. Choose from some of the
most popular countries for tourists in Europe. Discover the best
places to spend your holiday this season. Make your choice and plan
your trip at the best price in just a few minutes.
</p>
<!-- Contact details section -->
<div class="contact_details">
<ul>
<li>
<a href="mailto:[email protected]"
aria-label="Click here to send an email to Travel Destinations"><i class="fa-solid fa-envelope"></i>Email:
</li>
<li>
<a href="tel:(01)1234567" aria-label="Click here to call Travel Destinations"><i
class="fas fa-phone"></i>Tel: (01) 1234567
</a>
</li>
</ul>
</div>
</div>
<!-- Countries section -->
<div class="content_container">
<div class="countries_container">
<div class="countries">
<img src="assets/images/italy.webp" alt="Holiday houses on coastline" />
<button onclick="window.location.href='italy.html'" type="button" class="countries_button"
aria-label="Click here to open Italy page">
Italy
</button>
</div>
<div class="countries">
<img src="assets/images/spain.webp" alt="Holiday villa with swimming pool" />
<button onclick="window.location.href='spain.html'" type="button" class="countries_button"
aria-label="Click here to open Spain page">
Spain
</button>
</div>
<div class="countries">
<img src="assets/images/portugal.webp" alt="Swimming pool on the coastline" />
<button onclick="window.location.href='portugal.html'" type="button" class="countries_button"
aria-label="Click here to open Portugal page">
Portugal
</button>
</div>
<div class="countries">
<img src="assets/images/greece.webp" alt="Man in a swimming pool" />
<button onclick="window.location.href='greece.html'" type="button" class="countries_button"
aria-label="Click here to open Greece page">
Greece
</button>
</div>
<div class="countries">
<img src="assets/images/turkey.webp" alt="Holiday resort with palm trees" />
<button onclick="window.location.href='turkey.html'" type="button" class="countries_button"
aria-label="Click here to open Turkey page">
Turkey
</button>
</div>
<div class="countries">
<img src="assets/images/croatia.webp" alt="City on coast of sea" />
<button onclick="window.location.href='croatia.html'" type="button" class="countries_button"
aria-label="Click here to open Croatia page">
Croatia
</button>
</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>
</div>
</main>
<script src="https://kit.fontawesome.com/add0cc32e5.js" crossorigin="anonymous"></script>
</body>
</html>