-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
454 lines (429 loc) · 25.3 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PakTours | Discover Pakistan</title>
<!-- ---------------------------- GOOGLE FONTS ---------------------------- -->
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
<!-- ------------------------ STYLESHEET FOR ICONS ------------------------ -->
<!-- <link rel="stylesheet" href="css/icon-font.css"> -->
<!-- ----------------------------- STYLESHEET ----------------------------- -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- ------------------------------ FAVICON ------------------------------ -->
<link rel="icon" href="content/home/favicon-32x32.png" type="image/x-icon">
<!-- ---------------------------- JQUERY SCRIPTS -------------------------- -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
var open = false;
// OPEN AND CLOSE NAVIGATION
$('#check').click(function(){
open = !open;
if(open) {
$(".navigation__back").css("transform", "scale(80)");
$(".navigation__list").css({"opacity": "1", "width": "100%", "transition-delay": "0.05s"});
}
else {
$(".navigation__back").css("transform", "scale(0)");
$(".navigation__list").css({"opacity": "0", "width": "0"});
}
});
// SCROLL TO THE RESPECTIVE SECTION WHEN A NAV ANCHOR IS DOUBLE CLICKED
$('#nav li a').click(function(){
$(".navigation__back").css("transform", "scale(0)");
$(".navigation__list").css({"opacity": "0", "width": "0"});
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 1000);
});
// HAMBURGER TO CROSS ANIMATION
$('#check').click(function(){
$('.icon').toggleClass("close");
});
// DISCOVER BUTTON SCROLL TO PROVINCE SECTION ANIMATION
$('#discoverMore').click(function(){
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 1000);
});
});
</script>
</head>
<body>
<!-- ------------------------- NAVIGATION -------------------------- -->
<div class="navigation">
<button class="check" id="check">
<div class="circle icon">
<span class="line top"></span>
<span class="line middle"></span>
<span class="line bottom"></span>
</div>
</button>
<nav class="navigation__list">
<ul class="nav" id="nav">
<li><a href="index.php">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#provinces">Discover Provinces</a></li>
<li><a href="#bookings">Bookings</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#form">Contact us</a></li>
</ul>
</nav>
<div class="navigation__back"></div>
</div>
<!-- ------------------------- HEADINGS & LOGO -------------------------- -->
<header class="header">
<div class="header__logo-box">
<img src="content/home/paktours%20logo.png" alt="PakTours Logo" class="header__logo">
</div>
<div class="header__main-textbox">
<h1 class="heading-primary">
<span class="heading-primary--main">Discover</span>
<span class="heading-primary--sub"> the beautiful pakistan</span>
</h1>
<a href="#provinces" class="btn btn--white btn--animated" id="discoverMore">Discover More</a>
</div>
<!-- ----------------------------- SLIDESHOW ---------------------------- -->
<div class="slider-container">
<div class="menu">
<label for="slide-dot-1"></label>
<label for="slide-dot-2"></label>
<label for="slide-dot-3"></label>
<label for="slide-dot-4"></label>
</div>
<input id="slide-dot-1" type="radio" name="slides" checked>
<div class="slide slide-1"></div>
<input id="slide-dot-2" type="radio" name="slides">
<div class="slide slide-2"></div>
<input id="slide-dot-3" type="radio" name="slides">
<div class="slide slide-3"></div>
<input id="slide-dot-4" type="radio" name="slides">
<div class="slide slide-4"></div>
</div>
</header>
<main>
<!-- ------------------------- SECTION ABOUT -------------------------- -->
<section class="section-about" id="about">
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary">explore the beauty of pakistan with us!</h2>
</div>
<div class="row u-center-text">
<div class="col-1-of-2">
<h3 class="heading-tertiary u-margin-bottom-small">Welcome to paktours</h3>
<p class="paragraph">Hello! we are PakTours. Your very own digital tour guide that helps you find Pakistan's famous visiting attractions within just one click! We know you want some time off from your busy hectic schedule and go on vacations. So let us take care of where you want to go, we are really good at it, we prmoise!</p>
<h3 class="heading-tertiary u-margin-bottom-small">You will fall in love with the beauty of Pakistan </h3>
<p class="paragraph">From the driest deserts in the world up north to eternal glaciers and inverted waterfalls down south, Pakistan extends travelers an invitation that is hard to turn down.</p>
<a href="html/about.php" class="btn-text">Learn more →</a>
</div>
<div class="col-1-of-2">
<div class="composition">
<img src="content/home/home1.jpg" alt="photo1" class="composition__photo composition__photo--p1">
<img src="content/home/home2.jpg" alt="photo2" class="composition__photo composition__photo--p2">
<img src="content/home/home3.jpg" alt="photo3" class="composition__photo composition__photo--p3">
</div>
</div>
</div>
</section>
<!-- ------------------------- SECTION FEATURES -------------------------- -->
<section class="section-features" id="features">
<div class="row">
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-geolocalize-05"></i>
<h3 class="heading-tertiary-2 u-margin-bottom-small">Explore Pakistan</h3>
<p class="feature-box__text">
Discover the un-matched beauty of Pakistan with us. We help you explore the main attractions of Pakistan, city wise and province wise.<br>
</p>
</div>
</div>
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-joypad"></i>
<h3 class="heading-tertiary-2 u-margin-bottom-small">Experience Fun</h3>
<p class="feature-box__text">
We help you find the best things to do in the famous cities and attractions of Pakistan.<br><br>
</p>
</div>
</div>
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-signs"></i>
<h3 class="heading-tertiary-2 u-margin-bottom-small">Find Hotels & food</h3>
<p class="feature-box__text">
Want reasonable hotels and restaurants near you? Don't worry! we are here to help you out in that.<br><br>
</p>
</div>
</div>
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-magnifier"></i>
<h3 class="heading-tertiary-2 u-margin-bottom-small">Find travel Agency</h3>
<p class="feature-box__text">
Pack Away! You are just a click away from selecting your travel partners. We help you find perfect travel agency for your vacation.
</p>
</div>
</div>
</div>
</section>
<!-- ------------------------- SECTION PROVINCES -------------------------- -->
<section class="section-provinces" id="provinces">
<div class="bg-video">
<video class="bg-video__content" autoplay muted loop>
<source src="content/home/provincebgvid2.mp4" type="video/mp4">
<source src="content/home/provincebgvid2.webm" type="video/mp4">
Your browser is not supported!
</video>
</div>
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary">
Discover the beautiful provinces
</h2>
</div>
<div class="province">
<figure class="shape-outside-1">
<figure class="province__shape province__shape-1">
<img src="content/home/sindh.jpg" alt="province" class="province__image">
<a href="html/sindh/sindh.php"><figcaption class="province__caption">SINDH</figcaption></a>
</figure>
</figure>
<p class="province__text province__text--sindh">SINDH</p>
</div>
<div class="province">
<figure class="shape-outside-2">
<figure class="province__shape province__shape-2">
<img src="content/home/carousel1.jpg" alt="province" class="province__image">
<a href="html/punjab/punjab.php"><figcaption class="province__caption">PUNJAB</figcaption></a>
</figure>
</figure>
<p class="province__text province__text--punjab">PUNJAB</p>
</div>
<div class="province">
<figure class="shape-outside-3">
<figure class="province__shape province__shape-3">
<img src="content/home/home2.jpg" alt="province" class="province__image">
<a href="html/balochistan/balochistan.php"><figcaption class="province__caption">BALOCHISTAN</figcaption></a>
</figure>
</figure>
<p class="province__text province__text--balochistan">BALOCHISTAN</p>
</div>
<div class="province">
<figure class="shape-outside-4">
<figure class="province__shape province__shape-4">
<img src="content/home/kpk.jpg" alt="province" class="province__image">
<a href="html/kpk/kpk.php"><figcaption class="province__caption">KPK</figcaption></a>
</figure>
</figure>
<p class="province__text province__text--kpk">KPK</p>
</div>
<div class="province">
<figure class="shape-outside-5">
<figure class="province__shape province__shape-5">
<img src="content/home/gb.jpg" alt="province" class="province__image">
<a href="html/gilgitB/gilgitbaltistan.php"><figcaption class="province__caption">GILGIT BALTISTAN</figcaption></a>
</figure>
</figure>
<p class="province__text province__text--kashmir">GILGIT BALTISTAN</p>
</div>
</section>
<!-- ------------------------- SECTION TOURS BOOKINGS -------------------------- -->
<section class="section-tourbookings" id="bookings">
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary">
Find yourself the perfect travel agency
</h2>
</div>
<div class="row">
<div class="col-1-of-3 col-1-of-3-a">
<div class="card">
<div class="card__side--front">
<div class="card__picture card__picture--1">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--1">Pakistan tour & travel</span>
</h4>
<div class="card__details">
<ul>
<li>Pakistan 2020 Tours</li>
<li>Group Tour Packages</li>
<li>Honeymoon Packages</li>
<li>Get Custom Tour Plan</li>
<li>Plan Destination Wedding</li>
</ul>
</div>
</div>
<div class="card__side--back card__side--back-1">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">STARTING FROM</p>
<p class="card__price-value">15,000 PKR</p>
</div>
<a href="https://pakistantourntravel.com/" target="_blank" class="btn btn--white">Visit Now!</a>
</div>
</div>
</div>
</div>
<div class="col-1-of-3 col-1-of-3-b">
<div class="card">
<div class="card__side--front">
<div class="card__picture card__picture--2">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--2">Falcon club.pk</span>
</h4>
<div class="card__details">
<ul>
<li>24 Hours Service</li>
<li>Book Your Hotel</li>
<li>Rent a Car</li>
<li>Honeymoon Tours</li>
<li>Plan Your Tour To Dos</li>
</ul>
</div>
</div>
<div class="card__side--back card__side--back-2">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">STARTING FROM</p>
<p class="card__price-value">18,500 PKR</p>
</div>
<a href="http://falconclub.pk/" target="_blank" class="btn btn--white">Visit Now!</a>
</div>
</div>
</div>
</div>
<div class="col-1-of-3 col-1-of-3-c">
<div class="card">
<div class="card__side--front">
<div class="card__picture card__picture--3">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--3">Travelo tour packages</span>
</h4>
<div class="card__details">
<ul>
<li>Confused? Let's live chat!</li>
<li>Best Prices Offered</li>
<li>Quality Accomodation</li>
<li>Transport Facilities</li>
<li>Local Travel Guides</li>
</ul>
</div>
</div>
<div class="card__side--back card__side--back-3">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">STARTING FROM</p>
<p class="card__price-value">7,999 PKR</p>
</div>
<a href="https://www.travelo.pk/" target="_blank" class="btn btn--white">visit now!</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ------------------------- SECTION STORIES -------------------------- -->
<section class="section-stories" id="testimonials">
<div class="bg-video">
<video class="bg-video__content" autoplay muted loop>
<source src="content/home/video.mp4" type="video/mp4">
<source src="content/home/video.webm" type="video/webm">
Your browser is not supported!
</video>
</div>
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary">
We make people genuinely happy
</h2>
</div>
<div class="row">
<div class="story">
<figure class="story__shape">
<img src="http://pakrtidata.org/wp-content/uploads/2019/02/Hisham-300x300.jpg" alt="person on a tour" class="story__image">
<figcaption class="story__caption">Hisham sajid</figcaption>
</figure>
<div class="story__text">
<h3 class="heading-tertiary u-margin-bottom-small">I had the best week ever with my family</h3>
<p>
Lorem ipsm skjdfj jim Earum vel neque assumenda culpa vitae, delectus alias consequuntur natus maxime! Voluptates dolorum inhujn kinjhsg thsam ve l ki pimni Earum vel neque assumenda culpa vitae, delectus alias consequuntur natus maxime! Voluptates dolorum.
</p>
</div>
</div>
</div>
<div class="row">
<div class="story">
<figure class="story__shape">
<img src="content/home/person2.jpeg" alt="person on a tour" class="story__image">
<figcaption class="story__caption">verda dewani</figcaption>
</figure>
<div class="story__text">
<h3 class="heading-tertiary u-margin-bottom-small">Wow my life is completetly different now</h3>
<p>
Lorem ipsm skjdfj jim Earum vel neque assumenda culpa vitae, delectus alias consequuntur natus maxime! Voluptates dolorum inhujn kinjhsg thsam ve l ki pimni Earum vel neque assumenda culpa vitae, delectus alias consequuntur natus maxime! Voluptates dolorum.
</p>
</div>
</div>
</div>
<div class="u-margin-top-big btnstory">
<a href="html/testimonials.php" class="btn-text">Read all stories →</a>
</div>
</section>
<!-- ------------------------- SECTION BOOKING -------------------------- -->
<section class="section-booking" id="form">
<div class="row">
<div class="book">
<div class="book__form">
<form action="suggestions.php" method="post" class="form">
<div class="u-margin-top-v-small u-margin-bottom-medium">
<h2 class="heading-secondary">
* Suggestions *
</h2>
</div>
<div class="form__group">
<input type="text" class="form__input" placeholder="Full Name" id="name" name="name" autocomplete="off" required>
<label for="name" class="form__label">Full Name</label>
</div>
<div class="form__group">
<input type="email" class="form__input" placeholder="Email Address" id="email" name="email" autocomplete="off" required>
<label for="email" class="form__label">Email Address</label>
</div>
<input type="text" class="form__input" placeholder="Any Comments / Suggestions " id="comments" name="comments" autocomplete="off" required>
<div class="form__group">
<button class="btn btn--purple btn--purple-2" name="submit">Submit →</button>
</div>
</form>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer__logo-box">
<img src="content/home/paktours%20logo.png" alt="full logo" class="footer__logo">
</div>
<div class="row">
<div class="col-1-of-2">
<div class="footer__navigation">
<ul class="footer__list">
<li class="footer__item"><a href="html/about.php" class="footer__link">About US</a></li>
<li class="footer__item"><a href="#features" class="footer__link">Features</a></li>
<li class="footer__item"><a href="#bookings" class="footer__link">Bookings</a></li>
<li class="footer__item"><a href="html/testimonials.php" class="footer__link">Stories</a></li>
<li class="footer__item"><a href="#form" class="footer__link">Suggestions</a></li>
</ul>
</div>
</div>
<div class="col-1-of-2">
<p class="footer__copyright">
Built by <a href="#" class="footer__link"> Munzah Shah, Verda Dewani and Rafia niaz </a> for her Web engineering Project. Copyright © by Munzah Shah. You are 100% allowed to use this web page for both personal and commercial use, but NOT to claim it as your own design. A credit to the original author, Munzah Shah, is of course highly appreciated.
</p>
</div>
</div>
</footer>
</main>
</body>
</html>