-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
472 lines (391 loc) · 20.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Website Design</title>
<!-- Style Css Link -->
<link rel="stylesheet" href="style.css">
<!-- Style Css Link -->
<!-- Font Awesome Cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Font Awesome Cdn -->
<!-- Google Font links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap" rel="stylesheet">
<!-- Google Font links -->
</head>
<body>
<!-- Header Start -->
<div class="header">
<nav>
<input type="checkbox" id="show-search">
<input type="checkbox" id="show-menu">
<label for="show-menu" class="menu-icon"><i class="fas fa-bars"></i></label>
<div class="content">
<div class="logo">
<div class="logo"><a href="index.html"><img src="./images/logo.png" width="70" height="50" alt=""></a></div>
</div>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#packages">Packages</a></li>
<li><a href="#book">Book</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<label for="show-search" class="search-icon"><i class="fas fa-search"></i></label>
<form action="#" class="search-box">
<input type="text" placeholder="Search" required>
<button type="submit" class="go-icon"><i class="fas fa-long-arrow-alt-right"></i></button>
</form>
</nav>
</div>
<!-- Header End -->
<!-- Home Section Start -->
<section class="home" id="home">
<div class="main-text">
<h3>Travel The World
<br> & Explore The New Destination
</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Porro molestias nemo, harum debitis error itaque?</p>
<a href="#contact"><button id="home-btn">CONTACT <i class="fa-solid fa-arrow-down"></i>
</div>
</section>
<!-- Home Section End -->
<!-- Services Section Start -->
<section class="services" id="services">
<div class="heading">
<h3>Services</h3>
</div>
<div class="card-content">
<div class="row">
<i class="fas fa-train"></i>
<div class="card-body">
<h3>Train Ticket</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente vero suscipit eos quam explicabo quas.</p>
</div>
</div>
<div class="row">
<i class="fas fa-plane"></i>
<div class="card-body">
<h3>Air Ticket</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente vero suscipit eos quam explicabo quas.</p>
</div>
</div>
<div class="row">
<i class="fas fa-hotel"></i>
<div class="card-body">
<h3>Affordable Hotels</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente vero suscipit eos quam explicabo quas.</p>
</div>
</div>
<div class="row">
<i class="fas fa-cab"></i>
<div class="card-body">
<h3>Cab Service</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente vero suscipit eos quam explicabo quas.</p>
</div>
</div>
</div>
</section>
<!-- Services Section End -->
<!-- About Section Start -->
<section class="about" id="about">
<div class="about-img">
<img src="./images/about-img.png" alt="">
</div>
<div class="about-info">
<h6>About us</h6>
<h3>How we work :</h3>
<p>Welcome to a world of extraordinary travel experiences with <strong>Travel India</strong>. As passionate travel enthusiasts ourselves, we take immense pride in curating unforgettable journeys for our valued customers.</p>
<p>Booking flights, trains, cabs, and accommodations is a breeze with our user-friendly platform. Our team of experts ensures a seamless journey, collaborating with reputable airlines, reliable train services, and handpicked accommodations for your peace of mind.</p>
<p>Embrace the world's diverse wonders as you delve into new cultures, savor delectable cuisines, and capture lifelong memories. Whether you're a seasoned globetrotter or embarking on your first adventure, <strong>Travel India</strong> is your trusted gateway to extraordinary journeys. Unleash your wanderlust with us and let the adventures begin!</p>
<button class="about-btn">CONTACT US</button>
</div>
</section>
<!-- About Section End -->
<!-- Gallary Section Start -->
<section class="gallary" id="gallary">
<div class="heading">
<center><h3>OUR GALLARY <i class="fa-solid fa-arrow-down"></i></h3></center>
</div>
<div class="gallary-card">
<div class="row">
<center><img src="./images/p1.jpg" alt=""></center>
</div>
<div class="row">
<center><img src="./images/p2.png" alt=""></center>
</div>
<div class="row">
<center><img src="./images/p3.png" alt=""></center>
</div>
<div class="row">
<center><img src="./images/p4.png" alt=""></center>
</div>
<div class="row">
<center><img src="./images/p5.png" alt=""></center>
</div>
</div>
</section>
<!-- Gallary Section End -->
<!-- Packages Section Start -->
<section class="packages" id="packages">
<div class="main-txt">
<h3>PLACES TO VISIT</h3>
</div>
<div class="card-content">
<div class="row">
<img src="./images/united state.png" alt="">
<div class="card-body">
<h3>United States</h3>
<p>Embark on an extraordinary adventure in the United States, where the diverse landscapes, vibrant cities, and rich tapestry of cultures come together to create a one-of-a-kind experience that will leave you in awe and longing for more.</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<button>Book Now</button>
</div>
</div>
<div class="row">
<img src="./images/jordan.png" alt="">
<div class="card-body">
<h3>Jordan</h3>
<p>Journey into the timeless enchantment of Jordan, where the echoes of ancient civilizations reverberate through magnificent landscapes, unveiling a tapestry of awe-inspiring wonders that will leave you captivated.</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<button>Book Now</button>
</div>
</div>
<div class="row">
<img src="./images/china.png" alt="">
<div class="card-body">
<h3>China</h3>
<p>
<br>Embark on an unforgettable odyssey through China's rich heritage and breathtaking landscapes, where ancient traditions harmoniously blend with modern marvels, captivating your senses at every turn.</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<button>Book Now</button>
</div>
</div>
<div class="row">
<img src="./images/Mexico.png" alt="">
<div class="card-body">
<h3>Mexico</h3>
<p><br>
<br>
Discover the vibrant tapestry of Mexico, where age-old history dances with colorful traditions, sun-kissed beaches, and mouthwatering cuisine, creating an irresistible mosaic of unforgettable experiences.
</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<button>Book Now</button>
</div>
</div>
<div class="row">
<img src="./images/france.png" alt="">
<div class="card-body">
<h3>France</h3>
<p>Indulge in the timeless allure of France, where the Eiffel Tower's embrace, exquisite art, world-class cuisine, and romantic ambiance weave an enchanting spell that lingers in your heart forever.</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<button>Book Now</button>
</div>
</div>
<div class="row">
<img src="./images/Greece.png" alt="">
<div class="card-body">
<h3>Greece</h3>
<p>Unravel the timeless mysteries of Greece, where ancient ruins stand as silent storytellers, sun-kissed islands beckon with azure waters, and warm hospitality embraces you like an old friend.</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<button>Book Now</button>
</div>
</div>
<div class="row">
<img src="./images/Spain.png" alt="">
<div class="card-body">
<h3>Spain</h3>
<p>Immerse yourself in the passionate allure of Spain, where the rhythmic flamenco beats, architectural wonders, sun-soaked beaches, and delectable tapas ignite your soul with a fiery zest for life.</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<button>Book Now</button>
</div>
</div>
<div class="row">
<img src="./images/Turkey.png" alt="">
<div class="card-body">
<h3>Turkey</h3>
<p>Discover Turkey's enchanting blend of ancient wonders, vibrant cultures, and breathtaking landscapes, where timeless history meets modern delights - an unforgettable journey awaits!</p>
<div class="rating">
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
<i class="fa-solid fa-star checked"></i>
</div>
<!-- <h5>Price $999</h5>-->
<button>Book Now</button>
</div>
</div>
</div>
</section>
<!-- Packages Section End -->
<!-- Book Section Start -->
<section class="book" id="book">
<div class="book-img">
<img src="./images/book-img.png" alt="">
</div>
<div>
<section class="contact" id="contact">
<div class="contact-text">
<h2>Get In <span>Touch</span></h2>
<p>Contact us using options below </p>
<div class="list">
<li><a href="tel: +91 8527268338">+91 8527268338</a>
<a href="tel: +91 9810177922">+91 9810177922</a>
</li>
<li><a href = "mailto: travelindiaonline2020@gmail.com">travelindiaonline2020@gmail.com</a></li>
<li><a href="#">J-23 ARD Complex, RK Puram, Sector 13, New Delhi-110066</a></li>
<!--map-->
</div>
</div>
</section>
<!-- Book Section End -->
<!-- Section Reviews Start -->
<section class="reviews" id="reviews">
<div class="main-txt">
<h3>What Custommers Say</h3>
</div>
<div class="card-content">
<div class="row">
<h5><img src="./images/pic-1.png" alt="">John</h5>
<div class="rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
<p><strong>Unforgettable Journey Made Easy!</strong><br>
Travel India in New Delhi took care of everything, allowing me to explore India and beyond effortlessly. From booking flights, trains, cabs, to hotels, they made it hassle-free, and I cherish the memories created. Highly recommended!</p>
</div>
<div class="row">
<h5><img src="./images/pic-2.png" alt="">ariana</h5>
<div class="rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
<p>
<strong>Empowering Adventures for Women</strong><br>
Travel India in New Delhi understands the needs of female travelers. They made my journey safe, memorable, and hassle-free. With their personalized touch, I explored captivating destinations with confidence. Highly recommended for all adventurous women out there!
</p>
</div>
<div class="row">
<h5><img src="./images/pic-3.png" alt="">Steve</h5>
<div class="rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
<p>
<strong>Beyond Expectations - Exquisite Travel Experience!</strong><br>
I had an incredible time exploring the world with <strong>Travel India</strong> in New Delhi. Their seamless booking process for flights, trains, cabs, and hotels made my journey stress-free. With their expert guidance, I discovered captivating destinations, and every moment was truly unforgettable. Can't wait to plan my next adventure with them!
</p>
</div>
</div>
</section>
<!-- Section Reviews End -->
<!-- Contact Section Start -->
<!--<section class="contact" id="contact">
<div class="contact-text">
<h2>Get In <span>Touch</span></h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Saepe eius possimus nostrum in assumenda aliquam?</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Non, accusantium.</p>
<div class="list">
<li><a href="#">+9200000000000000</a></li>
<li><a href="#">example@gmail.com</a></li>
<li><a href="#">Pakistan Sindh Karachi</a></li>
</div>
</div>
<div class="contact-form">
<form action="#">
<input type="text" placeholder="Name" required>
<input type="number" placeholder="Phone" required>
<input type="email" placeholder="Email" required>
<textarea name="" id="" cols="35" rows="10" placeholder="Message" required></textarea>
<input type="submit" value="Send" class="submit" required>
</form>>
</div>-->
</section>
<!-- Contact Section End -->
<footer id="footer">
<div class="footer-content">
<div class="row" id="row1">
<a href="#" id="footer-logo">Travel India</a>
<p>Your Passionate Travel Experts in New Delhi. Discover personalized itineraries, seamless bookings, and exceptional experiences. Unleash your wanderlust with us!</p>
<div class="socail-links">
<!--<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-youtube"></i>
<i class="fa-brands fa-pinterest-p"></i>-->
</div>
</div>
<div class="row" id="row2">
<h3>UseFull Links</h3>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#packages">Packages</a></li>
<li><a href="#book">Book</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>