-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparks.html
341 lines (327 loc) · 11.4 KB
/
parks.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Parks</title>
<link href="./style.css" rel="stylesheet" type="text/css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<!-- BOOTSTRAP -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
</head>
<body>
<nav>
<div class="container-nav">
<a class="navBar-logo" href="./index.html"
><img
src="./Imgs/logo.jpg"
alt="Green Modern style leaf"
width="60px"
height="60px"
/>XPLORA</a
>
<button class="nav-button" id="my-button">
<span class="material-symbols-outlined"> Menu </span>
</button>
<div class="navLinks">
<ul class="navBar_nav" id="myLinks">
<li class="nav-item"><a href="./index.html"> Home </a></li>
<li class="nav-item">
<a href="./parks.html"> Parks </a>
</li>
<li class="nav-item">
<a href="./about.html"> About </a>
</li>
<li class="nav-item">
<a href="./contact.html"> Contact </a>
</li>
</ul>
</div>
<div class="search-container">
<form action="/action_page.php">
<input
type="search"
id="site-search"
placeholder="Search in site.."
name="search"
/>
<button type="submit">Search</button>
</form>
</div>
</div>
</nav>
<div class="hero-wrapper">
<header>
<div class="header-parks">
<h1 class="header-title">Parks</h1>
</div>
</header>
</div>
<main>
<p class="fs-2">
In here you can find more parks and our ranking for travelling to them.
</p>
<p class="fs-2">
Click on each park image to get the stats we have given each park to
make a better decision for your travels
</p>
<!------Parks in Africa section--------->
<section>
<div class="parks-title">
<h2 class="display-5">Parks in Africa</h2>
</div>
<div class="wrapper">
<div class="left-img">
<img
src="./Imgs/parks/Parks Africa/Serengeti-National-Park-in-Africaa-730x450.jpg"
class="img-tile"
id="serengeti"
alt="Serengeti, easy park level to visit, great for family and education"
/>
<div class="tile-text">Serengeti</div>
</div>
<div class="middle-img">
<div class="top-img">
<img
src="./Imgs/parks/Parks Africa/kruger-national-park-safari-lodges-fp-500x290.jpg"
class="img-tile"
id="kruger"
alt="Kruger, medium level to visit, has great walks and wildlife. Not ideal for younger than 5 years old"
/>
<div class="tile-text">Kruger</div>
</div>
<div class="bottom-img">
<img
src="./Imgs/parks/Parks Africa/Hwange National Park.jpg"
class="img-tile"
id="hwange"
alt="Hwange, the most African style park, great for family and education"
/>
<div class="tile-text">Hwange</div>
</div>
</div>
<div class="right-img">
<img
src="./Imgs/parks/Parks Africa/Bwindi-Impenetrable-Forest.jpg"
class="img-tile"
id="bwindi"
alt="Bwindi, easy park level to visit, this is a forest area for those want to see a lot of green"
/>
<div class="tile-text">Bwindi</div>
</div>
</div>
</section>
<!-- The Modal -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01" />
<div id="caption"></div>
</div>
<!------------Parks in Asia--------------------->
<section>
<div class="parks-title">
<h2 class="display-5">Parks in Asia</h2>
</div>
<div class="wrapper">
<div class="left-img">
<img
src="./Imgs/parks/Parks in Asia/Khao Sok National Park.jpg"
class="img-tile"
id="khao"
alt="Khao, get your bathing suit and take a bit of sun in this gorgeous park in Thailand"
/>
<div class="tile-text">Khao</div>
</div>
<div class="middle-img">
<div class="top-img">
<img
src="./Imgs/parks/Parks in Asia/Huangshan National Park.jpg"
class="img-tile"
id="huangshan"
alt="Huangshan, not an easy park, this is for our veterans hikers and those with oxygen masks"
/>
<div class="tile-text">Huangshan</div>
</div>
<div class="bottom-img">
<img
src="./Imgs/parks/Parks in Asia/Fuji-Hakone-Izu National Park.jpg"
class="img-tile"
id="fuji"
alt="Fuji, the most famous park in Japan, a once in a life time wonder"
/>
<div class="tile-text">Fuji Hakone</div>
</div>
</div>
<div class="right-img">
<img
src="./Imgs/parks/Parks in Asia/Nikko National Park.jpg"
class="img-tile"
id="nikko"
alt="Nikko, a park that takes your breath away with its immense colours"
/>
<div class="tile-text">Nikko</div>
</div>
</div>
</section>
<!------------Parks in America--------------------->
<section>
<div class="parks-title">
<h2 class="display-5">Parks in America</h2>
</div>
<div class="wrapper">
<div class="left-img">
<img
src="./Imgs/parks/Parks in America/Banff National Park.jpg"
class="img-tile"
id="banff"
alt="Banff, an easy park for those who like the cold. Best on winter travel"
/>
<div class="tile-text">Banff</div>
</div>
<div class="middle-img">
<div class="top-img">
<img
src="./Imgs/parks/Parks in America/Galapagos Island National Park.jpg"
class="img-tile"
id="galapagos"
alt="Galapagos, in here you can find the famouse turtles and a place to relax"
/>
<div class="tile-text">Galapagos</div>
</div>
<div class="bottom-img">
<img
src="./Imgs/parks/Parks in America/Torres del Paine National Park.jpg"
class="img-tile"
id="torresDelPaine"
alt="Torres del Paine, super simple park to find and excellent for our Yoga enthusiast"
/>
<div class="tile-text">Torres del Paine</div>
</div>
</div>
<div class="right-img">
<img
src="./Imgs/parks/Parks in America/Yellowstone National Park.jpg"
class="img-tile"
id="yellowstone"
alt="Yellowstone, the most American style park, amazing colours"
/>
<div class="tile-text">Yellowstone</div>
</div>
</div>
</section>
<!------------Parks in Europe--------------------->
<section>
<div class="parks-title">
<h2 class="display-5">Parks in Europe</h2>
</div>
<div class="wrapper">
<div class="left-img">
<img
src="./Imgs/parks/Parks in Europe/Plitvice Lakes National Park.jpg"
class="img-tile"
id="plitvice"
alt="Plitvice, long walks, might be worth keeping an eye on the edges of the walk, can be slippery"
/>
<div class="tile-text">Plitvice</div>
</div>
<div class="middle-img">
<div class="top-img">
<img
src="./Imgs/parks/Parks in Europe/Teide National Park.jpg"
class="img-tile"
id="teide"
alt="Teide, Can't afford going to the USA, don't worry Spain has lovely arid parks too"
/>
<div class="tile-text">Teide</div>
</div>
<div class="bottom-img">
<img
src="./Imgs/parks/Parks in Europe/National Park Skjoldungernes Land.jpg"
class="img-tile"
id="skjoldungernes"
alt="Skjoldungernes, esay park for short walks and picnics, do tidy after yourself"
/>
<div class="tile-text">Skjoldungernes</div>
</div>
</div>
<div class="right-img">
<img
src="./Imgs/parks/Parks in Europe/Vatnajökull National Park.jpg"
class="img-tile"
id="vatnajokull"
alt="Vatnajokull, excellent for those who like to take photos"
/>
<div class="tile-text">Vatnajökull</div>
</div>
</div>
</section>
</main>
<!-- FOOTER -->
<!-- FOOTER -->
<div class="footerLogo">
<p class="fs-1 fw-bold">
<img src="./Imgs/logoPs.jpg" alt="logo" />XPLORA
</p>
</div>
<footer>
<div class="container">
<section class="footer">
<div class="footer-column">
<div class="footer-headings">
<a href="./index.html" class="footer-links">
home
</a>
</div>
</div>
<div class="footer-column">
<div class="footer-headings">
<a href="./about.html" class="footer-links">
about
</a>
</div>
</div>
<div class="footer-column">
<div class="footer-headings">
<a href="./contact.html" class="footer-links">
contact
</a>
</div>
</div>
</div>
<!-- ICONS -->
<div class="footer-column">
<div class="icons">
<a href="https://www.facebook.com/">
<i class="bi bi-facebook btn"></i></a>
<a href="https://www.instagram.com/">
<i class="bi bi-instagram btn"></i></a>
</div>
</div>
</section>
</div>
</footer>
<!-- JAVASCRIPT -->
<script src="./script.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>