-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTravel.html
More file actions
456 lines (380 loc) · 19.6 KB
/
Travel.html
File metadata and controls
456 lines (380 loc) · 19.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travelerz</title>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./images/Travelerz-logo.png" type="img/x-icon">
</head>
<body>
<header>
<div id="menu-bar" class="fas fa-bars"></div>
<a href="#" class="logo">Tr<span>@</span>velerz</a>
<div class="icons">
<input type="text" name="" placeholder="Search">
<button><i class="fas fa-search" id="search-btn"></i></button>
</div>
<nav class="navbar">
<a href="#home">home</a>
<a href="#packages">packages</a>
<a href="#book">book</a>
<a href="#gallery">gallery</a>
<a href="#services">services</a>
<a href="#contact">contact</a>
</nav>
<div class="icons">
<i class="fas fa-user" id="login-btn"></i>
</div>
</header>
<div class="login-form-container">
<i class="fas fa-times" id="form-close"></i>
<form action="">
<h3>login</h3>
<input type="email" class="box" placeholder="enter your email">
<input type="password" class="box" placeholder="enter your password">
<input type="submit" value="login now" class="btn">
<input type="checkbox" id="remember">
<label for="remember">remember me</label>
<p>forget password? <a href="#">click here</a></p>
<p>don't have and account? <a href="#">register now</a></p>
</form>
</div>
<section class="home" id="home">
<div class="content">
<h3>The World is Waiting for you!</h3>
<p>best hotels, restaurants and attractions, according to the professionals</p>
<a href="#" class="btn">discover</a>
</div>
<div class="controls">
<span class="vid-btn active" data-src="images/vid-1.mp4"></span>
<span class="vid-btn" data-src="images/vid-2.mp4"></span>
<span class="vid-btn" data-src="images/vid-3.mp4"></span>
<span class="vid-btn" data-src="images/vid-4.mp4"></span>
<span class="vid-btn" data-src="images/vid-5.mp4"></span>
</div>
<div class="video-container">
<video src="images/vid-1.mp4" id="video-slider" loop autoplay muted></video>
</div>
</section>
<section class="packages" id="packages">
<h1 class="heading">
<span>packages</span>
</h1>
<div class="box-container">
<div class="box">
<img src="images/p-4.jpg" alt="">
<div class="content">
<h3> <i class="fas fa-map-marker-alt"></i> paris </h3>
<p>The most romantic city in the world, Paris is a global center for art, fashion, gastronomy, and culture.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="price"> $110.00 <span>$150.00</span> </div>
<a href="#" class="btn">book now</a>
</div>
</div>
<div class="box">
<img src="images/p-2.jpg" alt="">
<div class="content">
<h3> <i class="fas fa-map-marker-alt"></i> hawaii </h3>
<p>Go island-hopping, explore off-the-beaten path, tour volcanos and take in the beauty of the Hawaiian islands!</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="price"> $90.00 <span>$120.00</span> </div>
<a href="#" class="btn">book now</a>
</div>
</div>
<div class="box">
<img src="images/p-1.jpg" alt="">
<div class="content">
<h3> <i class="fas fa-map-marker-alt"></i> mumbai </h3>
<p>Mumbai itself is as larger-than-life as the heroes of its movies.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="price"> $110.00 <span>$120.00</span> </div>
<a href="#" class="btn">book now</a>
</div>
</div>
<div class="box">
<img src="images/p-5.jpg" alt="">
<div class="content">
<h3> <i class="fas fa-map-marker-alt"></i> tokyo </h3>
<p>It features a unique mix of the old and modern that blends perfectly with ancient temples hidden among large, modern architecture.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="price"> $100.00 <span>$130.00</span> </div>
<a href="#" class="btn">book now</a>
</div>
</div>
<div class="box">
<img src="images/p-3.jpg" alt="">
<div class="content">
<h3> <i class="fas fa-map-marker-alt"></i> sydney </h3>
<p>Full of sophisticated spots like the iconic Opera Houses, inviting beaches, & trendy areas like The Rocks.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="price"> $100.00 <span>$120.00</span> </div>
<a href="#" class="btn">book now</a>
</div>
</div>
<div class="box">
<img src="images/p-6.jpg" alt="">
<div class="content">
<h3> <i class="fas fa-map-marker-alt"></i> eypt </h3>
<p> Egypt also offers a slew of luxurious Red Sea resorts, many within reach of spectacular snorkeling, diving and windsurfing.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="price"> $100.00 <span>$120.00</span> </div>
<a href="#" class="btn">book now</a>
</div>
</div>
</div>
</section>
<section class="book" id="book">
<h1 class="heading">
<span>book</span>
<span>now</span>
</h1>
<div class="row">
<form action="">
<div class="inputBox">
<h3>where to</h3>
<input type="text" placeholder="place name">
</div>
<div class="inputBox">
<h3>how many</h3>
<input type="number" placeholder="number of guests">
</div>
<div class="inputBox">
<h3>arrival</h3>
<input type="date">
</div>
<div class="inputBox">
<h3>package name</h3>
<input type="text">
</div>
<input type="submit" class="btn" value="book now">
</form>
<div class="image">
<img src="images/book-img.jpg" alt="">
</div>
</div>
</section>
<section class="gallery" id="gallery">
<h1 class="heading">
<span>tour gallery</span>
</h1>
<div class="box-container">
<div class="box">
<img src="images/g-1.jpg" alt="">
<div class="content">
<h3>Europe tour packages</h3>
<p>Europe is the perfect place for travellers of any kind.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-2.jpg" alt="">
<div class="content">
<h3>Russia tour packages</h3>
<p>Russia is a paradise for history lovers because of the number of museums & historical monuments.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-3.jpg" alt="">
<div class="content">
<h3>Italy tour packages</h3>
<p>If you are looking for a backpacker trip or a luxurious relaxed trip, Italy has something for everything.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-4.jpg" alt="">
<div class="content">
<h3>Hawaii tour packages</h3>
<p>The pristine beaches, warm water, vibrant reefs, pleasant weather, exciting new things to do and see make the 50th state such a popular destination.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-5.jpg" alt="">
<div class="content">
<h3>Bali tour packages</h3>
<p>A Bali trip takes you away from the stresses of your hectic modern life and into a gentler world. The island is surrounded by its natural treasure of coral reefs and sandy beaches.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-6.jpg" alt="">
<div class="content">
<h3>Paris tour packages</h3>
<p>A super fun and efficient way to orient and familiarize yourself with Paris at the beginning of a trip. Great for all ages.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-7.jpg" alt="">
<div class="content">
<h3>China your packages</h3>
<p>Swings between the stunning modern vibes of Beijing & Shanghai & the centuries old culture and traditions of Tibet. The Great Wall of China, river cruise on Yangtze river is best.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-8.jpg" alt="">
<div class="content">
<h3> Japan tour packages</h3>
<p>With a rich history, diverse landscapes, unique traditions, and mouth-watering delicacies, a tour of Japan is a cultural paradise. </p>
<a href="#" class="btn">see more</a>
</div>
</div>
<div class="box">
<img src="images/g-9.jpg" alt="">
<div class="content">
<h3> Egypt tour packages</h3>
<p>Egypt has been considered by far to be one of the best travel destinations in the world for a number of reasons, one of them being the pyramids.</p>
<a href="#" class="btn">see more</a>
</div>
</div>
</div>
</section>
<section class="services" id="services">
<h1 class="heading">
<span>Our services</span>
</h1>
<div class="box-container">
<div class="box">
<i class="fas fa-bullhorn"></i>
<h3>safty guide</h3>
<p>Our tour guide is a professional, who serves tourists for commentary making, normal assisting, providing information, etc.</p>
</div>
<div class="box">
<i class="fas fa-globe-asia"></i>
<h3>around the world</h3>
<p>We provide packages from all over the world with beautiful and adventurous destinations.</p>
</div>
<div class="box">
<i class="fas fa-hiking"></i>
<h3>adventures</h3>
<p>We emphasize on <b>Adventure Explore and gain experience.</b> There is no better way to gain experience, than by exploring.</p>
</div>
<div class="box">
<i class="fas fa-hotel"></i>
<h3>affordable hotels</h3>
<p>We provide you with best hotels with proper hygiene & sanitation & essentials.</p>
</div>
<div class="box">
<i class="fas fa-utensils"></i>
<h3>food and drinks</h3>
<p>We've been empowering our customers in discovering new tastes and experiences across countries. </p>
</div>
<div class="box">
<i class="fas fa-plane"></i>
<h3>fastest travel</h3>
<p>To satisfy your craving for travel, you don't need to wait for fare sale as we brings the best flight offers for its customers any time.</p>
</div>
</div>
</section>
<section class="contact" id="contact">
<h1 class="heading">
<span>contact us</span>
</h1>
<div class="row">
<form action="">
<div class="inputBox">
<input type="text" placeholder="name">
<input type="email" placeholder="email">
</div>
<div class="inputBox">
<input type="number" placeholder="number">
<input type="text" placeholder="subject">
</div>
<textarea placeholder="message" name="" id="" cols="30" rows="10"></textarea>
<input type="submit" class="btn" value="send message">
</form>
<div class="image">
<img src="images/contact-img.jpg" alt="">
</div>
</div>
</section>
<section class="brand-container">
<div class="swiper-container brand-slider">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="images/1.jpg" alt=""></div>
<div class="swiper-slide"><img src="images/2.jpg" alt=""></div>
<div class="swiper-slide"><img src="images/3.jpg" alt=""></div>
<div class="swiper-slide"><img src="images/4.jpg" alt=""></div>
<div class="swiper-slide"><img src="images/5.jpg" alt=""></div>
<div class="swiper-slide"><img src="images/6.jpg" alt=""></div>
</div>
</div>
</section>
<section class="footer">
<div class="box-container">
<div class="box">
<h3>about us</h3>
<p><i>“Travel is the only thing you buy that makes you richer”.</i><br><br> We completely swear by this and believe in fulfilling travel dreams that make you invariably rich by the day. We have been selling beautiful experiences for years through our state-of-the-art designed holiday packages and other essential travel services. We inspire our customers to live a rich life, full of unforgettable travel experiences.</p>
</div>
<div class="box">
<h3>branch locations</h3>
<a href="#">india</a>
<a href="#">USA</a>
<a href="#">japan</a>
<a href="#">france</a>
</div>
<div class="box">
<h3>quick links</h3>
<a href="#home">home</a>
<a href="#packages">packages</a>
<a href="#book">book</a>
<a href="#gallery">gallery</a>
<a href="#services">services</a>
<a href="#contact">contact</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#">facebook</a>
<a href="#">instagram</a>
<a href="#">twitter</a>
<a href="#">linkedin</a>
</div>
</div>
<h1 class="credit"> created by <span> Nikita Nikam, Prashansa Navgare, Priyanka Gawali, Pratik Gawali & Rutuja Kakde</span> <br>| all rights reserved</h1>
</section>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>