generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
571 lines (563 loc) · 25.4 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
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="icon"
type="image/png"
href="https://res.cloudinary.com/jimlynx/image/upload/v1595061431/Logos/favicon.png"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<title>Explore Ireland</title>
</head>
<body>
<!-- NAVIGATION -->
<nav id="main-nav" class="navbar navbar-expand-lg navbar-light sticky-top">
<a class="navbar-brand" href="index.html">Explore Ireland</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<!--- CREDIT - Code solution to closing hamburger menu once menu item clicked from Orel Eliyahu' on Stack Overflow - https://stackoverflow.com/questions/36405991/bootstrap-toggle-menu-on-one-page-site-does-not-uncollapse-when-clicked --->
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link" href="#gallery">Gallery</a>
</li>
<li class="nav-item" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- HOME PAGE -->
<section id="intro">
<div class="intro-box">
<div class="intro-text">
<h2>Join Us. Explore.</h2>
<hr class="intro-hr" />
<h1>
<span class="h1-green">IRE</span><span class="h1-white">LA</span
><span class="h1-orange">ND</span>
</h1>
</div>
</div>
</section>
<!-- ABOUT/TRIPS PAGE -->
<!--- CREDIT - Structure of 'About' section taken from Stack Overflow post: https://stackoverflow.com/questions/35868756/how-to-make-bootstrap-4-cards-the-same-height-in-card-columns -->
<section id="about">
<div class="container">
<div class="row page-title">
<div class="col">
<h2>About</h2>
</div>
</div>
</div>
<div class="container">
<div class="row my-4">
<div class="col">
<div class="jumbotron-fluid">
<div class="about-text">
<p>
The Explore Ireland project came into inception during the
COVID-19 lock-down in Ireland. This period forced us all into
isolation at home and away from our usual, familiar social
environments.
</p>
<p>
We provide a completely free platform which brings people
together on breath-taking drives around the Irish countryside.
Our trips are expertly planned and researched to ensure a safe
and enjoyable experience, while adhering to social distancing
recommendations.
</p>
<p>
We organise and coordinate various trips on a regular basis,
from short drives on scenic routes, to camping trips, car
shows and 4x4 off-road tours!
</p>
<p>
Please have a look at the brief descriptions below, and if
you'd like to discuss any of the trips in more detail, please
<a href="#contact">Contact Us</a> now or join our
<a href="https://www.facebook.com/" target="_blank"
>Facebook Community Group</a
>
for regular updates and upcoming trips.
</p>
<hr />
<h3>Trip Options:</h3>
<hr />
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md d-flex">
<div class="card card-body flex-fill">
<img
src="https://images.pexels.com/photos/3220828/pexels-photo-3220828.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"
class="card-img-top"
alt="A road along coast"
/>
<div class="card-body">
<h2><i class="fas fa-map-signs"></i> Day Drives</h2>
<p>
We organise regular full and half day tours of various
scenic routes, meandering through forests, over
mountain passes and drives along the coast.
</p>
<p>
All vehicle types can participate, as we stick to
tarred roads, and families are welcome!
</p>
<p>
<i class="fas fa-utensils"></i>
We make regular stops to stretch our legs and take
coffee/tea and lunch breaks. This could be a quaint
rural restaurant or a picnic on the beach.
</p>
</div>
</div>
</div>
<div class="col-md d-flex">
<div class="card card-body flex-fill">
<img
src="https://images.pexels.com/photos/2662816/pexels-photo-2662816.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"
class="card-img-top"
alt="campsite with tents"
/>
<div class="card-body">
<h2><i class="fas fa-campground"></i> Camping Trips</h2>
<p>
Take a time-out from day to day stresses and join our
camping trips. From one night away, to long weekend
excursions.
</p>
<p>
You don't need expensive camping gear to take part.
Just bring a basic tent, sleeping bag and eating
utensils. We are well-stocked with necessary equipment
such as cookers, lighting, backup power, camping
tables and more.
</p>
<p>
<i class="fas fa-utensils"></i>
Before reaching our campsite we'll stop for food and
other supplies such as snacks and firelighters & coal
(if you want to have a BBQ).
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm d-flex">
<div class="card card-body flex-fill">
<img
src="https://images.pexels.com/photos/761815/pexels-photo-761815.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"
class="card-img-top"
alt="Land Rover driving through mud"
/>
<div class="card-body">
<h2>
<i class="fas fa-truck-monster"></i> 4x4 Adventures
</h2>
<p>
Join one of our exhilarating 4x4 routes which takes us
exploring green-lanes, forests and beaches, but fully
off-road!
</p>
<p>
All experience-levels are catered for, but you must
have a 4x4 with a relatively decent ground-clearance.
</p>
<p>
For your peace of mind, we always have experienced
mechanics and recovery vehicles on trips for your
peace of mind.
</p>
<p>
<i class="fas fa-utensils"></i> We usually make a
large BBQ for lunch. Make sure to pack food and drinks
before setting off as our 4x4 routes may be remote and
not close to shops.
</p>
</div>
</div>
</div>
<div class="col-sm d-flex">
<div class="card card-body flex-fill">
<img
src="https://images.pexels.com/photos/3947876/pexels-photo-3947876.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"
class="card-img-top"
alt="Vintage cars at a car show"
/>
<div class="card-body">
<h2>
<i class="far fa-calendar-alt"></i> Special Events
</h2>
<p>
Explore Ireland also takes part in various car shows
in Ireland.
</p>
<p>
These are really relaxed days just to get out, be
social and bring the family for a day of fun
activities, food stalls, car-boot sales and music.
</p>
<p>
We also take part in Ireland's famous Vintage car
shows, so if your vehicle is a classic (over 20 y/o),
please contact us to register so we can book a space
for you.
</p>
<p>
<i class="fas fa-utensils"></i> Bring a packed lunch
or take advantage of a variety of food and drink
stalls.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- GALLERY PAGE -->
<section id="gallery">
<!-- Responsive Static Gallery for up to width 991px -->
<div class="container d-lg-none">
<div class="row page-title">
<div class="col">
<h2>Image Gallery</h2>
</div>
</div>
</div>
<div class="static-gallery container d-lg-none">
<div class="image-container">
<div class="image">
<img
src="assets/images/carousel/briefing.png"
class="img-fluid d-block w-100"
alt="Trip briefing"
/>
<img
src="assets/images/carousel/meadows.png"
class="img-fluid d-block w-100"
alt="Irish meadows"
/>
<img
src="assets/images/carousel/forest.png"
class="img-fluid d-block w-100"
alt="Forest drive"
/>
<img
src="assets/images/carousel/red-landy.png"
class="img-fluid d-block w-100"
alt="Land Rover in a Forest"
/>
<img
src="assets/images/carousel/sheep.png"
class="img-fluid d-block w-100"
alt="Connemara sheep"
/>
<img
src="assets/images/carousel/mountain-view.png"
class="img-fluid d-block w-100"
alt="Vehicles with Connemara mountain view"
/>
<img
src="assets/images/carousel/beach.png"
class="img-fluid d-block w-100"
alt="Vehicles on Beach"
/>
<img
src="assets/images/carousel/camp.png"
class="img-fluid d-block w-100"
alt="Campsite setup in forest clearing"
/>
<img
src="assets/images/carousel/quarry.png"
class="img-fluid d-block w-100"
alt="Land Rover driving in quarry"
/>
<img
src="assets/images/carousel/waterlane.png"
class="img-fluid d-block w-100"
alt="Land Rover driving in flooded lane"
/>
</div>
</div>
</div>
<!-- Carousel for width 992px and above -->
<div class="container d-none d-lg-block">
<div class="row page-title">
<div class="col">
<h2>Image Gallery</h2>
</div>
</div>
</div>
<div class="container">
<div
id="image-slide"
class="carousel slide d-none d-lg-block"
data-ride="carousel"
>
<ol class="carousel-indicators">
<li
data-target="#image-slide"
data-slide-to="0"
class="active"
></li>
<li data-target="#image-slide" data-slide-to="1"></li>
<li data-target="#image-slide" data-slide-to="2"></li>
<li data-target="#image-slide" data-slide-to="3"></li>
<li data-target="#image-slide" data-slide-to="4"></li>
<li data-target="#image-slide" data-slide-to="5"></li>
<li data-target="#image-slide" data-slide-to="6"></li>
<li data-target="#image-slide" data-slide-to="7"></li>
<li data-target="#image-slide" data-slide-to="8"></li>
<li data-target="#image-slide" data-slide-to="9"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="assets/images/carousel/briefing.png"
class="d-block w-100"
alt="Trip briefing"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/meadows.png"
class="d-block w-100"
alt="Irish meadows"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/forest.png"
class="d-block w-100"
alt="Forest drive"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/red-landy.png"
class="d-block w-100"
alt="Land Rover in a Forest"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/sheep.png"
class="d-block w-100"
alt="Connemara sheep"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/mountain-view.png"
class="d-block w-100"
alt="Vehicles with Connemara mountain view"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/beach.png"
class="d-block w-100"
alt="Vehicles on Beach"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/camp.png"
class="d-block w-100"
alt="Campsite setup in forest clearing"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/quarry.png"
class="d-block w-100"
alt="Land Rover driving in quarry"
/>
</div>
<div class="carousel-item">
<img
src="assets/images/carousel/waterlane.png"
class="d-block w-100"
alt="Land Rover driving in flooded lane"
/>
</div>
</div>
<a
class="carousel-control-prev"
href="#image-slide"
role="button"
data-slide="prev"
>
<i class="fas fa-chevron-circle-left"></i
><span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
href="#image-slide"
role="button"
data-slide="next"
>
<i class="fas fa-chevron-circle-right"></i
><span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!-- CONTACT PAGE -->
<section id="contact">
<div class="container">
<div class="row page-title">
<div class="col">
<h2><i class="far fa-envelope"></i> Contact Us</h2>
</div>
</div>
</div>
<div class="container">
<div class="row contact-form">
<div class="col">
<!--- CREDIT - Form layout inspiration from CI Love Running mini-project --->
<form>
<!-- Form entries -->
<label for="fname">First Name:</label>
<input
class="text-input"
type="text"
id="fname"
name="first_name"
required
/>
<label for="lname">Last Name:</label>
<input
class="text-input"
type="text"
id="lname"
name="last_name"
required
/>
<label for="email">Email Address:</label>
<input
class="text-input"
id="email"
type="email"
name="email_address"
required
/>
<!-- Radio buttons -->
<div class="radio-btn">
<input
id="day"
type="radio"
name="trip_preference"
value="day"
required
/>
<label for="day">Day Trips</label><br />
<input
id="camp"
type="radio"
name="trip_preference"
value="camp"
/>
<label for="camp">Camping</label><br />
<input
id="adventure"
type="radio"
name="trip_preference"
value="adventure"
/>
<label for="adventure">4x4 Adventures</label><br />
<input
id="events"
type="radio"
name="trip_preference"
value="events"
/>
<label for="events">Special Events</label><br />
<input
id="all"
type="radio"
name="trip_preference"
value="all"
/>
<label class="all-text" for="all">All of the above!</label
><br />
</div>
<!-- Submit button -->
<hr class="send-hr" />
<input class="send-btn" type="submit" value="Send!" />
<hr class="send-hr" />
</form>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="copyright">
<i class="far fa-copyright"></i>Jim.Lynx<img
src="assets/images/lynx.png"
alt=""
/>
</div>
<ul class="social navbar-light">
<li>
<a href="https://www.facebook.com" target="_blank"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a href="https://youtube.com" target="_blank"
><i class="fab fa-youtube-square"></i
></a>
</li>
<li>
<a href="https://twitter.com" target="_blank"
><i class="fab fa-twitter-square"></i
></a>
</li>
<li>
<a href="https://instagram.com" target="_blank"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>