-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmustang.html
More file actions
653 lines (603 loc) · 31.3 KB
/
mustang.html
File metadata and controls
653 lines (603 loc) · 31.3 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
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
<!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" />
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.2.0/fonts/remixicon.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"/>
<link rel="stylesheet" href="subdiv.css" />
<link href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css" rel="stylesheet"/>
<link rel = "icon" href = "assets/logo.jpg" type = "image/x-icon">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<title>NepTour</title>
<style>
@keyframes changetext{
0%{content: "Ilam";}
10%{content: " Ilam Tea Estate";}
20%{content: "Dhanush Sagar";}
30%{content: "Ganga Sagar";}
40%{content: "Parshuram Kunda";}
50%{content: " Ram Sita Bibaha Mandir";}
60%{content: " Ilam Tea Estate";}
70%{content: "Dhanushadham";}
80%{content: "Janaki Mandir";}
90%{content: "Dhanush Sagar";}
100%{content: "Ganga Sagar";}
}
.home{
width: 100%;
height: 90vh;
background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.7)), url(./assets/ilam.jpg);
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<nav>
<div class="nav__logo">NepTour<span>.</span></div>
<ul class="nav__links" id="nav-links">
<li class="link"><a href="index.html">Home</a></li>
<li class="link"><a href="#section3">Accomodation</a></li>
<li class="link"><a href="#section2">Guides</a></li>
<li class="link"><a href="#section1">Destinations</a></li>
</ul>
<a href="contact.html"><button class="btn">Contact Us</button></a>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav><br><br><br>
<div class="home">
<div class="content">
<h5>WELCOME ILAM</h5>
<h1>Visit <span class="changecontent"></span></h1>
<p>The City of Greens</p>
<a href="#section1"><button class="book__now">Explore</button></a>
</div>
</div>
<br><br><br>
<section class="trip" id="section1">
<div class="section__container trip__container">
<h2 class="section__title">Destinatons</h2>
<center><p class="section__subtitle">
List of must visit places and the best tourist spots within Ilam
</p></center></div>
<section class="about" id="about">
<div class="about-img">
<img src="assets/its.webp" alt="">
</div>
<div class="about-text">
<h3>Ilam Tea Estate</h3>
<p align="justify">Ilam is a complete garden in itself. The origins of tea in Liam can be traced back to the 18th century when Nepal’s Prime Minister was Jung Bahadur Rana. The Chinese government gave tea seedlings to Nepal’s Prime Minister, so tea arrived in the Ilam area.
The Ilam Tea plant was established in 1868 and functioned until 2010. Ilam now contains tea estates ranging from 4,000 to 5,000 feet above sea level.
</p>
<button onclick="toggle()" id="about-btn" class="btn1">Locate</button>
</div>
</section>
<center>
<div id="cont" style=" background: transparent;height: 100vh;width: 100%;display: none;align-items: center;justify-content: center;flex-direction: column;"><iframe src="" style="borhttps://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d907179.4691422461!2d85.98566572524172!3d27.354789824527334!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e5c3903c3360df%3A0xecad8a26e2bb6c48!2zSWxhbSBUZWEgRXN0YXRlIOCkmuCkv-Ckr-CkviDgpJXgpK7gpL7gpKg!5e0!3m2!1sen!2snp!4v1706573438612!5m2!1sen!2snpder:0; width: 80%; height: 500px; filter: invert(100%);" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div></center>
<script type="text/javascript">
function toggle() {
var div= document.getElementById('cont')
if (div.style.display=="none") {}
div.style.display="block";
}
</script>
<section class="about" id="about">
<div class="about-img">
<img src="assets/todkejhar.jpg" alt="">
</div>
<div class="about-text">
<h3>Todke Jharna</h3>
<p align="justify">A few hours’ journey from the community homestay will lead you to one of Nepal’s greatest and second-longest waterfalls. Many visitors have been attracted to this beautiful 85-meter-long waterfall in Maimajhuwa’s rugged hills and deep forests.
However, well-known among locals, the name Todke Jharna needs to be more well-known among international visitors. When you get to the location, the sight of the huge fall among the beautiful flora is just breathtaking. A refreshing swim in the autumn and the gorgeous surroundings will give you plenty to enjoy.
Numerous amazing views of Gumbas, Sandakpur, and lush green forest await you during the trip.
</p>
<button onclick="toggle2()" id="about-btn" class="btn1">Locate</button>
</div>
</section>
<center>
<div id="cont2" style=" background: transparent;height: 100vh;width: 100%;display: none;align-items: center;justify-content: center;flex-direction: column;"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3553.5585298625997!2d87.9435707748996!3d27.04411265443236!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e5dbec56f12a05%3A0x74c2c9b26b7c59f2!2sTodke%20Jharna!5e0!3m2!1sen!2snp!4v1706573633977!5m2!1sen!2snp" style="border:0; width: 80%; height: 500px; filter: invert(100%);" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div></center>
<script type="text/javascript">
function toggle2() {
var div= document.getElementById('cont2')
if (div.style.display=="none") {}
div.style.display="block";
}
</script>
<section class="about" id="about">
<div class="about-img">
<img src="assets/pathivara.jpg" alt="">
</div>
<div class="about-text">
<h3>Pathivara Temple</h3>
<p align="justify">Pathivara Temple is among the best places to visit in Ilam. The Temple Pathivara Devi (3794m) is a well-known holy site where pilgrims are believed to get their prayers answered. Hindus & Buddhists both worship Pathivara’s animist divinity. Pathivara’s Goddess is said to give her devotees long-awaited prayers, such as children for those who do not have children or wealth for the poor. Pathivara Devi, which is among the “Shakti Peethsâ€, is worshipped.
Worshippers from India and Nepal visit the temple on special occasions, thinking that a visit will satisfy all of their desires. Pathibhara’s supporters include members of Nepal’s royal family. When animals are slaughtered, Pathibhara Devi gets gold and silver as offerings.
<button onclick="toggle3()" id="about-btn" class="btn1">Locate</button>
</div>
</section>
<center>
<div id="cont3" style=" background: transparent;height: 100vh;width: 100%;display: none;align-items: center;justify-content: center;flex-direction: column;"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3541.288495244763!2d87.76563937491314!3d27.429118437708976!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e61151b61c40c1%3A0x2799a07dc783580b!2sPathibhara%20Devi%20Temple!5e0!3m2!1sen!2snp!4v1706573793414!5m2!1sen!2snp" style="border:0; width: 80%; height: 500px; filter: invert(100%);" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div></center>
<script type="text/javascript">
function toggle3() {
var div= document.getElementById('cont3')
if (div.style.display=="none") {}
div.style.display="block";
}
</script>
<section class="about" id="about">
<div class="about-img">
<img src="assets/shreeantu.webp" alt="">
</div>
<div class="about-text">
<h3>Shree Antu</h3>
<p align="justify">Shree Antu is a popular tourist site for seeing the sunrise. Shree Antu Dandais a renowned sunrise-watching location located at an elevation of 2328m above sea level. The tradition of home staying in this region is believed to have started with Antu. The area’s main attractions are the sunrise vista, Antu Pokhari, sungava cultivation, and Lepcha culture. The location also provides a stunning view of Mt. Kanchajunga, Indian border regions, and swaths of Ilam and Jhapa. The best time to see the dawn from here is from Kartik to Poush (October to February).</p>
<button onclick="toggle4()" id="about-btn" class="btn1">Locate</button>
</div>
</section>
<center>
<div id="cont4" style=" background: transparent;height: 100vh;width: 100%;display: none;align-items: center;justify-content: center;flex-direction: column;"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d56930.78104058791!2d88.08592077868319!3d26.89797827070522!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e5cc61a267ef03%3A0x2185e0d6c06804f5!2sShree%20Antu!5e0!3m2!1sen!2snp!4v1706574024992!5m2!1sen!2snp" style="border:0; width: 80%; height: 500px; filter: invert(100%);" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div></center>
<script type="text/javascript">
function toggle4() {
var div= document.getElementById('cont4')
if (div.style.display=="none") {}
div.style.display="block";
}
</script>
<section class="about" id="about">
<div class="about-img">
<img src="assets/sandakpurr.jpg" alt="">
</div>
<div class="about-text">
<h3>Sandakpur (Sandakphu)</h3>
<p align="justify">Sandakpur is located at a height of 3,665 metres on the Nepal-India border. In India, it expands to the Darjeeling area of West Bengal. From Ilam, visitors can book a private cab to Maimajhuwa Khorsanitar. After a 5-hour journey, you will finally arrive at Sandakphu. Sandakpur offers breathtaking views of the world’s tallest mountains, including Mt. Everest (8,848 m), Mt. Makalu (8,485 m), Mt. Kumbakarna (7,710 m), Mt. Kangchenjunga (8,586 m), and Mt. Lhotse (8,516 m). The area is well-known for bird watching, and it is home to the Danfe (Himalayan monal), which is a Nepali bird. Sandakpur is also home to endangered animals, including musk deer & red pandas.
</p>
<button onclick="toggle5()" id="about-btn" class="btn1">Locate</button>
</div>
</section>
<center>
<div id="cont5" style=" background: transparent;height: 100vh;width: 100%;display: none;align-items: center;justify-content: center;flex-direction: column;"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14212.219181044544!2d87.98970024623758!3d27.060018283793788!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e5da1c85bf30d7%3A0x7c65ec6d4307277!2sSandakphu!5e0!3m2!1sen!2snp!4v1706574160076!5m2!1sen!2snp" style="border:0; width: 80%; height: 500px; filter: invert(100%);" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div></center>
<script type="text/javascript">
function toggle5() {
var div= document.getElementById('cont5')
if (div.style.display=="none") {}
div.style.display="block";
}
</script>
</section>
<section class="trip" id="section2">
<div class="section__container trip__container">
<h2 class="section__title">Guides</h2>
<center><p class="section__subtitle">
List of Fully experienced Guides to help you explore Ilam
</p></center>
<section class="lmnop" id="lmnop">
<div class="swiper mySwiper container">
<div class="swiper-wrapper content">
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide1.jpg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></a>
</div>
<div class="name-profession">
<span class="name">Shreyas Manandhar</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide2.jpeg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></i></a>
</div>
<div class="name-profession">
<span class="name">Ramesh Thakuri</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide3.avif" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></i></a>
</div>
<div class="name-profession">
<span class="name">Hari Paudel</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide4.jpg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></i></a>
</div>
<div class="name-profession">
<span class="name">Ramesh Thakuri</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide5.jpeg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></a>
</div>
<div class="name-profession">
<span class="name">Janak Mahato</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide6.jpg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></a>
</div>
<div class="name-profession">
<span class="name">Indra Sahi</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide7.jpg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></a>
</div>
<div class="name-profession">
<span class="name">Anjit Khadka</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide8.jpg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></a>
</div>
<div class="name-profession">
<span class="name">Abiral Shrestha</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
<div class="swiper-slide card">
<div class="card-content">
<div class="image">
<img src="assets/guide9.jpeg" alt="" />
</div>
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=61555611842513"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/stepbroinitiative/"><i class="fab fa-instagram"></i></a>
<a href="tel:9865365520"><i class="fa-solid fa-phone"></i></a>
</div>
<div class="name-profession">
<span class="name">Subham Subedi</span>
<span class="profession">Tour Guide</span>
</div>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="button">
<a href="mailto:contact@krishsingh.com.np"><button class="aboutMe">Mail Me</button></a>
<a href="payment.html"><button class="hireMe">Hire Me</button></a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</section>
</div>
</section>
<section class="trip" id="section3">
<div class="section__container trip__container">
<h2 class="section__title">Accomodations</h2>
<center><p class="section__subtitle">
List of the best exclusive Hotels for Accomodation in Ilam
</p></center>
<div class="trip__grid">
<div class="trip__card">
<img src="assets/htlcitypark.jpeg" alt="trip" />
<div class="trip__details">
<p><b>HOTEL CITY PARK PVT.LTD.</b><br>Janakpur 45600</p>
<div class="rating"><i class="ri-star-fill"></i> 4.2</div>
<div class="booking__price">
<div class="price"><span>Price</span> varies</div>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwj4ycSt6oCEAxWUe2wGHW82B_EQFnoECBQQAQ&url=https%3A%2F%2Fwww.tripadvisor.com%2FHotel_Review-g424939-d23852543-Reviews-Hotel_City_Park-Janakpur_Janakpur_Zone_Central_Region.html&usg=AOvVaw0IhFV8r5ZcutjoN3h4MTmY&opi=89978449"><button class="book__now">Show</button></a>
</div>
</div>
</div>
<div class="trip__card">
<img src="assets/htlsitasharan.jpeg" alt="trip" />
<div class="trip__details">
<p><b>Hotel Sitasharan</b><br>PWC6+GQV, Janakpur 23</p>
<div class="rating"><i class="ri-star-fill"></i> 4.5</div>
<div class="booking__price">
<div class="price"><span>Price</span> varies </div>
<a href="http://www.hotelsitasharan.com/"><button class="book__now">Show</button></a>
</div>
</div>
</div>
<div class="trip__card">
<img src="assets/mithilaynivhtl.jpg" alt="trip" />
<div class="trip__details">
<p><b>Mithila Yatri Niwas</b><br>PWJF+V2W, Janakpur 45600</p>
<div class="rating"><i class="ri-star-fill"></i> 4.7</div>
<div class="booking__price">
<div class="price"><span>Price</span> varies </div>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwjZlrWT64CEAxXiXWwGHYPUAksQFnoECCAQAQ&url=https%3A%2F%2Fmithilayatriniwas.com%2F&usg=AOvVaw0UeJk_H36f9VA_5MZlA6ou&opi=89978449"><button class="book__now">Show</button></a>
</div>
</div>
</div>
</div>
<div class="trip__grid">
<div class="trip__card">
<img src="assets/welcomehtl.avif" alt="trip" />
<div class="trip__details">
<p><b>Hotel Welcome</b><br>Janakpur 45600</p>
<div class="rating"><i class="ri-star-fill"></i> 4.2</div>
<div class="booking__price">
<div class="price"><span>Price</span> varies</div>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwjH2MnI64CEAxUqUWwGHTzNBGwQFnoECA4QAQ&url=https%3A%2F%2Fwww.agoda.com%2Fhotel-welcome%2Fhotel%2Fjanakpur-np.html&usg=AOvVaw24643Ms030u_rrHO8zzvjY&opi=89978449"><button class="book__now">Show</button></a>
</div>
</div>
</div>
<div class="trip__card">
<img src="assets/vrindavanplchtl.jpeg" alt="trip" />
<div class="trip__details">
<p><b>Hotel Vrindavan Palace</b> <br>Janakpur 45600</p>
<div class="rating"><i class="ri-star-fill"></i> 4.5</div>
<div class="booking__price">
<div class="price"><span>Price</span> varies</div>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwjVlaeH7ICEAxUcd2wGHXk0AcsQFnoECBUQAQ&url=https%3A%2F%2Fwww.booking.com%2Fhotel%2Fnp%2Fvrindavan-palace.html&usg=AOvVaw1FhKhBjHcTF0PDviDD7Vap&opi=89978449"><button class="book__now">Show</button></a>
</div>
</div>
</div>
<div class="trip__card">
<img src="assets/janakistarhtl.jpg" alt="trip" />
<div class="trip__details">
<p><b>Janaki Star Hotel</b> <br>Janakpur 45600</p>
<div class="rating"><i class="ri-star-fill"></i> 4.7</div>
<div class="booking__price">
<div class="price"><span>Price</span> varies </div>
<a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwi8p-Kq7ICEAxWpTmwGHe9TBcoQFnoECBMQAQ&url=https%3A%2F%2Fjanakistarhotel.com%2F&usg=AOvVaw0VTwWTUTypEYzQ6ADjK1of&opi=89978449"><button class="book__now">Show</button></a>
</div>
</div>
</div>
</div>
</section>
<!-- Swiper JS -->
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".mySwiper", {
slidesPerView: 3,
spaceBetween: 30,
slidesPerGroup: 3,
loop: true,
loopFillGroupWithBlank: true,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
</script>
<section class="gallary">
<div class="section__container gallary__container">
<div class="image__gallary">
<div class="gallary__col">
<img src="assets/101.jpg" alt="gallary" />
</div>
<div class="gallary__col">
<img src="assets/103.jpg" alt="gallary" />
<img src="assets/102.jpg" alt="gallary" />
</div>
</div>
<div class="gallary__content">
<div>
<h2 class="section__title">
Our trip gallary that will inspire you
</h2>
<p class="section__subtitle">
Explore moments captured from various places all over Nepal. Here you
can find your right destination.
</p>
<a href="gallary.html"><button class="btn">View All</button></a>
</div>
</div>
</div>
</section>
<br><br><br>
<footer class="footer">
<div class="section__container footer__container">
<div class="footer__col">
<h3>NepTour<span>.</span></h3>
<p>
Explore the Land Of Truth with us covering your backs and guiding you through the beauty of nepal.
</p>
</div>
<div class="footer__col">
<center><img src="assets/wasitkrish.jpg" style="width: 140px; height: 140px;"><br><p>@wasitkrish</p></center>
</div>
<div class="footer__col">
<h4>Address</h4>
<p>
<span>Address:</span> Sankhamul, Kathmandu, Nepal
</p>
<p><span>Email:</span> NepTour@krishsingh.com.np</p>
<p><span>Phone:</span>+977 9865365520</p>
</div>
</div>
<div class="footer__bar">
Copyright © 2023 https://Krishsingh.com.np/. All rights reserved.
</div>
</footer>
<script>
const hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('nav-links');
if (hamburger && navLinks) {
hamburger.addEventListener('click', function() {
navLinks.classList.toggle('active');
hamburger.classList.toggle('active');
});
const links = document.querySelectorAll('.nav__links .link a');
links.forEach(link => {
link.addEventListener('click', function() {
navLinks.classList.remove('active');
hamburger.classList.remove('active');
});
});
}
</script>
</body>
</html>