-
Notifications
You must be signed in to change notification settings - Fork 67
/
index.html
1802 lines (1692 loc) · 93.5 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
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HactoberExplor</title>
<link rel="stylesheet" href="css/style.css">
<!-- INLINE CSS FOR COUNTDOWN TIMER-->
<style>
.timer {
text-align: center;
font-size: 60px;
margin-top: -15px;
color: #1a1a1a;
font-weight: 200;
}
</style>
</head>
<body>
<!-- NAVIGATION BAR HTML -->
<div class="navigation">
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
padding: 15px;
background-color: white;
color: black;
font-size: 15px;
}
.dark-mode {
background-color: black;
color: white;
}
</style>
</head>
<body class="">
<button onclick="myFunction()">Dark/Light Mode</button>
<script>
function myFunction() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
</body>
</html>
<ul>
<li><a class="active" href="#header">About HactoberExplor</a></li>
<li><a href="#places-tours">Places and Tours</a></li>
<li><a href="#contributors">About Contributors</a>
</li>
</ul>
</div>
<!-- HEADER & SUB-HEADING HTML -->
<header class="header" id="header">
<div class="header__text-box">
<h1 class="heading-primary">
<span>Hactober-Explor</span>
</h1>
<h3 class="heading-sub">
<span>Travel around. Visit places. Explore and share your experience about those beautiful places and
also let people know about you!
<h3 class="top-gap">HACTOBER FEST ENDS IN:</h3>
</span>
<!-- REFERENCING EXTERNAL JS FOR COUNTDOWN TIMER-->
<div class="timer" id="demo">
Loading ...
<script src="js/timer.js"></script>
</div>
</h3>
</div>
</header>
<!-- PLACES & TOURS SECTION -->
<!-- HERE YOU NEED TO EDIT AND ADD YOUR PLACE'S IMAGE AND A SHORT DESCRIPTION ABOUT IT.
GO THROUGH THE README FOR BETTER CLARIFICATION.
-->
<div class="places-tours" id="places-tours">
<h2 class="section-header">
<span>Places and Tours</span>
</h2>
<div class="container">
<!-- START COPYING FROM THE BELOW DIV. -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place32.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Kheerganga Valley
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
kheerganga (3050m) lies at the extreme end of the Parvati Valley and the last inhibited village while trekking to pin valley via Pin-parvati pass in Himachal Pradesh. Kheerganga's panaromic skies and vast greenery are a much-needed delight to the trekker's
eyes and especially the tired legs.It is a holy place with a natural hot water spring, a small temple of Shiva and a bathing tank. it makes a rare combination for any trekker to bath in hot spring water when everything is covered
in snow.
</p>
</div>
</div>
</div>
<!-- COPY TILL THE ABOVE LINE. -->
<!--Place 2-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place2.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Santa Monica
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Santa Monica is known for its beaches, clubs, and restaurants. The first and foremost answer has to be the beaches. ... The Pier is probably the second reason Santa Monica is known. The pier is a lot of fun, it is iconic, and there is lots of things to
do on it.
</p>
</div>
</div>
</div>
<!--Place 3-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place3.png">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Parashar Lake
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
The pristine blue Parashar Lake is located amidst the Dhauladhar ranges of Kullu.Parashar Lake looks like a blue emerald in the midst of green pastures and gigantic mountains. The surroundings of the lake are a rare site which can enchant the mind and
soul of every tourist.
</p>
</div>
</div>
</div>
<!--Place 4-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place4.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
The Himalayas
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
The Himalayas , located in Asia is home to the highest peak of the world , Mount Everest. A beautiful cluster of frozen mountain ranges , who enrich the beauty of nature. The cold climate and snow white scenary is bound to trap anyone into a whole new
world of beauty!.The only Mountain range that streches across 6 different Countries.
</p>
</div>
</div>
</div>
<!--Place 5-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place5.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Paris, France
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Paris is the capital and largest city of France. It is situated on the river Seine, in northern France, at the heart of the Île-de-France region.
</p>
</div>
</div>
</div>
<!-- Place 6 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place6.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Taj Mahal, India
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Taj Mahal is an immense mausoleum of white marble, built in Agra between 1631 and 1648 by order of the Mughal emperor Shah Jahan in memory of his favourite wife, the Taj Mahal is the jewel of Muslim art in India and one of the universally admired masterpieces
of the world's heritage.
</p>
</div>
</div>
</div>
<!-- Place 7 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place7.jpg" title="Burning Man (c) https://duncan.co/">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Black Rock City
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Black Rock City, a temporary city erected in the Black Rock Desert of northwest Nevada, is home to the annual Burning Man festival.
</p>
</div>
</div>
</div>
<!-- Place 8 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place8.jpg" title="Triund, Mcleodganj">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Triund, Mcleodganj
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Triund is an easy trek in Himachal Pradesh that offers you an escape into the majestic Himalayas.=======T he Harmandir Sahib, also known as Darbar Sahib "Abode of God", is a Gurdwara located in the city of Amritsar, Punjab, India. It is the prominent
pilgrimage site of Sikhism. It is usually called the Golden Temple in English, because it is plated with gold.>>>>>>> 7978f1a8837a5cde3490d1de7f3e4e1a5ce9ace5
</p>
</div>
</div>
</div>
<!-- Place 9 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place9.jpg" title="Tirupati">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
TIRUPATI
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Spiritual place!
</p>
</div>
</div>
</div>
<!-- Place 10 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place10.jpg" title="Golden Temple">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Golden Temple
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
The Harmandir Sahib, also known as Darbar Sahib "Abode of God", is a Gurdwara located in the city of Amritsar, Punjab, India. It is the prominent pilgrimage site of Sikhism. It is usually called the Golden Temple in English, because it is plated with
gold. </p>
</div>
</div>
</div>
<!--Place 11 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place11.jpg" title="Manipal">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Manipal
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Manipal is a unique place to live, play and study. Its atmosphere ambience and people make its and ideal place if you want to relocate or come to study.Awestruck greenery, modestly quiet, negligible traffic and happy population throughout the town catch
your attention.
</p>
</div>
</div>
</div>
<!--Place 12-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place12.jpg" title="Bali">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Bali,Indonesia-An idyllic retreat
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Indonesia's most famous islamd,Bali is the best place for any tourist who needs a week of absolute relaxation,fragrant cuisine,scenic beauty and a galore of culture and tradition.The Island boasts some of the best sunsets and sunrises,enough to captivate
and entice you into never leaving this tourist trap.
</p>
</div>
</div>
</div>
<!-- Place 13 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place13.jpg" title="Boston Public Garden">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Boston Public Garden, Massachusetts
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
The Boston Public Garden is a lovely place to watch ducks, geese, squirrels, birds, or even swans. It's downtown at the end of Newbury Street and close to the Boston Commons. I took this picture in summer 2018!
</p>
</div>
</div>
</div>
<!-- Place 14 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place14.jpg" title="Marina Bay Sands">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Marina Bay Sands
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Marina Bay Sands is hotel is singapore. It is well known for its structure.
</p>
</div>
</div>
</div>
<!-- Place 15 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place15.jpg" title="Hawa Mahal">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Hawa Mahal, Jaipur
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Hawa Mahal (English translation: "he Palace of Breeze") is a palace made with the red and pink sandstone and extends to the Zenana, or women's chambers.
</p>
</div>
</div>
</div>
<!-- Place 16 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place16.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Puri, India
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Hindu pilgrims, Bengali holidaymakers and foreign travellers all make their way to Puri. For Hindus, Puri is one of the holiest pilgrimage places in India, with religious life revolving around the great Jagannath Mandir and its famous Rath Yatra (Chariot
Festival). The town’s other attraction is its long sandy beach, which is much better for strolling than swimming.
</p>
</div>
</div>
</div>
<!-- Place 17 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place17.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Cluj Napoca, Romania
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Cluj Napoca is the beating heart of Transylvania - where past and future collides.
</p>
</div>
</div>
</div>
<!-- Place 18 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place18.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Ceará-Mirim, Brasil
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Ceará-Mirim is a small town located to the east of the state of Rio Grande do Norte, Brazil. As a centenary city surounded by Atlantic forest, Ceará-Mirim shows up as a great tourist city, showing remnants of the colonial brazilian architecture and beautiful
beaches of Rio Grande do norte coast.
</p>
</div>
</div>
</div>
<!-- Place 19-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place19.jpg" title="Panipat,Haryana">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
PANIPAT
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
You will get to know the importance of this city in upcoming movie PANIPAT.
</p>
</div>
</div>
</div>
<!--Place 20-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place20.jpg" title="London">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
London, UK
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
London is one of the world's top tourist destinations, attracting upward of 15 million visitors each year. An added bonus is that many of the most popular places to visit are free.
</p>
</div>
</div>
</div>
<!--Place 21-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place21.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Ujjayanta Palace , India .
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
The Ujjayanta Palace is formerly a royal palace of the Tripura, situated in the state of Agartala. Earlier it also served as the meeting place for the Tripura Legislative Assembly until 2011 and now it serves as a museum and a tourist attraction of Agartala.
The Palace stands on the banks of a small lake surrounded by the lush greenery of Mughal gardens in Agartala. Spread over an expanse of 28 hectares of parkland, this exotic palace has several Hindu temples dedicated to the
deities, Lakshmi Narayan, Uma-Maheshwari, Kali and Jagannath. One of the largest museums in Northeast India,
</p>
</div>
</div>
</div>
<!-- Place 22 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place22.jpg" alt='Uyuni Salt Flats' height='600' width='900'>
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Salar de Uyuni
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Uyuni is a town in the southwest of Bolivia, known for it's salt flats, the largest in the world. It will be an incredible experience whenever you visit, but if you want the famed mirror effect photographs, you need to go in the rainy season, and wait
for rain, but not too much rain. You need just a thin film of water covering the flats to transform the area into a gigantic mirror.
</p>
</div>
</div>
</div>
<!--Place 23-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place23.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Raipur (C.G), India.
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Raipur city has existence from the time of Mauryan Empire. The city is known for it's temples, lakes, educstional centeres and the development of Naya Raipur is an innovation itself.
</p>
</div>
</div>
</div>
<!--Place 24-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place24.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Nantes, France.
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Nantes is one of the youngest and active city in France. Rich of his culture like those big machines on the picture or for his history. This is a very nice student's city, with many pubs and university, etc.
</p>
</div>
</div>
</div>
<!--Place 25_I-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place25a.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Kheerganga
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Kheer Ganga (3050 meters) lies at the extreme end of Parvati valley and the last inhibited village while trekking to pin valley via Pin-Parvati pass. Kheerganga's panoramic skies and vast greenery are a much-needed delight to the trekker's eyes and especially
the tired legs. It is a holy place with a hot water spring, a small temple of Lord Shiva and a bathing tank. It makes a rare combination for any trekker to bath in hot spring water when everything is covered by snow.
</p>
</div>
</div>
</div>
<!--Place 25_II -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place25b.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Shikari Devi
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Shikari Devi temple is about 18 Kms from Janjehli and connected by a jeepable Forest road. It is situated at an altitude of 3359 Mtr. Thick forests on the way to Shikari peak are amazing. Being the highest peak of Mandi District it is also called Crown
of Mandi. Vast green pastures, captivating sunrise and sunset, panoramic view of snow ranges make this place favorite to nature lovers.
</p>
</div>
</div>
</div>
<!-- Place 26 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place26.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
San Juan, Puerto Rico
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
San Juan is the capital and most populous municipality in the Commonwealth of Puerto Rico, an unincorporated territory of the United States. As of the 2010 census, it is the 46th-largest city under the jurisdiction of the United States, with a population
of 395,326.
</p>
</div>
</div>
</div>
<!--Place 27 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place27.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Naltar Valley,Pakistan
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Naltar is famous for its colourful lakes, it is situated at a drive of 2.5 hours from Gilgit. World’s tastiest potatoes are cultivated here. Covered with pine trees, this valley doesn’t seem to be a part of this world. If you really want to experience
paradise in this world, you should visit Naltar at least once. This place will make you fall in love with it.
</p>
</div>
</div>
</div>
<!-- Place 28 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place28.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Lahore Pakistan
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Lahore is the capital of the Pakistani province of Punjab. Lahore is the country's second-most populous city and is one of Pakistan's wealthiest cities, with an estimated GDP of $58.14 billion as of 2015.
</p>
</div>
</div>
</div>
<!--Place 29 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place29.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
Hundru Falls
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
The Hundru Falls is created on the course of the Subarnarekha River, where it falls from a height of 98 metres (322 ft) creating one of the highest water falls in the state. The spectacular scene of water falling from such a great height has been described
as a sight to behold. The different formations of rock due to the erosion by the constantly falling of water have added to the beauty of the place.
</p>
</div>
</div>
</div>
<!-- Place 30 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place30.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Ella Rock Sri Lanka
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Ella is most pupular for hiking. It is situated in Uva Province in Sri Lanka. Very nice view from top of the mountain. You can climb on to the top of the mountain and walk on long distance on top of the mountain.
</p>
</div>
</div>
</div>
<!-- Place 31 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<img src="img/places/place31.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
POONHILL, NEPAL
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
Poonhill offers you the striking panorama of huge Himalayas including Annapurna South, Annapurna I, Annapurna II, III, and IV, Dhaulagiri, Lamjung Himal, Gangapurna, and Manaslu ranges (Some famous mountains in Nepal) among few others. The phenomenal
sunrise from Poon Hill is just unmissable. A provocative glimpse of high mountains surrounding you can mesmerize anyone who's the part of this awesome trek. In addition to that, Poon Hill Trekking will also let you witness
terraced slopes, warm villages, beautiful paddy fields, and wonderful culture and lifestyle of ethnic people like Gurungs, and Magars.
</p>
</div>
</div>
</div>
<!-- Place 32 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place32.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Basel, Switzerland
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Basel is a beautiful city in the north of switzerland. It is bordered to france and germany. Its very nice to visit basel in summer, because all the people will enjoy the huge river "hine" also often go swim in it. There are also some sweet options for
shopping in basel.
</p>
</div>
</div>
</div>
<!-- Place 33 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/Place33.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Hyderabad
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Hyderabad, city, Telangana state, south-central India. It is Telangana’s largest and most-populous city and is the major urban centre for all of south-central interior India. Hyderabad is called as the city of Pearls. Also famous for delicious biryani,
uncomparably World's best biryani.
</p>
</div>
</div>
</div>
<!-- Place 34 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/Place34.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Chandertal Lake, Himachal Pradesh
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Chandertal lake alias the moon lake is a crescent-shaped basin, surrounded by the gigantic Himalayan Mountains on all the sides. The lake is located in Spiti district of Himachal Pradesh at an elevation of 14100 ft. Earlier, the lake was the resting point
for the traders and voyagers who used to come from Tibet or Ladakh. The Chandertal Lake is accessible only during the summer months i.e. June, July, August and September, and for the rest of the year the lake remains frozen.
One will get awestruck when they will see that the color of the lake keeps on changing with the color of the sky.
</p>
</div>
</div>
</div>
<!-- Place 35 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place35.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Kasganj
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Kasganj is the 71th district in the Indian state of Uttar Pradesh. The district and particularly the city Kasganj is popularly known as because it was established in a thick forest of “kans”. Kasganj was also known as “Tanay” or “Khasganj” during Mughal
and British period. Kasganj comes in the Aligarh division jurisdiction.
</p>
</div>
</div>
</div>
<!-- Place 37 -->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place37.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Jal Mahal
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Literally meaning as ‘Water Palace’, Jal Mahal is located amidst the Man Sagar Lake and was constructed by Sawai Pratap Singh in the year 1799. The beauty of the palace lies in its location as the palace cum hotel is standing in the centre of the lake.
The palace architecture boasts of a typical Rajput and Mughal style which is quite similar to that of Amer Fort. Made in red sandstone, the palace is actually five-storeyed where only the top story is visible (rest are submerged
under water). At the top, there is a garden which has semi-octagonal towers in every corner. Although any time is a good time to visit Jal Mahal but it is during the monsoon season (when the water level rises up) when the views
from this palatial hotel are more captivating.
</p>
</div>
</div>
</div>
<!-- Place 38-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place38.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Kakinada
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Kakinada, the largest city and the headquarters of East Godavari District of Andhra Pradesh, is also known as the Port City. ... The Port of Kakinada is on the Southern Part of the East Coast of India. It is the state's second largest port, and the country's
first to be built as a Public Private Partnership initiative.
</p>
</div>
</div>
</div>
<!--Place 39-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place39.jpg">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Delhi, India
</span>
</h4>
</div>
<div class="card__side card__side--back">
<p class="card__back-content">
<!-- ADD A SHORT DESCRIPTION ABOUT YOUR PLACE OR A REVIEW ABOUT IT HERE, IN PLACE OF THE EXAMPLE TEXT. -->
Delhi is India's capital with historic and modern tourist attractions. There are 3 UNESCO World Heritage Sites in Delhi, Qutub Complex, Red Fort and Humayun's Tomb. Another prominent landmark of Delhi is India Gate. Akshardham Temple is a major tourist
attraction in the city. Connaught Place, Chandni Chowk and Dilli Haat are some of the major retail markets in Delhi. Major shopping malls are Select Citywalk, Pacific Mall, DLF Promenade and Metro Walk.
</p>
</div>
</div>
</div>
<!--Place 40-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture">
<!-- GO TO 'img/places' FOLDER AND PASTE YOUR JPEG IMAGE WITH THE NAME 'place[no.].jpg'. -->
<!-- ADD IMAGE OF SIZE 900px X 600px [WIDTH X HEIGHT] -->
<img src="img/places/place40.JPG">
</div>
<h4 class="card__heading">
<span class="card__heading-span">
<!-- ADD YOUR PLACE NAME HERE IN PLACE OF [Place Demo]. -->
Hatton, Sri Lanka
</span>
</h4>
</div>