-
Notifications
You must be signed in to change notification settings - Fork 0
/
tourSight.php
847 lines (644 loc) · 37.8 KB
/
tourSight.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Flamenco&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic-bootstrap.min.css">
-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-timepicker/1.10.0/jquery.timepicker.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style_hotel.css">
<link rel="stylesheet" href="css/style1.css">
<title>SylGuide | Tour Sights</title>
</head>
<body>
<header id="header">
<div class="container">
<div class="row">
<nav class="navbar navbar-expand-lg full-width">
<a class="navbar-brand" href="index.php">SylGuide</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#menu" aria-controls="menu" aria-expanded="false" aria-label="ToggleNavigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="menu">
<ul class="navbar-nav">
<li class="nav-item "><a href="tourSight.php" class="nav-link active">Tour Sight</a>
</li>
<li class="nav-item"><a href="hotels.php" class="nav-link">Hotel Booking</a>
</li>
<li class="nav-item"><a href="cars.php" class="nav-link">Transportation</a>
</li>
<li class="nav-item"><a href="food_gallery.php" class="nav-link">Food Gallery</a></li>
<li class="nav-item"><a href="medical_emergency.php" class="nav-link">Medical Emergency</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<div id="demo" class="carousel slide" data-ride="carousel">
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
<li data-target="#demo" data-slide-to="3"></li>
<li data-target="#demo" data-slide-to="4"></li>
<li data-target="#demo" data-slide-to="5"></li>
<li data-target="#demo" data-slide-to="6"></li>
<li data-target="#demo" data-slide-to="8"></li>
<li data-target="#demo" data-slide-to="9"></li>
<li data-target="#demo" data-slide-to="10"></li>
</ul>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/lalakhal.jpg" alt="Lalakhal" width="1100" height="500">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".lalakhal">Lalakhal</h3>
<p>A tourist can experience green water river, Range of mountain and Tea Garden- at once in Lalakhal.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_ratargul.jpg" alt="ratargul" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".ratargul">Ratargul Swamp Forest</h3>
<p>Ratargul offers a sanctuary for different species of birds, monkeys, snakes and other reptiles.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_bisnakandhi.jpg" alt="bisnakandhi" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".bichnakandi">Bisnakandhi</h3>
<p> Its charm are dark clouds hugging the mountain in the rainy season.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_jaflong.jpg" alt="jaflong" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".jaflong">Jaflong</h3>
<p>Jaflong is the real beauty of the falls cascading from lush green mountains.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_lawachara.jpg" alt="lawachara" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".lawachara">Lawachara</h3>
<p>This forest is a sanctuary for rare species of plants and animals.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_tanguarHaor.jpg" alt="haor" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".tonguarhaor">Tonguar Haor</h3>
<p>Tonguar Haor,Sunamgonj,Sylhet.<br>Distance From Sylhet City 80 kilometers.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_luvachora.jpg" alt="lovachora" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".lovachora">Lovachora</h3>
<p>Tangoar Haor, which is a crucial hub for biodiversity, is home to diverse range of birds.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_khadimnagarRainForest.jpg" alt="khadim" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".khadim">Khadimnagar Rain Forest</h3>
<p> The forest is quite popular with trekkers with a 45-minute trail and a two-hour one.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_sreemangal.jpg" alt="sreemangal" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".sreemangal">Sreemangal & Around</h3>
<p>Anyone travelling in and around Sreemongol is sure to be greeted by lush green tea gardens.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/sylhet_jadukata.jpg" alt="jadukata" width="1100" height="400">
<div class="carousel-caption" style=" background-color: #000; opacity:0.8">
<h3 class="btn btn-info" data-toggle="modal" data-target=".jadukata">Jadukata</h3>
<p>The Jadukata – one of the most beautiful rivers in Bangladesh</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
<!-- Modal -->
<div class="modal fade lalakhal" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-NOV,DEC-FEB)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.1048, 92.1770&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Lalakhal is place, Tourist may visit in winter and monsoon both season. During winter may enjoy the serenity of Saree river, where monsoon offers the eternal greenery and cloud drench mountains.There is no police station in Lalakhal. As it is under Jainitapur Thana Of Sylhet District for any help need to call Officer In In charge- 01713374377, UNO- 01730331037.</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>There is a boat station in Sarighat operated by Nazimgarh Resort. Different types of mechanised boats can be hired from there to travel to Lalakhal.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>Nazimgarh Resorts operates ‘Adventure Tent Camp’ in Lalakhal which is open to tourist during Winter.Apart that, Nazimgarh has a world class nature Resort Wilderness in Lalakhal.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>Nazimgarh Resort runs a cosy restaurant named River Queen located on the bank of the Sari and open to all tourists. Lunch costs about 400-500 BDT per person.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade ratargul" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-OCT)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.0075, 91.9270&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Ratargul is in close proximity of three rivers. Flowing respectively from the south and the east, the Chenger Khal and the Kafna meet near Ratargul and head north towards Guainghat under the nomenclature Guain.There is no police station Ratargul. As it is under Gowainghat Thana Of Sylhet District for any help need to call Officer In charge- 01920393533, UNO- 01730331036</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>Though Ratargul is situated in Guainghat Upazilla, it is not too far away from Sylhet city. Driving on the Airport Road , one reaches Dhupagul point on the Sylhet-Companigonj Highway, from where s/he should take the Dhupagul-Horipur Road and drive a short distance to Motorghat.
From Ratarghul Village local boats may charge Taka 1000-1500 for a ride inside the forest.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>There is no accommodation facilities in Ratargul. As it is close to City itself, tourist may stay at hotels in Sylhet.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>There is no Dine facility in Ratargul. If needed tourist has to take packed food from Sylhet.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade bichnakandi" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-SEP)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.1695, 91.8867&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Since Bisnakandhi Zero Point is literally Bangladesh- India Border , Tourist should take exta care. During summer it might be dusty and hot, need care for under age and seniors. At Monsoon sometimes it may affected by flush flood. So get weather information is advisable.There is no police station Ratargul. As it is under Gowainghat Thana Of Sylhet District for any help need to call Officer In charge- 01920393533, UNO- 01730331036</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>There is more than one way to go to Bisnakandi.Tourists can use the Sylhet-Guainghat Road via the airport and take a left turn to reach Hadarpar from where a local boat may be hired to arrive at Bisnakandi.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>There is no accommodation facilities in Bisnakandhi.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>There is no Dine facility in Bisnakandhi. If needed tourist has to take packed food from Sylhet.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade jaflong" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-OCT)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.1634, 92.0175&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Since Jaflong Zero Point is literally Bangladesh- India Border , Tourist should take exta care. During summer it might be dusty and hot, need care for under age and seniors. At Monsoon sometimes it may affected by flush flood. So get weather information is advisable.There is no police station in Jaflong. As it is under Gowainghat Thana Of Sylhet District for any help need to call Officer In charge- 01920393533, UNO- 01730331036.</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>Nearly two hours drive from Sylhet city centre, Jaflong is easily accessible by route. A microbus can be hired for 4000-5000 BDT. A boat trip from Jaflong to the Zero Point costs 500-1000 BDT. A trip to Khasiapunji by the local transport called moyori would cost 500-1000 BDT.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>Near To Tamabil There is a Guest house Run By BGB.Before that near to Sreepur there is 'Jaintia Hill Resort'In Lalakhal Nazimgarh has a World class Resort named as Nazimgarh Wilderness Resorts.But most of Visitor prefers to stay in Hotel/ Resorts in Sylhet town as it is just a journey of maximum 2 hours.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>There is some local quality Restaurants on the East side of the river.'Café Sengrampunji' a restaurant run by Nazimghar Resort is found in the Khasi village Sengrampunji on the West side of the river. The cost is comparatively higher than the local restaurants but it is not much beside its quality, serving and the artistic beauty of the restaurant.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade lawachara" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (JAN-DEC)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=24.3414, 91.7978&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>On the Vanugach-Komalganj Road about seven kilometres from Sreemongol town is the entry to Lauachora National Garden.Tourist are suggested to enter in the forest with professional guides and follow their suggestions.</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>Lawachera is easily accessible from sreemongol town by own drive or cng auto rickshaw. Tourist may come to sreemongol from Dhaka or Sylhet by car or train.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>‘Grand Sultan Tea Resort & Golf’ is a luxurious accommodation provider near Lawachera.Another Luxurious Resort Dusai also not far.There are a good no of Guest houses and cottages are available around Lawachera.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>At the Lawachera - Sreemongol road there are restaurants from budget to luxurious. 'Kutumbari Restaurant' in the main town is one of them.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade tonguarhaor" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-NOV,DEC-FEB)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.1400, 91.0883&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Tangoar Haor, which is a crucial hub for biodiversity, is home to a diverse range of birds. In winter, numerous migratory birds join the local birds giving rise to an eye-soothing abundance of fauna.Using life-jacket is mandatory during visit in Tangoar haor at monsoon.As it is under Tahirpur Thana Of Sunamgonj District for any help need to call UNO- 01716192749.</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>In winter tourists can hire motor bikes from Shaheb-bari Kheyaghat in Sunamganj and go to Tahirpur or Takerghat in a couple of hours. From either of the places a boat may be hired to roam about Tangoar Haor. In the rainy season, many tourists hire a bojra – a spacious mechanised local boat suitable for overnight stay – from Sunamgonj to visit Tangoar Haor. Hiring a bojra costs about 10,000 BDT a day.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>There is only one hotel in Tahirpur Bazar and this too is a low-quality one. Besides this, there is a bungalow owned by the District Council where one can stay overnight with prior permission. The mine project at Takerghat also has a bungalow of its own.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>Food may consume at Tahipur Bazar Or Takerghat/ Borsora Bazar. Even boat man may arrange fresh fish at their boat.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade lovachora" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-OCT)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.0712, 92.3373&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Visit to Lovachora involves with a boat journey from Kanaighat Sodor. As the boat moves east, it will soon reach the confluence of three rivers. Flowing respectively from the south and north, the Borak and the Lova meet at one point, assume the name Surma and flow west towards Sylhet city.There is no police station Lovachora . As it is under Kanaighat Thana Of Sylhet District for any help need to call UNO- 01911737922</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>One has to go to Kanaighat Upazilla Sadar first to reach Lovachora. Different routes can be taken to go to Kanaighat from Sylhet. One option would be to use the Sylhet-Jaflong Highway and take a right turn at Dorbosth Bazaar. The one-and-a-half-hour drive itself is an attraction in its own right. On the left are rows of the Jainta hills. Upon reaching Kanaighat Upazilla Sadar, which is on the bank of the Surma, tourists can hire a boat to go to Lovachora.The boat ride from Kanaighat to Lovachora takes an hour and a half.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>There is no accommodation facilities in Lovachora. If needed may stay at local hotel in Kanaighat.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>There is no Dining facility in Kanaighat. But may have some local food at Kanaighat Bazar</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade khadim" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (OCT-FEB)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=24.9216, 91.9383&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>About 10 kilometres from Sylhet city on the Sylhet-Jaflong Highway past the Shrine of Shah Paran is Khadimnagar Intersection. A left turn from there leads to Khadimnagar Tea Garden. </p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>Khadimnagar intersection is seven kilometers north from the Sylhet city. From there the rain forest is five kilometers to the left. Visitors can take their own car or hire a cng auto rickshaw.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>You can stay at Nazimgor hill Resort,Shuktara Resort since they are closer to khadimnagar Rainforest</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>You can eat food nearby restaurents.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade sreemangal" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (JAN_DEC)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=24.3065, 91.7296&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Despite being an Upazilla – a small administrative unit – under Moulvibazar district in Sylhet, Sreemongol has long been credited as a top tourist attraction having earned its recognition as a town as early as the beginning of the19th century.Sreemongol is tourist friendly town. During monsoon tourist may experience heavy rainfall. At winter sometimes temperature falls to 4.</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>Sreemongol is easily accessible by Bus or Train.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>Grand Sultan Tea Resort & Golf’ is a luxurious accommodation provider in Sreemongol.Another Luxurious Resort Dusai also 15 km distance onlyTea Resort also provide standard accommodation. Besides that there are a good no of Guest houses and cottages are available at Sreemongol.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>Sreemongol has many restaurants from budget to luxurious. 'Kutumbari Restaurant' in the main town is one of them.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade Jadukata" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-NOV,DEC-FEB)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.1048, 92.1770&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information</h3>
<hr>
<p>Lalakhal,which is another top tourist attraction in Jaintapur Upazilla, is covered with hills, natural forests, tea gardens, and rivers under the Jainta Hill which comprises part of the Meghalaya Ranges of India. Flowing from the Indian part, the river Myntdu enters Lalakhal as the Saree and meets the river Guaiyan after passing Sarighat. Over a stretch of nearly 12 km of the river from Lalakhal to Sarighat, the colour of the water stays transparent green in winter (as well as in other seasons when it does not rain) due to the minerals flowing with water and the sandy river bed.</p>
</div>
<div class="col-12">
<h3>How To Go There</h3>
<hr>
<p>There is a boat station in Sarighat operated by Nazimgarh Resort. Different types of mechanised boats can be hired from there to travel to Lalakhal.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade jadukata" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Time To Visit (APR-AUG)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3>Location</h3>
<p><iframe src="https://maps.google.com/maps?q=25.1307, 91.6676&z=15&output=embed" width="360" height="270" frameborder="0" style="border:0"></iframe></p>
</div>
<div class="col-12">
<h3>Information You Need to Know?</h3>
<hr>
<p>Bangladesh is crisscrossed by rivers, and beautiful rivers are always an attraction for tourists. The Jadukata – one of the most beautiful rivers in Bangladesh – is situated in Laurergorh under Tahirpur Upazilla in Sunamgonj District.Using life-jacket is mandatory during monsoon.As it is under Tahirpur Thana Of Sunamgonj District for any help need to call UNO- 01716192749</p>
</div>
<div class="col-12">
<h3>How To Go There?</h3>
<hr>
<p>In winter, tourists can hire a motor bike at Shaheb-bari to go to Bariker Tilla. They can also move further ahead and go to Takerghat, from where a boat may be hired to roam about Tangoar Haor.Anyone visiting Tangoar Haor in the rainy season by bojra may hire a motor bike at Takerghat to go to the Jadukata River and Bariker Tilla.</p>
</div>
<div class="col-12">
<h3>Where to stay?</h3>
<hr>
<p>There is no accommodation facility here.</p>
</div>
<div class="col-12">
<h3>Where to eat?</h3>
<hr>
<p>There is no accommodation facility here.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-timepicker/1.10.0/jquery.timepicker.min.js"></script>
<script src="js/jquery-2.2.4.min.js"></script>
<script src="http://maps.google.com/maps/api/js"></script>
<script src="js/gmaps.js"></script>
<script src="js/script.js"></script>
<!-- My Customise JS -->
<script src="js/main.js"></script>
<script>
$(function () {
map = new GMaps({
div: '.manchitro',
lat: 24.8949,
lng: 91.8687,
});
map.addMarker({
lat: 24.8949,
lng: 91.8687,
title: 'It is sylhet',
click: function(e) {
alert('You clicked in this marker');
}
});
map.addMarker({
lat: 22.5726,
lng: 88.3639,
title: 'It is Kolkata',
click: function(e) {
alert('You clicked in this marker');
}
});
});
</script>
</body>
</html>