-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
862 lines (798 loc) · 37.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
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
<!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" />
<!-- Css Stylesheet -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" media=" screen and (max-width:768px)" href="mobile.css" />
<!-- unicons -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" />
<!-- favicon -->
<link rel="icon" href="/Imgs/Logo/icon.png" />
<!-- script tag -->
<script defer src="script.js"></script>
<!-- ScrollReveal -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- swiper js -->
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
<!-- chat js-->
<script defer src="https://unpkg.com/floating-chat@latest/dist/index.js"></script>
<!-- Title -->
<title>XPLORE+</title>
</head>
<body>
<!-- Showcase -->
<main class="main" id="home">
<!-- Header -->
<header class="header">
<!-- logo -->
<div class="logo">
<img src="Imgs/Logo/icon.png" alt="SAFAR" />
<span class="alt-text">SAFAR</span>
</div>
<!-- navbar -->
<nav class="navbar">
<ul class="navlists">
<li class="navlist"><a href="#home">Home</a></li>
<li class="navlist"><a href="#restaurants">Hotels</a></li>
<li class="navlist"><a href="#restaurants">Restaurants</a></li>
<li class="navlist"><a href="#tours">Communities</a></li>
<li class="navlist"><a href="#destinations">Destinations</a></li>
<li class="navlist"><a href="#activities">Activities</a></li>
<li class="navlist"><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- user || navigator -->
<div class="user-profile">
<div class="profile-name">
<h2>
<span class="hello"> Hello, </span>
<span class="indiviual-name"> Rishi </span>
</h2>
</div>
<div class="profile-pic">
<img src="Imgs/ProfilePic/WhatsApp Image 2023-09-21 at 12.33.34 AM.jpeg" alt="" />
</div>
</div>
</header>
</div>
<!-- showcase-content -->
<div class="showcase-content">
<h1>Discover the most engaging places in Kolkata </h1>
<a href="https://safarmap.vercel.app/" target="_blank" class="showcase-button">
<img src="/Imgs/icons/globe.png" alt="" /> Discover Kolkata on Map</a>
<!-- showcase-search -->
<div class="filter">
<div class="search-icon">
</div>
</div>
</div>
<div class="filter">
<div class="search-icon">
</div>
</div>
<div class="filter">
<div class="search-icon">
</div>
</div>
</div>
</div>
</div>
</main>
</div>
<!-- popular Destinations -->
<section class="destinations" id="destinations">
<div class="container">
<!-- title -->
<h2 class="section-title">Popular Destinations</h2>
<!-- cards -->
<div class="swiper swiper1">
<div class="destinations-cards swiper-wrapper">
<!-- card 1 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/Victoria_Memorial,_Kolkata">
<img
src="https://images.unsplash.com/photo-1600702105517-e5d8bca5c2ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="" width="203" height="181" />
</a>
<h5>Victoria Memorial Hall</h5>
<h6>Maidan,Kolkata</h6>
</div>
<!-- card 2 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/Indian_Museum">
<img
src="https://images.unsplash.com/photo-1641022514327-c93b1a5dfeef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8aW5kaWFuJTIwbXVzZXVtJTIwa29sa2F0YXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60"
alt="" width="203" height="181" />
</a>
<h5>Indian Museum</h5>
<h6>Esplanade, Kolkata</h6>
</div>
<!-- card 3 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/Esplanade,_Kolkata"> <img
src="https://upload.wikimedia.org/wikipedia/commons/d/d4/New_market_%28Esplanade%29_Old_hogg_market%2C_Kolkata_%285376329266%29.jpg"
alt="" width="203" height="181" />
</a>
<h5>New Market</h5>
<h6>Esplanade,Kolkata</h6>
</div>
<!-- card 4 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/Science_City,_Kolkata">
<img src="https://www.holidify.com/images/compressed/attractions/attr_1405.jpg" alt="" width="203"
height="181" />
</a>
<h5>Science City</h5>
<h6>EM Bypass, Kolkata</h6>
</div>
<!-- card 5 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/Eco_Park,_New_Town">
<img src="https://ecoparknewtown.com/assets/frontend/img/Adda-Zone_04.jpg" alt="" width="203"
height="181" />
</a>
<h5>Eco Park</h5>
<h6>New Town, Kolkata</h6>
</div>
<!-- card 6 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/St._Paul%27s_Cathedral,_Kolkata">
<img
src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/0c/65/75/3b/st-paul-s-cathedral.jpg?w=1200&h=1200&s=1"
alt="" width="203" height="181" />
</a>
<h5>St Pauls Cathedral</h5>
<h6>Maidan, Kolkata</h6>
</div>
<!-- card 7 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/Prinsep_Ghat">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/88/PrincepGhat.jpg" alt="" width="203"
height="181" />
</a>
<h5>Princep Ghat</h5>
<h6>Hastings, Kolkata</h6>
</div>
<!-- card 8 -->
<div class="destination-card swiper-slide">
<a href="https://en.wikipedia.org/wiki/Eden_Gardens">
<img src="https://www.india.com/wp-content/uploads/2018/08/16-kolkata-eden-gardens-3-1.jpg" alt=""
width="203" height="181" />
</a>
<h5>Eden Gardens</h5>
<h6>BBD Bagh, Kolkata</h6>
</div>
</div>
</div>
</div>
</section>
<!-- Hotels And Restaurants -->
<section class="hotel-restaurants" id="restaurants">
<div class="container">
<div class="title-container">
<h2 class="section-title"> Hotels And Restaurants</h2>
<div class="section-button hotel-button">view all <img src="/Imgs/icons/bleft.png" alt=""></div>
</div>
<!-- cards -->
<div class="hotel-card">
<!-- card 1 -->
<div class="hotel-cards">
<a href="https://www.itchotels.com/in/en/itcroyalbengal-kolkata">
<img
src="https://cf.bstatic.com/xdata/images/hotel/max1024x768/463617226.jpg?k=3c0f41bdd8c00150a3d6167da53544cd618f59667d173f478af8d2e22fcd2407&o=&hp=1"
alt="" width="320" height="380">
</a>
<h5>ITC Royal Bengal</h5>
<div class="ratings"> <img src="/Imgs/icons/rating=5.png" alt=""></div>
<h6><img src="/Imgs/icons/map-pin-line.png" alt="">JBS Haldane Ave</h6>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 2 -->
<div class="hotel-cards">
<a href="https://jw-marriott.marriott.com/">
<img
src="https://www.marriottindiaweddings.com/resourcefiles/venuesgalleryimages/jw-marriott-hotel-kolkata-exterior.jpg"
alt="" width="320" height="380">
</a>
<h5>JW Marriott</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> JBS Haldane Ave</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=5.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 3 -->
<div class="hotel-cards">
<a href="https://www.theparkhotels.com/kolkata/">
<img src="https://www.theparkhotels.com/images/site-specific/kolkata/home/HERO-FACADE-NIGHT.jpg" alt=""
width="320" height="380">
</a>
<h5>The Park Hotel</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Park Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=5.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 4 -->
<div class="hotel-cards">
<a href="https://www.seleqtionshotels.com/en-in/raajkutir-kolkata/">
<img
src="https://www.seleqtionshotels.com/content/dam/seleqtions/kolkata/images/TRKK-courtyardangle2.jpg/jcr:content/renditions/cq5dam.web.1280.1280.jpeg"
alt="" width="320" height="380">
</a>
<h5>Raajkutir</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Phoolbagan</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=4.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 5 -->
<div class="hotel-cards off">
<a href="https://www.dineout.co.in/kolkata/peter-cat-park-street-central-kolkata-4032/menu">
<img src="https://i0.wp.com/www.tanyamunshi.com/wp-content/uploads/2011/01/Peter-Cat1.jpg" alt=""
width="320" height="380">
</a>
<h5>Peter Cat</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt="">Park Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=4.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 6 -->
<div class="hotel-cards off">
<a
href="https://www.tripadvisor.in/Restaurant_Review-g304558-d809492-Reviews-Mocambo-Kolkata_Calcutta_Kolkata_District_West_Bengal.html">
<img src="https://www.getbengal.com/uploads/story_image/Mocambo.jpg" alt="" width="320" height="380">
</a>
<h5>Mocambo</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Mirza Ghalib Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=5.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 7 -->
<div class="hotel-cards off">
<a href="https://6ballygungeplace.in/">
<img
src="https://content.jdmagicbox.com/comp/kolkata/m7/033pxx33.xx33.130722121426.w1m7/catalogue/6-ballygunge-place-east-kolkata-township-kolkata-home-delivery-restaurants-4079pez.jpg"
alt="" width="320" height="380">
</a>
<h5>6 BallyGunge Place </h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Ballygunge</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=3.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 8 -->
<div class="hotel-cards off">
<a href="https://www.zomato.com/kolkata/trapeze-1-park-street-area">
<img src="https://b.zmtcdn.com/data/pictures/0/19595980/ece7413ba9b919d5cb0fb983cee0cdea.jpg" alt=""
width="320" height="380">
</a>
<h5>Trapeze</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Park Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=4.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
</div>
</div>
</section>
<!-- Hotels And Restaurants -->
<section class="hotel-restaurants-budget" id="restaurants-b">
<div class="container">
<div class="title-container">
<h2 class="section-title">Affordable Bed & Breakfast</h2>
<div class="section-button hotel-button">view all <img src="/Imgs/icons/bleft.png" alt=""></div>
</div>
<!-- cards -->
<div class="hotel-card">
<!-- card 1 -->
<div class="hotel-cards">
<a href="https://www.itchotels.com/in/en/itcroyalbengal-kolkata">
<img src="https://imgmedia.lbb.in/media/2019/08/5d5042bee7d90a0c063ae88a_1565541054778.jpg" alt=""
width="320" height="380">
</a>
<h5>Kolkata Bungalow</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt="">Shyambazaar</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=4.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 2 -->
<div class="hotel-cards">
<a href="https://jw-marriott.marriott.com/">
<img src="https://files.yappe.in/place/full/the-harrington-residency-1960580.webp" alt="" width="320"
height="380">
</a>
<h5>The Harrington Residency</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> JBS Haldane Ave</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=4.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 3 -->
<div class="hotel-cards">
<a href="https://www.theparkhotels.com/kolkata/">
<img
src="https://cf.bstatic.com/xdata/images/hotel/max1024x768/230072024.jpg?k=e68dd8f60367c79ee300734388ae45c6e904c7f5d37d2d9077ae347795ac9dfb&o=&hp=1"
alt="" width="320" height="380">
</a>
<h5>The Moira</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Park Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=2.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 4 -->
<div class="hotel-cards">
<a href="https://www.seleqtionshotels.com/en-in/raajkutir-kolkata/">
<img src="https://media-cdn.tripadvisor.com/media/photo-s/0e/be/13/e8/entrance.jpg" alt="" width="320"
height="380">
</a>
<h5>The Wabi Sabi</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Phoolbagan</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=5.png" alt=""></div>
<div><button type="buy" class="styled-button">BOOK</button></div>
</div>
<!-- card 5 -->
<div class="hotel-cards off">
<a href="https://www.dineout.co.in/kolkata/peter-cat-park-street-central-kolkata-4032/menu">
<img src="https://i0.wp.com/www.tanyamunshi.com/wp-content/uploads/2011/01/Peter-Cat1.jpg" alt=""
width="320" height="380">
</a>
<h5>Peter Cat</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt="">Park Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=4.png" alt=""></div>
</div>
<!-- card 6 -->
<div class="hotel-cards off">
<a
href="https://www.tripadvisor.in/Restaurant_Review-g304558-d809492-Reviews-Mocambo-Kolkata_Calcutta_Kolkata_District_West_Bengal.html">
<img src="https://www.getbengal.com/uploads/story_image/Mocambo.jpg" alt="" width="320" height="380">
</a>
<h5>Mocambo</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Mirza Ghalib Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=5.png" alt=""></div>
</div>
<!-- card 7 -->
<div class="hotel-cards off">
<a href="https://6ballygungeplace.in/">
<img
src="https://content.jdmagicbox.com/comp/kolkata/m7/033pxx33.xx33.130722121426.w1m7/catalogue/6-ballygunge-place-east-kolkata-township-kolkata-home-delivery-restaurants-4079pez.jpg"
alt="" width="320" height="380">
</a>
<h5>6 BallyGunge Place </h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Ballygunge</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=3.png" alt=""></div>
</div>
<!-- card 8 -->
<div class="hotel-cards off">
<a href="https://www.zomato.com/kolkata/trapeze-1-park-street-area">
<img src="https://b.zmtcdn.com/data/pictures/0/19595980/ece7413ba9b919d5cb0fb983cee0cdea.jpg" alt=""
width="320" height="380">
</a>
<h5>Trapeze</h5>
<h6><img src="/Imgs/icons/map-pin-line.png" alt=""> Park Street</h6>
<div class="ratings"> <img src="/Imgs/icons/rating=4.png" alt=""></div>
</div>
</div>
</div>
</section>
<!-- popular Destinations -->
<section class="destinations" id="destinations">
<div class="container">
<!-- title -->
<h2 class="section-title">DiscoverEase</h2>
<h8 class="section-text">Local Favourites</h8>
<!-- cards -->
<div class="swiper swiper1">
<div class="destinations-cards swiper-wrapper">
<!-- card 1 -->
<div class="destination-card swiper-slide">
<img src="https://lh3.googleusercontent.com/p/AF1QipOJ_JXP8tNVtv-A0_IsEsl3pir5KeuCZSUKkdnG=s680-w680-h510"
alt="" width="203" height="181" />
<h4>Mitra Cafe</h4>
<h5>Budget Rs. 200/person</h5>
<h6>Dumdum</h6>
</div>
<!-- card 2 -->
<div class="destination-card swiper-slide">
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Replica_of_Dakshineswar_Kali_temple_near_Rani_Rashmoni%27s_birth_place.jpg/800px-Replica_of_Dakshineswar_Kali_temple_near_Rani_Rashmoni%27s_birth_place.jpg"
alt="" width="203" height="181" />
<h4>Rani Rashmoni Temple</h4>
<h5>Entry Free</h5>
<h6>Barrackpore</h6>
</div>
<!-- card 3 -->
<div class="destination-card swiper-slide">
<img src="https://lh3.googleusercontent.com/p/AF1QipPslo3Tj1sLc0fZhn3WVQnC0bak7bVFtK0d9iBw=s680-w680-h510"
alt="" width="203" height="181" />
<h4>Gourio Moth</h4>
<h5>Entry Free</h5>
<h6>Shyambazar</h6>
</div>
<!-- card 4 -->
<div class="destination-card swiper-slide">
<img src="https://b.zmtcdn.com/data/pictures/3/20254763/73558e28a6d52933eb8c25145f30026a.jpg" alt=""
width="203" height="181" />
<h4>Boho Ground Cafe</h4>
<h5>Budget Rs. 500/person</h5>
<h6>Dumdum</h6>
</div>
<!-- card 5 -->
<div class="destination-card swiper-slide">
<img src="https://lh3.googleusercontent.com/p/AF1QipOsWLf1tJwAXpSV3GTXKOElS1boU7BdgncoxgfK=s680-w680-h510"
alt="" width="203" height="181" />
<h4>Bandel Church</h4>
<h5>Entry Free</h5>
<h6>Bandel</h6>
</div>
<!-- card 6 -->
<div class="destination-card swiper-slide">
<img src="https://lh3.googleusercontent.com/p/AF1QipNCbwuIJ7gJmljGJ8m0JeGQ7-Np6oIU1KhteeY=s680-w680-h510"
alt="" width="203" height="181" />
<h4>CK Bird Sanctuary</h4>
<h5>Budget Rs. 20/person</h5>
<h6>Narendrapur</h6>
</div>
<!-- card 7 -->
<div class="destination-card swiper-slide">
<img src="https://lh3.googleusercontent.com/p/AF1QipMaqBSCBXUNn2akjBKs208RwIyBhYIfjk2wk0J7=s680-w680-h510"
alt="" width="203" height="181" />
<h4>Boi Para</h4>
<h5>Entry Free</h5>
<h6>College Street</h6>
</div>
<!-- card 8 -->
<div class="destination-card swiper-slide">
<img src="https://lh3.googleusercontent.com/p/AF1QipMvcf0zVbH1Tad31MJbY5mb4VBYLSUeUQw7_vgj=s680-w680-h510"
alt="" width="203" height="181" />
<h4>Birla Tech Musuem</h4>
<h5>Budget Rs. 70/person</h5>
<h6>BallyGunge</h6>
</div>
</div>
</div>
</div>
</section>
<!-- Tours/Travel -->
<section id="tours">
<div class="container">
<div class="title-container">
<h2 class="section-title"> Local Communities</h2>
<div class="section-button hotel-button">view all <img src="/Imgs/icons/bleft.png" alt=""></div>
</div>
<div class="tours-cards">
<div class="tours-card">
<div class="tour-img">
<img src="https://www.remotelands.com/travelogues/app/uploads/2018/08/Kumartuli-Annapurna-Mellor-20.jpg"
alt="" width="320" height="380">
</div>
<div class="tours-card-content">
<div class="tours-card-contents-text">
<h3>Kumortuli</h3>
<p>A small locality in Kolkata which was originally known as Coomartolly is a unique potter’s quarter in
the northern part of the city of joy. The place is famous for its expertise with sculpting Indian Gods
and Goddesses out of clay for different festivals in West Bengal throughout the year. They also export
their idols to other countries and communities. The name of the famous street with the idol merchants is
known as Banamali Sarkar Street. There’s a famous Hindu temple named Dhakeshwari Mata Temple nearby.</p>
</div>
<div class="tours-card-content-icons">
<h6><img src="/Imgs/icons/calendersml.png" alt=""> Free entry</h6>
<h6><img src="/Imgs/icons/user.png" alt=""> Contact Representative</h6>
<h6><img src="/Imgs/icons/message.png" alt=""> Recommended</h6>
</div>
</div>
</div>
<div class="tours-card">
<div class="tour-img">
<img
src="https://scontent.fccu4-2.fna.fbcdn.net/v/t1.6435-9/125526837_235607041283591_1761324942038308798_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=730e14&_nc_ohc=wvCGRwROt5sAX9QRjJI&_nc_ht=scontent.fccu4-2.fna&oh=00_AfDgB0TsHgKovQCbNaUiAcxwbz-RpcrDGTNHZBMkrQtuWA&oe=652D022D"
alt="" width="320" height="380">
</div>
<div class="tours-card-content">
<div class="tours-card-contents-text">
<h3>Metiabruz</h3>
<p>Metiabruz is a fascinating place to learn about the history and culture of Kolkata. It is a locality
that was once the home of the last Nawab of Awadh, Wajid Ali Shah, who was exiled there by the British
in 1856. He built a mini-Lucknow in Metiabruz, with his palace, gardens, mosque, imambara, and patronage
of arts and crafts. He also introduced the Awadhi cuisine, which is famous for its biryani, kebabs, and
sweets. Metiabruz has a unique sub-culture that is a blend of Bengali and Awadhi traditions. It is a
place where you can see the legacy of Wajid Ali Shah, who is buried in the Shahi Imambara, where he used
to celebrate Muharram and other festivals. You can also visit the Sibtainabad Mosque, where he prayed,
and the local markets, where you can find handicrafts, perfumes, and fabrics. Metiabruz is a place that
tells the story of Kolkata’s diversity and richness. </p>
</div>
<div class="tours-card-content-icons">
<h6><img src="/Imgs/icons/calendersml.png" alt=""> Usually Busy</h6>
<h6><img src="/Imgs/icons/user.png" alt=""> Contact Representative</h6>
<h6><img src="/Imgs/icons/message.png" alt="">Must visit</h6>
</div>
</div>
</div>
<div class="tours-card">
<div class="tour-img">
<img
src="https://curlytales.com/wp-content/uploads/2021/02/1_16a0848270d.2153105_3451395190_16a0848270d_large-1.jpg"
alt="" width="320" height="380">
</div>
<div class="tours-card-content">
<div class="tours-card-contents-text">
<h3>Chinatown</h3>
<p>Chinatown Kolkata, located near Tangra and Topsia in eastern Kolkata, is the only Chinatown in the
region with the highest number of Chinese residents. Chinatown has kept its unique cultural charm. The
Chinese migrated to India, in Calcutta in the 18th century. Most of them also have a cultural centre in
Chinatown. In Chinatown, with Buddhist temples and an age-old Chinese pastry shop, one can recapture the
essence of Chinese society. This small Chinatown is known for serving authentic Chinese cuisine that has
been meticulously preserved by the Chinese families who have lived in the neighbourhood for decades. The
neighbourhood is studded with fantastic Chinese restaurants and bars. Chinese restaurants serve a wide
range of Chinese cuisine.
The perfect blend of East Asia and old Kolkata can be observed in Chinatown. For gastronomes, Chinatown
in Kolkata is true bliss.</p>
</div>
<div class="tours-card-content-icons">
<h6><img src="/Imgs/icons/calendersml.png" alt=""> Free entry</h6>
<h6><img src="/Imgs/icons/user.png" alt=""> Contact Representative</h6>
<h6><img src="/Imgs/icons/message.png" alt=""> Great food</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="tours">
<div class="container">
<div class="title-container">
<h2 class="section-title">Uncharted Stories</h2>
<div class="section-button hotel-button">view all <img src="/Imgs/icons/bleft.png" alt=""></div>
</div>
<div class="tours-cards">
<div class="tours-card">
<div class="tour-img">
<img src="https://wow.outlookbusiness.com/wp-content/uploads/2019/01/Banner-31.jpg" alt="" width="320"
height="380">
</div>
<div class="tours-card-content">
<div class="tours-card-contents-text">
<h3>Makemiyan</h3>
<p>Aliyung Restaurant, founded by the Makemiyan family, is a beloved Chinese eatery with a unique history.
Originally established for local workers, it now warmly welcomes all visitors. Unlike typical
restaurants, Aliyung offers a cozy, homely atmosphere near the Kalimandir in China Town.
Here, you can savor authentic homemade Chinese cuisine that stays true to tradition. The Makemiyan
family's dedication shines through in every dish, making Aliyung a must-visit for those seeking genuine
Chinese flavors and a welcoming ambiance.</p>
</div>
</div>
</div>
<div class="tours-card">
<div class="tour-img">
<img
src="https://img.atlasobscura.com/htViHn0xELNJ6rcq69vtX8uDLgEm_0isvdg9wZlu9e0/rt:fit/h:390/q:81/sm:1/scp:1/ar:1/aHR0cHM6Ly9hdGxh/cy1kZXYuczMuYW1h/em9uYXdzLmNvbS91/cGxvYWRzL3BsYWNl/X2ltYWdlcy9mMWFi/ZDJlNDdlNzI2MzM5/ZTdfRFNDXzA5OTgu/SlBH.jpg"
alt="" width="320" height="380">
</div>
<div class="tours-card-content">
<div class="tours-card-contents-text">
<h3>Mohammed Imtiaz</h3>
<p>Mohammad Imtiaz is a third-generation doctor who operates a small hospital in India. He is quite good
at treating his patients—which happen to be fountain pens. For decades, Imtiaz has been repairing and
selling fountain pens at his Pen Hospital in Kolkata. Situated in a narrow alleyway of Chowringhee Road
in Esplanade, this one-of-a-kind hospital has been treating broken nibs and pen pistons since before
India gained its independence in 1947. Fountain pen connoisseurs and vintage pen collectors in Kolkata
and the surrounding area know where to go if their pen is broken and bleeding blue.
</div>
</div>
</div>
<div class="tours-card">
<div class="tour-img">
<img
src="https://akm-img-a-in.tosshub.com/indiatoday/images/story/202112/Kolkata_book_store_16122021_1200x768.jpeg?size=690:388"
alt="" width="320" height="380">
</div>
<div class="tours-card-content">
<div class="tours-card-contents-text">
<h3>Probir Chatterjee</h3>
<p>Anahayan, a four-decade-old book store located in the basement of Kolkata's gariahat market, is the
best place to find titles of books across varied genres, the majority of which are on art that are
restored and archived. While many of these books are sold at a high price to book connoisseurs, some are
priceless and hence the book owner, Probir Chatterjee, chooses to keep them instead.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Shop -->
<section class="destinations" id="destinations">
<div class="container">
<!-- title -->
<h2 class="section-title">Become Local</h2>
<h8 class="section-text">Shop from Kolkatas's own brands</h8>
<!-- cards -->
<div class="swiper swiper1">
<div class="destinations-cards swiper-wrapper">
<!-- card 1 -->
<div class="destination-card swiper-slide">
<img
src="https://cdn.octopix.in/uploads/company-logo/2019/09/02/adi-mohini-mohan-kanjilal-marketing-pvt--HJtmfAFYc56f4j3BIEyuVO0MnL6vOsD1uHaRDJtEiNErW3bMFMa6DKOaXTknJu7VrZJbjw4UfcPY1FbC-350x350.jpg"
alt="" width="203" height="181" />
<h5>Adi Mohini Mohon Kanjilal</h5>
<a href="https://www.adimohinimohankanjilal.com/benarasi.html">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
<!-- card 2 -->
<div class="destination-card swiper-slide">
<img
src="https://scontent.fccu4-2.fna.fbcdn.net/v/t39.30808-6/348233250_3113790382260817_115162557635737639_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=a2f6c7&_nc_ohc=NQC6XyXcXAwAX8WR85P&_nc_ht=scontent.fccu4-2.fna&oh=00_AfBCUoXx3-vN6YaMyfjaWO7SCprMSkFx0-R-ESD0sc0j4Q&oe=650AC323"
alt="" width="203" height="181" />
<h5>Sasya</h5>
<a href="https://sasya.in/">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
<!-- card 3 -->
<div class="destination-card swiper-slide">
<img
src="https://content3.jdmagicbox.com/comp/raiganj/w4/9999p3523.3523.170606145501.u7w4/catalogue/p-c-chandra-jewellers-pvt-ltd-bhagnail-raiganj-jewellery-showrooms-8g1zr89jcm.jpg"
alt="" width="203" height="181" />
<h5>PC Chandra Jewellers</h5>
<a href="https://pcchandraindia.com/">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
<!-- card 4 -->
<div class="destination-card swiper-slide">
<img src="https://mir-s3-cdn-cf.behance.net/projects/404/1d2c7e137245349.Y3JvcCwxMjMyLDk2MywxODksOTc.jpg"
alt="" width="203" height="181" />
<h5>Senco Gold Jewellers</h5>
<a href="https://sencogoldanddiamonds.com/">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
<!-- card 5 -->
<div class="destination-card swiper-slide">
<img src="https://www.haldirams.com/media/wysiwyg/Contact_Us_Main_Banner_mobile.jpg" alt="" width="203"
height="181" />
<h5>Haldirams Snacks</h5>
<a href="https://www.haldirams.com/">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
<!-- card 6 -->
<div class="destination-card swiper-slide">
<img
src="https://lh3.googleusercontent.com/vrpjKziPEi5wVwsRr1U4KkyhNCqNXHIjXbKf4_Y53LkTN9LK0hxtA5iQIe2yRmUfWfD7_wtqE8EqEV0tiB2g_tGmud8K"
alt="" width="203" height="181" />
<h5>K.C Das Sweets</h5>
<a href="https://kcdasonline.com/">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
<!-- card 7 -->
<div class="destination-card swiper-slide">
<img src="https://i.pinimg.com/originals/64/18/3d/64183d13f2fbf9ea9fb0ff193ea99071.jpg" alt="" width="203"
height="181" />
<h5>Khadims</h5>
<a href="https://www.khadims.com/">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
<!-- card 8 -->
<div class="destination-card swiper-slide">
<img src="https://images.crunchbase.com/image/upload/c_lpad,f_auto,q_auto:eco,dpr_1/yvsbnn1bmp1htt3pidza"
alt="" width="203" height="181" />
<h5>Keya Seth Cosmetics</h5>
<a href="https://www.keyaseth.com/">
<button type="buy" class="styled-button">SHOP</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- activities -->
<section id="activities">
<div class="container">
<div class="title-container">
<h2 class="section-title"> Activities</h2>
<div class="section-button hotel-button">view all <img src="/Imgs/icons/bleft.png" alt=""></div>
</div>
<!-- Activities Cards -->
<div class="activities-cards">
<div class="activities-card">
<img
src="https://images.unsplash.com/photo-1593847794002-a67998d742fc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1514&q=80"
alt="Durga Puja" width="320" height="380">
<h4>Durga Puja</h4>
</div>
<div class="activities-card">
<img src="https://www.revv.co.in/blogs/wp-content/uploads/2022/04/Pohela-Boishakh.jpg" alt="Pohela Boishakh"
width="320" height="380">
<h4>Pohela Boishakh</h4>
</div>
<div class="activities-card">
<img
src="https://www.hindustantimes.com/ht-img/img/2023/02/23/550x309/The-46th-International-Kolkata-Book-fair---Swapan-_1677137847970.jpg"
alt="" width="320" height="380">
<h4>International Book Fair</h4>
</div>
<div class="activities-card">
<img src="https://www.hlimg.com/images/events/738X538/10_1528702268e.jpg" alt="" width="320" height="380">
<h4>Kalpataru Fair</h4>
</div>
</div>
</div>
</section>
<!-- about --
<section id="About">
<div class="about-content">
<h2>About US</h2>
<p>
We are a team of six first year Engineering Students, We have built this website in 10 days from scratch.
</p>
<div class="section-button hotel-button">Read More <img src="/Imgs/icons/bleft.png" alt=""></div>
</div>
<div class="about-img">
<img src="" alt="" width="556" height="488">
</div>
</section>>
<!--MEET THE TEAM-->
<section class="team-section">
<h2>Meet the Team</h2>
<div class="team-member">
<img src="Imgs/team/rishi.jpeg" alt="Team Lead">
<h3>Rishi Paul</h3>
<p>Position: Team Lead & Frontend Dev</p>
</div>
<div class="team-member">
<img src="Imgs/team/aditi.jpeg" alt="Team Member 1">
<h3>Aditi Ghosh</h3>
<p>Position: Backend Developer</p>
</div>
<div class="team-member">
<img src="Imgs/team/prachi.jpeg" alt="Team Member 2">
<h3>Prachi Ghosh</h3>
<p>Position: Backend Developer</p>
</div>
<div class="team-member">
<img src="Imgs/team/rajo.jpeg" alt="Team Member 3">
<h3>Rajarshi Mondol</h3>
<p>Position: Research and Design</p>
</div>
<div class="team-member">
<img src="Imgs/team/debi.jpeg" alt="Team Member 4">
<h3>Debdyuti Mondol</h3>
<p>Position: UI/UX Developer</p>
</div>
<div class="team-member">
<img src="Imgs/team/jyoti.jpeg" alt="Team Member 5">
<h3>Jyotishka Ghosh</h3>
<p>Position: Research</p>
</div>
</section>
<!--CHAT FUNCTION-->
<!-- footer -->
<footer>
<div class="container">
<div class="footer-sections">
<div class="footer-section">
<img src="/Imgs/Logo/logoblack.svg" alt="">
<p>A project made with love for Smart India Hackathon 2023.</p>
<div class="footer-social-icons">
</div>
</div>
<div class="footer-section">
<h3>Subscribe on our destination review <br> newsletters</h3>
<form>
<div class="form-section">
<img src="/Imgs/icons/messagefooter.png" alt="">
<label for="email"> Your Email
<input type="email" id="email" name="email" placeholder="exp - [email protected] ">
</label>
</div>
<button type="submit"><img src="/Imgs/icons/arrowleft.png" alt=""></button>
</form>
</div>
</div>
</div>
</footer>
<floating-chat id="floatingChat" content="https://web.chatboxai.app/" />
<div class="toggleOn"><i class="uil uil-align-center-alt"></i></div>
<div class="toggleClose"><i class="uil uil-multiply"></i></div>
</body>
</html>