-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestinations.php
62 lines (61 loc) · 2.55 KB
/
destinations.php
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
<?php
$pageTitle = "Destinations | Iceland";
echo "<script>document.title = '".$pageTitle."';</script>";
include("assets/inc/header.inc.php");
?>
<div class="banner-image" id="destinations-banner-image">
<span class="banner-image-text">Destinations</span>
</div>
<div class="section-wrapper">
<div
onclick="location.href='./glacier-lagoon.php'"
class="section-card"
>
<img class="section-card-img" src="./assets/images/glacierLagoon.png" />
<span class="card-title">Jökulsárlón Glacier Lagoon </span>
<span class="above-button-text">
The glacier lagoon is one of the most surreal sights in
Iceland. Enormous icebergs float in...
</span>
<div class="card-button">
<span class="learn-more-text">Learn more</span>
<img src="./assets/images/arrow.svg" />
</div>
</div>
<div
onclick="location.href='./blue-lagoon.php'"
class="section-card"
>
<img class="section-card-img" src="./assets/images/blueLagoon.png" />
<span class="card-title">Blue Lagoon</span>
<span class="above-button-text">
The Blue Lagoon is a geothermal spa with warm, mineral-rich
waters. It is one of the most...
</span>
<div class="card-button">
<span class="learn-more-text">Learn more</span>
<img src="./assets/images/arrow.svg" />
</div>
</div>
<div
onclick="location.href='./seljalandsfoss.php'"
class="section-card"
>
<img class="section-card-img" src="./assets/images/waterfall.png" />
<span class="card-title">Seljalandsfoss</span>
<span class="above-button-text">
Located in Southern Iceland, this 60 meter high waterfall
allows visitors to walk behind it...
</span>
<div class="card-button">
<span class="learn-more-text">Learn more</span>
<img src="./assets/images/arrow.svg" />
</div>
</div>
</div>
<div id="map-wrapper">
<img src="./assets/images/map.png" />
</div>
<?php
include("assets/inc/header.inc.php");
?>