generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.html
411 lines (411 loc) · 19.7 KB
/
gallery.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
<!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">
<meta name="description" content="Caribbean holiday planning service">
<meta name="keywords" content="Holiday, vacation, caribbean, travel, adventure">
<link rel="shortcut icon" type="image/x-icon" href="assets/logos/Palmtree.png">
<script src="https://kit.fontawesome.com/f73762c6c0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/style.css">
<title>Travel Caribbean</title>
</head>
<body>
<!-- Header containing website title, nav bar (including hamburger menu for smaller screen sizes) and logo image -->
<header id="sub-page-header">
<!-- Credit to Mark Caron - see readme -->
<nav id="main-menu" class="main-menu" aria-label="Main menu">
<a href="#main-menu-toggle" id="main-menu-close" class="menu-close" aria-label="Close main menu">
<span class="sr-only">Close main menu</span>
<span class="fa fa-close" aria-hidden="true"></span>
</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="islands.html">Islands</a></li>
<li><a href="types.html">Types</a></li>
<li class="list-active"><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<a href="#main-menu-toggle" class="backdrop" tabindex="-1" hidden>
</a>
<a href="#main-menu" id="main-menu-toggle" class="menu-toggle" aria-label="Open main menu">
<span class="fa fa-bars" aria-hidden="true"></span>
</a>
<!-- End of credit -->
<span class="logo">Travel Caribbean</span>
<img src="assets/logos/homemade.png" alt="Travel Caribbean Logo" id="logo-homemade">
<nav id="big-screen-nav">
<a href="index.html"><span>Home</span></a>
<a href="islands.html"><span>Islands</span></a>
<a href="types.html"><span>Types</span></a>
<a href="gallery.html" class="active"><span>Gallery</span></a>
<a href="contact.html"><span>Contact Us</span></a>
</nav>
</header>
<!-- Images for the customer to view - images have div overlay showing where photo was taken when customer hovers over it -->
<section id="gallery-photos-section">
<h1>Pictures</h1>
<div class="image-container">
<img src="assets/gallery-images/stmaarten4.jpg" alt="silhoette of 8 people on the side of a catamaran looking at sunset">
<div class="text-container">
<h1>St Martin</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/bvi4.jpg" alt="pelican flying over shoreline with mountain backdrop">
<div class="text-container">
<h1>Tortola</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/crandcayman2.jpg" alt="people riding horses which are swimming in the sea">
<div class="text-container">
<h1>Grand Cayman</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/bvi1.jpg" alt="looking down on a bay on Smugler's Cove Bay on Tortola">
<div class="text-container">
<h1>Tortola</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/gc1.jpg" alt="a residential water-way in Grand Cayman">
<div class="text-container">
<h1>Grand Cayman</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/curacao1.jpg" alt="a view of Curacao's Punda District from the other side of St Anna Bay">
<div class="text-container">
<h1>Curacao</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/curacao2.jpg" alt="a view of punda dristrict shop fronts">
<div class="text-container">
<h1>Curacao</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/chichi1.jpg" alt="traditional chi chi statue">
<div class="text-container">
<h1>Curacao</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/curacao3.jpg" alt="a large dutch clog painted in blue and white">
<div class="text-container">
<h1>Curacao</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/curacao4.jpg" alt="swinging lady bridge joining curacaos two main districts, two people walking holding hands">
<div class="text-container">
<h1>Curacao</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/curacao5.jpg" alt="swinging lady a.k.a Queen Emma bridge">
<div class="text-container">
<h1>Curacao</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/dominica1.jpg" alt="P&O ship Britannia taken from an R.I.B out at sea">
<div class="text-container">
<h1>Dominica</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/dominica3.jpg" alt="rocky, natural greenery shoreline taken from off-shore">
<div class="text-container">
<h1>Dominica</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/dominica4.jpg" alt="waterfall with natural pool below surrounded by trees and greenery">
<div class="text-container">
<h1>Dominica</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/dominica5.jpg" alt="a number of people river tubing along a river with trees either side">
<div class="text-container">
<h1>Dominica</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/dominica2.jpg" alt="tail fin of humpback whale taken from an R.I.B out at sea">
<div class="text-container">
<h1>Dominica</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/greneda1.jpg" alt="panoramic of grenada landscape and main port">
<div class="text-container">
<h1>Grenada</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia1.jpg" alt="st lucia residential area with waterways, many catamarans and boats">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia2.jpg" alt="st lucia Pitons in the background framed by two palm trees in the foreground">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia3.jpg" alt="black and white picture of the Pitons taken from out to sea">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia4.jpg" alt="view of st lucia landscape and residential area">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia5.jpg" alt="light grey path with trees either side leading to a small red foot bridge">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia6.jpg" alt="waterfall with greenery all around, discolored rock behind the waterfall shades of red and orange">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia7.jpg" alt="volcanic area with bursts of steam coming from the ground">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stlucia8.jpg" alt="large yacht moored next to a clipper ship in a bay">
<div class="text-container">
<h1>St Lucia</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stmaarten1.jpg" alt="sunset with rays coming out from behind cloud, mountains in the far distance">
<div class="text-container">
<h1>St Martin</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stmaarten2.jpg" alt="clipper ship moored in a bay, bushes in the foreground">
<div class="text-container">
<h1>St Martin</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stvincent1.jpg" alt="very tall waterfall surrounded by vegetation">
<div class="text-container">
<h1>St Vincent</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stvincent2.jpg" alt="pale blue water and white sand beach taken from inside building with ornate posts and arches">
<div class="text-container">
<h1>St Vincent</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stvincent3.jpg" alt="view of part of the bay of Wallilabou Anchorage looking out to sea with part of the land to the right">
<div class="text-container">
<h1>St Vincent</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stvincent4.jpg" alt="view of part of the bay of Wallilabou Anchorage looking out to sea with part of the land to the left including the Pirate's Arch">
<div class="text-container">
<h1>St Vincent</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stvincent5.jpg" alt="Wallilabou Anchorage">
<div class="text-container">
<h1>St Vincent</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/stvincent6.jpg" alt="mountainous greenery behind petit byahaut beach">
<div class="text-container">
<h1>St Vincent</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/antigua1.jpg" alt="mountainous landscape covered in trees, bay below with catamaran">
<div class="text-container">
<h1>Antigua</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/antigua2.jpg" alt="below-water image with lots of thin spike-nosed fish">
<div class="text-container">
<h1>Antigua</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/antigua3.jpg" alt="below-water image with lots of thin spike-nosed fish and some other fish that look similar to pirhana">
<div class="text-container">
<h1>Antigua</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/antigua4.jpg" alt="pale blue water and white sand beach with large wooden beach hut on stilts and blue roof">
<div class="text-container">
<h1>Antigua</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/antigua5.jpg" alt="white sand beach looking out to sea">
<div class="text-container">
<h1>Antigua</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/aruba1.jpg" alt="small bird perched in a tea with shrubbery in it's beak">
<div class="text-container">
<h1>Aruba</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/aruba2.jpg" alt="ayo rock formations, aruba">
<div class="text-container">
<h1>Aruba</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/aruba3.png" alt="baby natural bridge, aruba">
<div class="text-container">
<h1>Aruba</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/aruba4.jpg" alt="greenery and cacti">
<div class="text-container">
<h1>Aruba</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/aruba5.jpg" alt="white winged butterfly">
<div class="text-container">
<h1>Aruba</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/aruba6.jpg" alt="trupial bird with bright orange chest with black head and neck, greenery behind">
<div class="text-container">
<h1>Aruba</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/aruba7.jpg" alt="small piles of rocks people place at baby natural bridge, aruba">
<div class="text-container">
<h1>Aruba</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/barbados4.jpg" alt="close up under-water picture of a turtle from behind">
<div class="text-container">
<h1>Barbados</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/barbados1.jpg" alt="barbados beach on the east side of the island">
<div class="text-container">
<h1>Barbados</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/barbados2.jpg" alt="close up under-water picture of a turtle face-on">
<div class="text-container">
<h1>Barbados</h1>
</div>
</div>
<div class="image-container">
<img src="assets/gallery-images/barbados3.jpg" alt="taken from off-shore picture of white sand beach and Rhianna's house on Barbados">
<div class="text-container">
<h1>Barbados</h1>
</div>
</div>
</section>
<!-- Videos from youtube for the customer to view to help decision making process of what they'd like -->
<section id="gallery-videos">
<h1>Videos</h1>
<div class="video-container">
<iframe id="first-video" src="https://www.youtube.com/embed/bVcczHqt5V0" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe id="second-video" src="https://www.youtube.com/embed/ox-IZ3Vz5Jk" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/3C4HKB0Wts8" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/zySpzfRCjcw" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/iXoHAw6GXaI" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/BZ18BirRako" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</section>
<!-- Image banner containing thank you text and link button to contact page with brochure download and contact form -->
<section id="turtle-banner">
<div id="turtle-banner-thanks"><h1>Thank you for <br>visiting!</h1></div>
<a href="contact.html">
<div class="styled-button" id="turtle-button">
Contact us & get your FREE brochure here!
</div>
</a>
</section>
<!-- Footer containing social media links and holiday protection agencies -->
<footer>
<ul class="find-us">
<li>Find us on:</li>
<li>
<a href="https://facebook.com" target="_blank" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com/?lang=en-gb" target="_blank" aria-label="Twitter"><i class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" aria-label="YouTube"><i class="fab fa-youtube-square"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" aria-label="Instagram"><i class="fab fa-instagram-square"></i></a>
</li>
<li>
<a href="https://google.com" target="_blank" aria-label="Google"><i class="fab fa-google"></i></a>
</li>
<li>
<a href="https://tripadvisor.com" target="_blank" aria-label="Trip Advisor"><i class="fab fa-tripadvisor"></i></a>
</li>
</ul>
<br><br>
<img src="assets/logos/abta.png" alt="Logo for abta travel protection" class="protection-logo">
<img src="assets/logos/atol.png" alt="Logo for atol travel protection" class="protection-logo">
<img src="assets/logos/clia.png" alt="Logo for CLIA (cruising) travel protection" class="protection-logo">
<img src="assets/logos/fp.png" alt="Logo for financial protection" class="protection-logo">
<img src="assets/logos/tta.png" alt="Logo for Travel Trust association" class="protection-logo">
<br><br>
Photo credit to ©<a href="https://www.deannacarina.com/" target="_blank">Deanna Carina Sale</a>
<a href="https://www.instagram.com/deannacarina/" target="_blank">Instagram</a>
<a href="https://www.linkedin.com/in/deannacarina/" target="_blank">LinkedIn</a><br><br>
</footer>
</body>
</html>