-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
691 lines (601 loc) · 33.6 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
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
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/img/logo.png" type="image/png">
<!--============== REMIXICONS ==============-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!--============== SWIPER CSS ==============-->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!--=============== CSS ===============-->
<!-- CSS only -->
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/styles.css">
<title>Integrity Bhutan Tours</title>
</head>
<body>
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">Integrity Bhutan Tours </a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#discover" class="nav__link">Discover</a>
</li>
<li class="nav__item">
<a href="#gallery" class="nav__link">Gallery</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">Contact</a>
</li>
</ul>
<div class="nav__dark">
<!-- Theme change button -->
<span class="change-theme-name">Dark mode</span>
<i class="ri-moon-line change-theme" id="theme-button"></i>
</div>
<i class="ri-close-line nav__close" id="nav-close"></i>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class="ri-function-line"></i>
</div>
</nav>
</header>
<main class="main">
<!--==================== HOME ====================-->
<section class="home" id="home">
<img src="assets/img/image-main.webp" alt="" class="home__img">
<div class="home__container container grid">
<div class="home__data">
<span class="home__data-subtitle">Discover your place</span>
<h1 class="home__data-title">Explore The <br><b>Beautiful</b> <br> Places In <b>Bhutan</b></h1>
<a href="#place" style="background-color: #0E2A2F;" class="button">Explore</a>
</div>
</div>
</section>
<!--==================== ABOUT ====================-->
<section class="about section" id="about">
<div class="about__container container grid">
<div class="about__data">
<h2 class="section__title about__title">More Information <br> About Bhutan</h2>
<p class="about__description">A small, landlocked country nestled deep in the Himalayas between
India and China, Bhutan is characterized by steep mountains and deep valleys, which led to
scattered population settlement patterns. The country is known for its unique philosophy – Gross
National Happiness (GNH) – which guides its development strategy.
</p>
<a href="about.html" class="button" style="background-color: #0E2A2F;">See More</a>
</div>
<div class="about__img">
<div class="about__img-overlay">
<img src="assets/img/1.jpg" alt="" class="about__img-one">
</div>
<div class="about__img-overlay">
<img src="assets/img/mountain.png" alt="" class="about__img-two">
</div>
</div>
</div>
</section>
<br>
<br>
<br>
<br>
<br>
<!--==================== About Management ====================-->
<h2 class="section__title">About Management</h2>
<p class="abb">Integrity Bhutan Tour is a family run Tour Company with our base office in Thimphu, Bhutan.
Thimphu is a gateway and the biggest commercial hub of Bhutan. The name of our Company itself speaks
that we are harmonious with our thoughts, speech and actions while executing our duties on daily basis.
Integrity Bhutan Tours represents as one of the many Travel Companies of Bhutan registered with the Tourism
Council of Bhutan (TCB) and Association of Bhutanese Tour Operators (ABTO). Therefore, we are here to cater
to your Bhutan visit needs with our best services with absolute integrity <b>from the time of your vacation
plan till we see you off with our goodbye from our land. And also, we will remain as friends forever
thereafter.</b> </p>
<br>
<br>
<br>
<br>
<div class="about__container container grid">
<div class="about__img">
<div class="about__img-overlay">
<img src="assets/img/tara.jpeg" alt="" class="about__img-one" style="height: auto;">
</div>
</div>
<div class="about__data">
<h2 class="section__title about__title">Tara Sharma</h2>
<p class="about__description">Tara Sharma has a Bachelor’s degree in Arts with English Literature,
Economics and Political Science as her major subjects of study. She passed out from Calcutta
(Kolkata) University in the year 1994. She has varied work experience which was always in a
progressive manner in her career ladder and inborn leadership talents in her cap to lead her own
team of employees. Integrity Bhutan Tours is exclusively the brainchild of the Chief Executive
Officer who had been passionately eyeing on venturing into a Tourism business throughout her career
of around 20+ years of service experience. With her experience of working in some of the most
popular Corporations and Bi-lateral Projects, she has gained enormous expertise in leading the
service industry without leaving any stone unturned in satisfying her clients and customers. She has
ventured into this social business purely based on her interest and enthusiasm to deal with people
from various walks of life representing their diverse cultural and social background. She has
humongous experience in fields like; Marketing, Customer Service, Public Relations, Liaison,
Commercial/ State Transport Fleet Management, State Bus Service Logistics Management and Human
Resource & Administration.<br>
</p>
</div>
</div>
<!--==================== EXPERIENCE ====================-->
<section class="experience section" id="discover">
<h2 class="section__title">With Our Experience <br> We Will Serve You</h2>
<div class="experience__container container grid">
<div class="experience__content grid">
<div class="experience__data">
<h2 class="experience__number">3</h2>
<span class="experience__description">Year <br> Experience</span>
</div>
<div class="experience__data">
<h2 class="experience__number"></h2>
<span class="experience__description"></span>
</div>
<div class="experience__data">
<h2 class="experience__number">20+</h2>
<span class="experience__description">Tourist <br> Destination</span>
</div>
</div>
</div>
</section>
<section class="place section" id="place">
<h2 class="section__title">Choose Your Place</h2>
<div class="place__container container grid">
<!--==================== PLACES CARD 1 ====================-->
<div class="place__card" onclick="toggleCard(this)">
<div class="place__card-inner">
<div class="place__card-front">
<img src="assets/img/thim.png" alt="" class="place__img">
<div class="place__content">
<span class="place__rating"></span>
<div class="place__data">
<span class="place__price">Thimphu</span>
</div>
</div>
</div>
<div class="place__card-back"
style="background-color: #fff; color: black; font-weight: bolder; font-family: Arial, Helvetica, sans-serif;">
<div class="place__description" style="text-align: left;">
<p class="description-text">Thimphu is the capital city of Bhutan and the cultural and
economic center of the country. It blends traditional Bhutanese architecture with
modern development, offering visitors a unique cultural experience.</p><br>
<p class="description-text">Some famous locations in Thimphu include:</p><br>
<ul class="description-list">
<li>Tashichho Dzong</li>
<li>Buddha Dordenma</li>
<li>National Memorial Chorten</li>
<li>Folk Heritage Museum</li>
<li>Motithang Takin Preserve</li>
<li>Changangkha Lhakhang</li>
<li>Simtokha Dzong</li>
</ul>
</div>
</div>
</div>
</div>
<!--==================== PLACES CARD 2 ====================-->
<div class="place__card" onclick="toggleCard(this)">
<div class="place__card-inner">
<div class="place__card-front">
<img src="assets/img/paro.png" alt="" class="place__img">
<div class="place__content">
<span class="place__rating"></span>
<div class="place__data">
<span class="place__price">Paro</span>
</div>
</div>
</div>
<div class="place__card-back"
style="background-color: #fff; color: black; font-weight: bolder; font-family: Arial, Helvetica, sans-serif;">
<div class="place__description" style="text-align: left;">
<p class="description-text">Paro is a picturesque town in Bhutan, located in the Paro
Valley. It is known for
its stunning natural beauty and rich cultural heritage.</p><br>
<p class="description-text">Some famous locations in Paro include:</p><br>
<ul class="description-list">
<li>Paro Taktsang (Tiger's Nest)</li>
<li>Rinpung Dzong</li>
<li>National Museum of Bhutan</li>
<li>Drukgyel Dzong</li>
<li>Kyichu Lhakhang</li>
<li>Dzongdrakha Temple</li>
<li>Jangsarbu Lhakhang</li>
</ul>
</div>
</div>
</div>
</div>
<!--==================== PLACES CARD 3 ====================-->
<div class="place__card" onclick="toggleCard(this)">
<div class="place__card-inner">
<div class="place__card-front">
<img src="assets/img/punakha.png" alt="" class="place__img">
<div class="place__content">
<span class="place__rating"></span>
<div class="place__data">
<span class="place__price">Punakha</span>
</div>
</div>
</div>
<div class="place__card-back"
style="background-color: #fff; color: black; font-weight: bolder; font-family: Arial, Helvetica, sans-serif;">
<div class="place__description" style="text-align: left;">
<p class="description-text">Punakha is a scenic town in Bhutan, situated in the Punakha
Valley. It is known for
its beautiful landscapes, historic sites, and religious significance.</p><br>
<p class="description-text">Some famous locations in Punakha include:</p><br>
<ul class="description-list">
<li>Punakha Dzong</li>
<li>Khamsum Yulley Namgyal Chorten</li>
<li>Punakha Suspension Bridge</li>
<li>Sangchhen Dorji Lhuendrup Lhakhang Nunnery</li>
<li>Chimi Lhakhang</li>
<li>Talo Village</li>
</ul>
</div>
</div>
</div>
</div>
<!--==================== PLACES CARD 4 ====================-->
<div class="place__card" onclick="toggleCard(this)">
<div class="place__card-inner">
<div class="place__card-front">
<img src="assets/img/wangdi.jpg" alt="" class="place__img">
<div class="place__content">
<span class="place__rating"></span>
<div class="place__data">
<span class="place__price">Wangdue</span>
</div>
</div>
</div>
<div class="place__card-back"
style="background-color: #fff; color: black; font-weight: bolder; font-family: Arial, Helvetica, sans-serif;">
<div class="place__description" style="text-align: left;">
<p class="description-text">Wangdue is a picturesque town in Bhutan, located in the
Wangdue Phodrang
District. It is known for its scenic beauty, historical landmarks, and vibrant
culture.</p><br>
<p class="description-text">Some famous locations in Wangdue include:</p><br>
<ul class="description-list">
<li>Wangdue Phodrang Dzong</li>
<li>Gangtey Monastery</li>
<li>Phobjikha Valley</li>
<li>Wangdue Tshechu Festival</li>
<li>Gasleo Hot Springs</li>
<li>Khamsa Yulley Namgyal </li>
</ul>
</div>
</div>
</div>
</div>
<div class="place__card" onclick="toggleCard(this)">
<div class="place__card-inner">
<div class="place__card-front">
<img src="assets/img/bumthang.png" alt="" class="place__img">
<div class="place__content">
<span class="place__rating"></span>
<div class="place__data">
<span class="place__price">Bumthang</span>
</div>
</div>
</div>
<div class="place__card-back"
style="background-color: #fff; color: black; font-weight: bolder; font-family: Arial, Helvetica, sans-serif;">
<div class="place__description" style="text-align: left;">
<p class="description-text">Bumthang is a picturesque region in central Bhutan, known
for its natural beauty,
rich history, and spiritual significance. It is often referred to as the "spiritual
heartland" of Bhutan.</p><br>
<p class="description-text">Some famous locations in Bumthang include:</p><br>
<ul class="description-list">
<li>Jakar Dzong</li>
<li>Kurjey Lhakhang</li>
<li>Jambay Lhakhang</li>
<li>Tamzhing Monastery</li>
<li>Mebar Tsho (Burning Lake)</li>
<li>Red Panda Brewery</li>
<li>Swiss Farm</li>
</ul>
</div>
</div>
</div>
</div>
<div class="place__card" onclick="toggleCard(this)">
<div class="place__card-inner">
<div class="place__card-front">
<img src="assets/img/chuka.jpg" alt="" class="place__img">
<div class="place__content">
<span class="place__rating"></span>
<div class="place__data">
<span class="place__price">Chhukha</span>
</div>
</div>
</div>
<div class="place__card-back"
style="background-color: #fff; color: black; font-weight: bolder; font-family: Arial, Helvetica, sans-serif;">
<div class="place__description" style="text-align: left;">
<p class="description-text">Chhukha is a district in southwestern Bhutan, known for its
stunning landscapes,
hydroelectric power projects, and cultural heritage.</p><br>
<p class="description-text">Some famous locations in Chhukha include:</p><br>
<ul class="description-list">
<li>Chhukha Dzong</li>
<li>Tala Hydropower Plant</li>
<li>Amochhu Land Development Project</li>
<li>Chhukha Hydropower Plant</li>
<li>Chhukha Tshechu Festival</li>
<li>Phuentsholing City</li>
<li>Kharbandi Gompa</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==================== VIDEO ====================-->
<!-- <section class="video section" id="discover">-->
<!-- <h2 class="section__title">Testimonials</h2>-->
<!-- <div class="testimonial-section">-->
<!-- <div class="testimonial-card">-->
<!-- <img src="assets/img/indian.jpg" alt="Person 1">-->
<!-- <h3 class="name">Aarav Sharma</h3>-->
<!-- <p>"Integrity Bhutan Tour provided an exceptional travel experience. The guides were knowledgeable,-->
<!-- and the service was top-notch. I highly recommend them!"</p>-->
<!-- </div>-->
<!-- <div class="testimonial-card">-->
<!-- <img src="assets/img/latin.jpg" alt="Person 2">-->
<!-- <h3 class="name">Gabriela</h3>-->
<!-- <p>"I had an amazing trip with Integrity Bhutan Tour. The team was friendly, accommodating, and-->
<!-- ensured that every aspect of my visit was taken care of. I couldn't be happier!"</p>-->
<!-- </div>-->
<!-- <div class="testimonial-card">-->
<!-- <img src="assets/img/eng.jpg" alt="Person 3">-->
<!-- <h3 class="name">Michael Johnson</h3>-->
<!-- <p>"My Bhutan journey with Integrity Bhutan Tour was truly memorable. The staff went above and-->
<!-- beyond to make me feel welcome and provided personalized attention throughout my trip. Highly-->
<!-- recommended!"</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </section>-->
<!--==================== PLACES ====================-->
<section class="discover section" id="gallery">
<h2 class="section__title">Beautiful Glimps <br> Of Bhutan</h2>
<div class="discover__container container swiper-container">
<div class="swiper-wrapper">
<!--==================== DISCOVER 1 ====================-->
<div class="discover__card swiper-slide">
<img src="assets/img/4.jpg" alt="" class="discover__img">
<div class="discover__data">
</div>
</div>
<!--==================== DISCOVER 2 ====================-->
<div class="discover__card swiper-slide">
<img src="assets/img/5.jpg" alt="" class="discover__img">
<div class="discover__data">
</div>
</div>
<!--==================== DISCOVER 3 ====================-->
<div class="discover__card swiper-slide">
<img src="assets/img/2.jpg" alt="" class="discover__img">
<div class="discover__data">
</div>
</div>
<div class="discover__card swiper-slide">
<img src="assets/img/3.jpg" alt="" class="discover__img">
<div class="discover__data">
</div>
</div>
<div class="discover__card swiper-slide">
<img src="assets/img/7.jpg" alt="" class="discover__img">
<div class="discover__data">
</div>
</div>
<div class="discover__card swiper-slide">
<img src="assets/img/10.jpg" alt="" class="discover__img">
<div class="discover__data">
</div>
</div>
</div>
</div>
</section>
<!--==================== SUBSCRIBE ====================-->
<section class="subscribe section" id="contact">
<div class="subscribe__bg">
<div class="subscribe__container container">
<h2 class="section__title subscribe__title">Click Contact</h2>
<p class="subscribe__description"> For Any Queries Or Information About Integrity Bhutan Tours </p>
<center>
<a href="mailto:[email protected]" class="button"
style="background-color: #fff; color: #14505c; border-radius: 3px;">Contact</a>
</center>
</div>
</div>
</section>
<br>
<br>
<br>
<section>
<!--
<h2 class="section__title" id="teamm">Our Team </h2>
<div class="row">
<div class="column">
<div class="card">
<div class="img-container">
<img src="assets/img/tara.jpg" />
</div>
<h3 class="team">Luna Turner</h3>
<p>Founder</p>
<div class="icons">
<a href="#">
<i class="fab fa-facebook"></i>
</a>
<a href="#">
<i class="fab fa-linkedin"></i>
</a>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
<a href="#">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="column">
<div class="card">
<div class="img-container">
<img src="assets/img/tara.jpg" />
</div>
<h3 class="team">Tara Sharma</h3>
<p>Founder</p>
<div class="icons">
<a href="#">
<i class="fab fa-facebook"></i>
</a>
<a href="#">
<i class="fab fa-linkedin"></i>
</a>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
<a href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="column">
<div class="card">
<div class="img-container">
<img src="assets/img/tara.jpg" />
</div>
<h3 class="team">Hope Watkins</h3>
<p>Designer</p>
<div class="icons">
<a href="#">
<i class="fab fa-facebook"></i>
</a>
<a href="#">
<i class="fab fa-linkedin"></i>
</a>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
<a href="#">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</section> -->
</main>
<!--==================== FOOTER ====================-->
<footer class="footer section">
<div class="footer__container container grid">
<div class="footer__content grid">
<div class="footer__data">
<h3 class="footer__title">Integrity Bhutan Tours</h3>
<p class="footer__description">Unleash The <br> Traveller
Inside You.
</p>
<div>
<a href="https://www.facebook.com/profile.php?id=100063139184658" target="_blank"
class="footer__social">
<i class="ri-facebook-box-fill"></i>
</a>
<a href="https://twitter.com/" target="_blank" class="footer__social">
<i class="ri-twitter-fill"></i>
</a>
<a href="https://www.instagram.com/" target="_blank" class="footer__social">
<i class="ri-instagram-fill"></i>
</a>
<a href="mailto:[email protected]" target="_blank" class="footer__social">
<i class="ri-mail-fill"></i>
</a>
</div>
</div>
<div class="footer__data">
<h3 class="footer__subtitle">About</h3>
<ul>
<li class="footer__item">
<a href="#about" class="footer__link">About Us</a>
</li>
<li class="footer__item">
<a href="../responsive-travel-website-main/places/placesmain.html"
class="footer__link">Explore</a>
</li>
<li class="footer__item">
<a href="#https://kuenselonline.com/" class="footer__link">News</a>
</li>
</ul>
</div>
<div class="footer__data">
<h3 class="footer__subtitle">Company</h3>
<ul>
<li class="footer__item">
<a href="#contact" class="footer__link">Team</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">Plan y Pricing</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">Become a member</a>
</li>
</ul>
</div>
<div class="footer__data">
<h3 class="footer__subtitle">Support</h3>
<ul>
<li class="footer__item">
<a href="faq.html" class="footer__link">FAQs</a>
</li>
<li class="footer__item">
<a href="support.html" class="footer__link">Support Center</a>
</li>
<li class="footer__item">
<a href="mailto:[email protected]" class="footer__link">Contact Us</a>
</li>
</ul>
</div>
</div>
<div class="footer__rights">
<p class="footer__copy">© 2023 Integrity Bhutan Tours. All rigths reserved.</p>
<p class="footer__copy">Photo Credits: <b>Lance & Sourav</b> </p>
<div class="footer__terms">
<a href="agreements.html" class="footer__terms-link">Terms & Agreements</a>
<a href="privacy.html" class="footer__terms-link">Privacy Policy</a>
</div>
</div>
</div>
</footer>
<!--========== SCROLL UP ==========-->
<a href="#" class="scrollup" id="scroll-up">
<i class="ri-arrow-up-line scrollup__icon"></i>
</a>
<!--=============== SCROLL REVEAL===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== SWIPER JS ===============-->
<script src="assets/js/swiper-bundle.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
<script>
function toggleCard(card) {
card.classList.toggle('flip');
}
</script>
</body>
</html>