-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtour.html
More file actions
285 lines (277 loc) · 17.8 KB
/
Copy pathtour.html
File metadata and controls
285 lines (277 loc) · 17.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</head>
<body>
<div id="sectionHome">
<div class="bg-container d-flex flex-column justify-content-end">
<div class="tourism-card">
<h1 class="main-heading">Tourism</h1>
<p class="paragraph">Plan your trip.</p>
<button class="button" onclick="display('sectionFavouritePlaces')">
Get Started
</button>
</div>
</div>
</div>
<div id="sectionFavouritePlaces">
<div class="favourite-places-bg-container">
<h1 class="favourite-places-heading">Favourite Places</h1>
<div class="favourite-place-card-container d-flex flex-row" onclick="display('sectionTajMahalDetailedView')">
<div>
<h1 class="favourite-place-card-heading">Taj Mahal</h1>
<p class="favourite-place-card-description">
If there was just one symbol to represent all of India, it would
be the Taj Mahal
</p>
</div>
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/tajmahal-img.png" class="favourite-place-card-image" />
</div>
<div class="favourite-place-card-container d-flex flex-row" onclick="display('sectionGoldenTempleDetailedView')">
<div>
<h1 class="favourite-place-card-heading">Golden Temple</h1>
<p class="favourite-place-card-description">
Amritsar is world-famous for the beautiful and highly revered
Golden Temple
</p>
</div>
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/golden-temple-img.png" class="favourite-place-card-image" />
</div>
<div class="favourite-place-card-container d-flex flex-row" onclick="display('sectionMysoreDetailedView')">
<div>
<h1 class="favourite-place-card-heading">Mysore Palace</h1>
<p class="favourite-place-card-description">
The Mysore Palace is a historical palace and the royal residence
at Mysore.
</p>
</div>
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/mysore-palace-img.png" class="favourite-place-card-image" />
</div>
<div class="favourite-place-card-container d-flex flex-row" onclick="display('sectionvaranasiTempleDetailedView')">
<div>
<h1 class="favourite-place-card-heading">Varanasi Temple</h1>
<p class="favourite-place-card-description">
Varanasi Temple is most famous Hindu temples dedicated to Lord
Shiva
</p>
</div>
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/varanasi-temple-img.png" class="favourite-place-card-image" />
</div>
<button class="btn btn-dark" onclick="display('sectionHome')">
back
</button>
</div>
</div>
<div id="sectionTajMahalDetailedView">
<div class="detailed-view-bg-container">
<h1 class="detailed-view-heading">Detailed View</h1>
<div class="detailed-view-card-container">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/tajmahal-c1-img.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/tajmahal-c2-img.png" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/tajmahal-c3-img.png" class="d-block w-100" alt="..." />
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true">
</span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true">
</span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="detailed-view-card-text-container">
<h1 class="detailed-view-card-heading">Taj Mahal</h1>
<p class="detailed-view-card-description">
The Taj Mahal is considered to be the greatest architectural
achievement in the whole range of Indo-Islamic architecture. Its
recognised architectonic beauty has a rhythmic combination of
solids and voids, concave and convex and light shadow; such as
arches and domes further increases the aesthetic aspect. Not a
piece of architecture, as other buildings are, but the proud
passions of an emperor’s love wrought in living stones.
</p>
</div>
</div>
<button class="btn btn-dark" onclick="display('sectionFavouritePlaces')">
back
</button>
</div>
</div>
<div id="sectionGoldenTempleDetailedView">
<div class="detailed-view-bg-container">
<h1 class="detailed-view-heading">Detailed View</h1>
<div class="detailed-view-card-container">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://media-cdn.tripadvisor.com/media/attractions-splice-spp-674x446/12/56/fd/28.jpg" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://images.travelandleisureasia.com/wp-content/uploads/sites/2/2019/11/golden-temple-feature.jpg" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://media.tacdn.com/media/attractions-splice-spp-360x240/12/56/fd/28.jpg" class="d-block w-100" alt="..." />
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true">
</span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true">
</span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="detailed-view-card-text-container">
<h1 class="detailed-view-card-heading">Golden Temple</h1>
<p class="detailed-view-card-description">
The Golden Temple, or Sri Harmandir Sahib, located in Amritsar,
Punjab, is the holiest shrine in Sikhism and a symbol of spiritual and cultural
significance. Renowned for its breathtaking gold-plated façade and serene architecture,
it is surrounded by the sacred Amrit Sarovar (Pool of Nectar), whose
waters are believed to have healing properties. The temple embodies Sikh values
of equality and humility, welcoming people from all religions and backgrounds.
At its heart lies the Guru Granth Sahib, the Sikh holy scripture, recited continuously amidst
an atmosphere of devotional music. The complex also houses the world’s largest free community
kitchen, serving meals to thousands daily, reflecting the spirit of selfless service. With a
rich history dating back to the 16th century, the Golden Temple stands as a beacon of peace,
resilience, and universal brotherhood.
</p>
</div>
</div>
<button class="btn btn-dark" onclick="display('sectionFavouritePlaces')">
back
</button>
</div>
</div>
<div id="sectionMysoreDetailedView">
<div class="detailed-view-bg-container">
<h1 class="detailed-view-heading">Detailed View</h1>
<div class="detailed-view-card-container">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://i.redd.it/ikg888gfdv331.jpg" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgeQwDQe2SRszPtKe8cE-jwggsMlcd6iD6Qv400DDKLUDKzJecSAHEFkv2Djg46QK1Dc-M0kwRprMoM8kUukF77LA5TdQ6z0QVY-2rx91nw1OyIRTfRcPHAbfr7XWAmDPx3um-PVDsFUgU/s1600/Palace+Side+View.jpg" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://live.staticflickr.com/65535/5870630597_600483b84e_h.jpg" class="d-block w-100" alt="..." />
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true">
</span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true">
</span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="detailed-view-card-text-container">
<h1 class="detailed-view-card-heading">Mysore Palace</h1>
<p class="detailed-view-card-description">
The Mysore Palace, also known as the Amba Vilas Palace, is a magnificent royal residence located in
Mysore, Karnataka, and is one of India’s most iconic landmarks. Built in an Indo-Saracenic
architectural style, the palace seamlessly blends Hindu, Muslim, Rajput, and Gothic influences,
featuring grand domes, intricately carved arches, and a majestic central tower. The opulent
interiors showcase ornate ceilings, vibrant stained-glass windows, intricate woodwork, and
a dazzling collection of paintings and royal artifacts. Illuminated by over 97,000 light bulbs
during special occasions, the palace offers a breathtaking spectacle. Once the residence of the
Wodeyar dynasty, Mysore
Palace remains a symbol of Karnataka’s rich heritage and attracts millions of visitors annually.
</p>
</div>
</div>
<button class="btn btn-dark" onclick="display('sectionFavouritePlaces')">
back
</button>
</div>
</div>
<div id="sectionvaranasiTempleDetailedView">
<div class="detailed-view-bg-container">
<h1 class="detailed-view-heading">Detailed View</h1>
<div class="detailed-view-card-container">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://upload.wikimedia.org/wikipedia/commons/f/ff/Kashi_Vishwanath.jpg" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://img.traveltriangle.com/blog/wp-content/uploads/2019/12/Temples-In-Varanasi-cover_8th-Dec.jpg" class="d-block w-100" alt="..." />
</div>
<div class="carousel-item">
<img src="https://www.indiapilgrimtours.com/articles/wp-content/uploads/2018/01/kashi-vishwanath-temple-varanasi.jpg" class="d-block w-100" alt="..." />
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true">
</span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true">
</span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="detailed-view-card-text-container">
<h1 class="detailed-view-card-heading">Varanasi Temple</h1>
<p class="detailed-view-card-description">
The Kashi Vishwanath Temple in Varanasi, Uttar Pradesh, is one of the most sacred temples in India,
dedicated to Lord Shiva as the presiding deity. Situated on the western bank of the Ganges River,
it is a cornerstone of Hindu spirituality and draws millions of pilgrims annually.
The temple’s stunning golden spire, adorned with gold plating donated by Maharaja Ranjit Singh,
is a striking feature. It is believed to be one of the twelve Jyotirlingas, making it a place
of immense religious significance. Devotees flock to this temple to offer prayers, perform rituals,
and seek spiritual liberation in the holy city of Varanasi, regarded as the gateway to moksha (salvation).
</p>
</div>
</div>
<button class="btn btn-dark" onclick="display('sectionFavouritePlaces')">
back
</button>
</div>
</div>
<script type="text/javascript" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/js/ccbp-ui-kit.js"></script>
</body>
</html>