-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhat-to-bring.php
48 lines (47 loc) · 1.93 KB
/
what-to-bring.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
<?php
$pageTitle = "What to Bring | Iceland";
echo "<script>document.title = '".$pageTitle."';</script>";
include("assets/inc/header.inc.php");
?>
<div class="banner-image" id="bring-banner-image">
<span class="banner-image-text">What to Bring</span>
</div>
<div class="section-wrapper" id="bring-wrapper">
<div class="bring-item">
<span
>When traveling to Iceland, it is important to be prepared
for unpredictable weather, no matter the season. The items
below are essential when traveling to Iceland.</span
>
<ol>
<li>Layered clothing; wool or synthetic</li>
<li>Outer layer/shell; protect from rain and wind</li>
<li>
Waterproof hiking boots; the terrain can be difficult to
walk on at times
</li>
<li>Wool socks; keep your feet warm</li>
<li>Gloves; keep your hands warm</li>
<li>
Hat/beanie; keep your head and ears warm and protect
your eyes from the sun
</li>
<li>Sunscreen; UV rays reflect off snow and ice</li>
<li>Lip balm; prevent your lips from drying</li>
</ol>
</div>
<div class="bring-item">
<span
>The following items are optional, but highly
recommended.</span
>
<ol>
<li>Scarf/buff; keep your neck warm</li>
<li>Water bottle; stay hydrated</li>
<li>Sunglasses; protect your eyes from the sun</li>
</ol>
</div>
</div>
<?php
include("assets/inc/footer.inc.php");
?>