-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
511 lines (425 loc) · 16.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeTravel</title>
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="https://github.com/DaviBT/Project-Travel_Agency/blob/main/images/favicon.ico">
<!-- mobile first style -->
<link rel="stylesheet" href="styles/style.css" media="all">
<!-- media queries -->
<link rel="stylesheet" href="styles/media-query.css">
<!-- cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<!--Header section-->
<header class="header">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="#" rel="next" target="_self" class="logo"><i class="fas fa-paper-plane"></i>WeTravel</a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#destination">destination</a>
<a href="#services">services</a>
<a href="#gallery">gallery</a>
<a href="#blog">blog</a>
<a href="#review">testimonials</a>
</nav>
<nav class="inline">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#destination">destination</a>
<a href="#services">services</a>
<a href="#gallery">gallery</a>
<a href="#blog">blog</a>
<a href="#review">testimonials</a>
</nav>
<button href="#book-form" class="btn">book now</button><br>
</header>
<!--Home section-->
<section class="home" id="home">
<div class="content">
<span>let's create</span>
<h3>memories</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab et eos amet minima delectus vel aliquid fuga, blanditiis quis sequi.</p>
</div>
</section>
<!--booking form section-->
<section class="book-form" id="book-form">
<form action="">
<div class="inputBox">
<label for="iplace">where to?</label>
<input id="iplace" type="text" placeholder="Place Name" value="">
</div class="inputBox">
<div>
<label for="idate">when?</label>
<input id="idate" type="date" value="" placeholder="xx/xx/xxxx">
</div class="inputBox">
<div>
<label for="inum">how many?</label>
<input id="inum" type="number" placeholder="n° of people" value="" min="1" max="20">
</div>
<input type="submit" value="find now" class="btn2">
</form>
</section>
<!--About section-->
<section class="about" id="about">
<div class="video-container">
<video src="images/about-vid-1.mp4" class="video" muted autoplay loop></video>
<div class="controls">
<span class="control-btn" data-src="images/about-vid-1.mp4" muted autoplay loop class="video"></span>
<span class="control-btn" data-src="images/about-vid-2.mp4" muted autoplay loop></span>
<span class="control-btn" data-src="images/about-vid-3.mp4" muted autoplay loop></span>
</div>
</div>
<div class="content">
<span>our differential</span>
<h3>connect with nature</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quos rem, quidem incidunt ipsam error laudantium possimus itaque accusantium facilis facere?</p>
<a href="#" class="btn">read more</a>
</div>
</section>
<!-- Destination section -->
<section class="destination" id="destination">
<div class="heading">
<span>your happiness</span>
<h3>makes our gratification</h3>
</div>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/des-1.jpg" alt="whoman with a yellow dress on a rock">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/des-2.jpg" alt="waterfall">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/des-3.jpg" alt="boat on blue sea">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/des-4.jpg" alt="montain sunset">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/des-5.jpg" alt="couple in a beach">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/des-6.jpg" alt="snow montains">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/des-7.jpg" alt="whoman on a boat">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/des-8.jpg" alt="holding a rock">
</div>
<div class="content">
<h4>tours & sightseeing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<a href="#">read more <i class="fas fa-angle-right"></i></a>
</div>
</div>
</div>
</section>
<!-- Services section -->
<section class="services" id="services">
<div class="heading">
<span>we provide</span>
<h3>experiences</h3>
</div>
<div class="box-container">
<div class="box">
<i class="fas fa-globe"></i>
<h4>discover the world</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis nemo dignissimos libero nesciunt culpa beatae</p>
</div>
<div class="box">
<i class="fas fa-hiking"></i>
<h4>adventures</h4>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vitae, dolor</p>
</div>
<div class="box">
<i class="fas fa-utensils"></i>
<h4>spectacular gastronomy</h4>
<p>Savor spectacular cuisine wherever you go</p>
</div>
<div class="box">
<i class="fas fa-hotel"></i>
<h4>the perfect hotel <strong>for you</strong></h4>
<p>From the coziest hotels, to the most luxurious<p>
</div>
<div class="box">
<i class="fas fa-wallet"></i>
<h4>affordable prices</h4>
<p>With us, you will find the perfect destination that fits in your wallet</p>
</div>
<div class="box">
<i class="fas fa-headset"></i>
<h4>customer support</h4>
<p>We are 24 hours per day, seven days per week always ready to help you</p>
</div>
</div>
</section>
<!--galery section-->
<section class="gallery" id="gallery">
<div class="heading">
<span>our gallery</span>
<h3>moments that lasted forever</h3>
</div>
<div class="box-container">
<div class="box">
<img src="images/gallery-img-1.jpg" alt="whoman in Iceland sea">
<span>travel spot</span>
<h4>iceland</h4>
</div>
<div class="box">
<img src="images/gallery-img-2.jpg" alt="whoman on a boat">
<span>travel spot</span>
<h4>greenland</h4>
</div>
<div class="box">
<img src="images/gallery-img-3.jpg" alt="compass">
<span>travel spot</span>
<h4>texas</h4>
</div>
<div class="box">
<img src="images/gallery-img-4.jpg" alt="scotland">
<span>travel spot</span>
<h4>scotland</h4>
</div>
<div class="box">
<img src="images/gallery-img-5.jpg" alt="canada">
<span>travel spot</span>
<h4>canada</h4>
</div>
<div class="box">
<img src="images/gallery-img-6.jpg" alt="maldive">
<span>travel spot</span>
<h4>maldive</h4>
</div>
<div class="box">
<img src="images/gallery-img-7.jpg" alt="iceland">
<span>travel spot</span>
<h4>iceland</h4>
</div>
<div class="box">
<img src="images/gallery-img-8.jpg" alt="alaska">
<span>travel spot</span>
<h4>alaska</h4>
</div>
<div class="box">
<img src="images/gallery-img-9.jpg" alt="colorado">
<span>travel spot</span>
<h4>colorado</h4>
</div>
</div>
</section>
<!--blog section-->
<section class="blog" id="blog">
<div class="heading">
<span>our blog</span>
<h3>here we tell our stories</h3>
</div>
<div class="box-container">
<div class="box">
<div class="images">
<img src="images/blog-1.jpg" alt="">
</div>
<div class="content">
<a href="#" class="link">Enjoy the journey, not just the destination</a>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<div class="icon">
<a href="#"><i class="fas fa-calendar"></i> 1st january, 2023</a>
<a href="#"><i class="fas fa-feather"></i> by Davi Torres</a>
</div>
</div>
</div>
<div class="box">
<div class="images">
<img src="images/blog-2.jpg" alt="">
</div>
<div class="content">
<a href="#" class="link">Dare to live the life you've always wanted</a>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<div class="icon">
<a href="#"><i class="fas fa-calendar"></i> 2nd january, 2023</a>
<a href="#"><i class="fas fa-feather"></i> by Davi Torres</a>
</div>
</div>
</div>
<div class="box">
<div class="images">
<img src="images/blog-3.jpg" alt="">
</div>
<div class="content">
<a href="#" class="link">Adventures are the best way to learn</a>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<div class="icon">
<a href="#"><i class="fas fa-calendar"></i> 3rd january, 2023</a>
<a href="#"><i class="fas fa-feather"></i> by Davi Torres</a>
</div>
</div>
</div>
</div>
</section>
<!--review section-->
<section class="review" id="review">
<div class="content">
<span class="message">testimonial</span>
<h3 class="header">reports from our clients</h3>
<p>Messages that warm our hearts...</p>
</div>
<div class="box-container">
<div class="box">
<blockquote>
<p>"You miss 100% of trips that you don't go. WeTravel it's like a magical place, it's a great company, like Dunder Mifflin."</p>
</blockquote>
<div class="user">
<div class="image"><img src="images/picture1.jpg" alt="Michael Scott"></div>
<div class="info">
<h3>Michael Scott</h3>
<span>regional manager</span>
</div>
</div>
</div>
<div class="box">
<blockquote>
<p>"Fact: bears can climb faster than they can run. Another fact: WeTravel it's a great travel agency, they have the best quality of beets."</p>
</blockquote>
<div class="user">
<div class="image"></div>
<div class="info">
<h3>Dwight Schrute</h3>
<span>assistant to the regional manager</span>
</div>
</div>
</div>
<div class="box">
<blockquote>
<p>"WeTravel it's a company that I always trust when it comes to traveling. They always give you a lot of attention."</p>
</blockquote>
<div class="user">
<div class="image"><img src="images/picture3.jpg" alt="Jim Halpert"></div>
<div class="info">
<h3>Jim Halpert</h3>
<span>salesman</span>
</div>
</div>
</div>
<div class="box">
<blockquote>
<p>"WeTravel has helped me a lot of times in my trips. They are always ready to help you."</p>
</blockquote>
<div class="user">
<div class="image"><img src="images/picture4.jpg" alt="Pam Beesly"></div>
<div class="info">
<h3>Pam Beesly</h3>
<span>receptionist</span>
</div>
</div>
</div>
</div>
</section>
<!-- banner section -->
<div class="banner">
<div class="content">
<span>start your adventures</span>
<h3>Let's explore this world</h3>
<p>Don't leave your dream for later, you deserve to travel too!</p>
<a href="#book-form" class="btn">Book Now</a>
</div>
</div>
<!-- footer section -->
<section class="footer">
<div class="box-container">
<div class="box">
<a href="#" class="logo"><i class="fas fa-paper-plane"></i>travel </a>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Earum, autem!</p>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
</div>
</div>
<div class="box">
<h3>take a look</h3>
<div class="links">
<a href="#home" class="links"> <i class="fas fa-arrow-right"> </i> home </a>
<a href="#about" class="links"> <i class="fas fa-arrow-right"></i> about </a>
<a href="#destination" class="links"> <i class="fas fa-arrow-right"></i> destination </a>
<a href="#services" class="links"> <i class="fas fa-arrow-right"></i> services </a>
<a href="#gallery" class="links"> <i class="fas fa-arrow-right"></i> gallery </a>
<a href="#blog" class="links"> <i class="fas fa-arrow-right"></i> blog </a>
<a href="#review" class="links"> <i class="fas fa-arrow-right"></i> testimonials </a>
</div>
</div>
<div class="box">
<h3>let's talk</h3>
<p> <i class="fas fa-map"></i> city, country </p>
<p> <i class="fas fa-phone"></i> 111-222-333-7777 </p>
<p> <i class="fas fa-envelope"></i> abc@gmail.com </p>
</div>
<div class="box">
<h3>newsletter</h3>
<p>receive our daily newsletter</p>
<form action="#" method="post">
<input type="email" name="email" id="iemail" placeholder="enter your email">
<input type="submit" value="send" class="btn2">
</form>
</div>
</div>
</section>
<script src="script/script.js" defer></script>
</body>
</html>