-
Notifications
You must be signed in to change notification settings - Fork 0
/
thrisur.html
276 lines (219 loc) · 12.3 KB
/
thrisur.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kerala Tourism Guide</title>
<link rel="stylesheet" href="./css/style.css">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</head>
<body class="body">
<!-- nav bar starts -->
<div >
<nav class="navbar navbar-expand-lg navbar-light bg-info">
<div class="container">
<img src="./pictures/1.png" alt="" width="20%" height="20%">
</div>
<div class="container ">
<h1 class="text-start text-uppercase fw-bolder fs-1 nav-tab text-white">Kerala Tourism</h1>
</div>
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse " id="navbarTogglerDemo01">
<!-- <p class="navbar-brand fs-1 fw-bolder text-uppercase " >Kerala Tourism</p> -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item ">
<a class="nav-link fs-5 active text-white" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link fs-5 text-white" href="district.html">Districts</a>
</li>
<li class="nav-item">
<a class="nav-link fs-5 text-white" href="login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link fs-5 text-white" href="register.html">SignUp</a>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
</div>
<!-- navbar ends -->
<!-- content text start -->
<div class=" card card-text">
<h1 class="text-center fs-1 fw-bolder myMargin card bg-secondary text-white text-uppercase">
Thrissur
<div class="card-body fs-4">
"The Cultural capital of Kerala"
</div>
</h1>
</div>
</div>
</div>
<!-- content text end -->
<!-- crousel start -->
<div class="col-lg-12">
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./pictures/trsur.jpg" class="d-block w-100 " alt="..." height="700vh" >
</div>
<div class="carousel-item">
<img src="./pictures/trsur2.jpg" class="d-block w-100 " alt="..." height="700vh">
</div>
<div class="carousel-item">
<img src="./pictures/ekm4.jpg" class="d-block w-100 " alt="..." height="700vh">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- carousel end -->
<!-- content text start -->
<div class="container card">
<div class="myMargin card bg-light text-primary">
<p class="card-text text-align">
Thrissur enwraps a plenty of attractions including religious places, hills and many natural wonders. Some of the main tourist attractions in Thrissur include Shakthan Thampuran Palace, Archaeological and Art Museum, Vadakkunnathan Temple and Guruvayur Temple. Apart from these, visitors should not miss out on popular sighting places like Chavakkad Beach, Snehatheeram Beach, and Chettuva Backwater, Athirappilly Falls, Vazhachal Falls, and Charpa Falls.
</p>
<p class="card-text text-align">
Thrissur is a perfect place for the nature lovers and wildlife buffs as there is a Peechi Wildlife Sanctuary, a home of a more than 25 types of mammals. Among these, tourists mostly look forward to spot tiger, leopard and fox.Apart from these, one can also encounter various herbivorous animals like elks, spotted deer, elephants, barking deer, bison in the sanctuary. For bird watchers, Peechi Vazhani Wildlife Sanctuary in Thrissur has lot to offer.
</p>
<p class="card-text text-align">
The park is a home of more than 60 different species of birds, including resident birds and migratory birds as well. It's not only a paradise for birds, but also a home of more than 50 different orchids and innumerable rare medicinal plants. For shopaholics, there are many shops located at the bottom of the temple hill, selling local handicrafts. Thrissur is also famous for producing beautiful silks and great Kerala craft pieces at reasonable prices.
</p>
</div>
</div>
</div>
<!-- content text end -->
<!-- content text start -->
<div class="container card card-text myMargin">
<h1 class="text-center fs-1 fw-bolder myMargin card bg-danger text-white"> "5 Hot Tourist spots in Thrissur"</h1>
</div>
</div>
<!-- content text end -->
<!--card start -->
<div class="myMargin col-lg-12 ">
<div class="card-group">
<!-- 1 -->
<div class="card">
<img src="./pictures/thrsr1.jpg" class="card-img-top" alt="..." height="35%">
<div class="card-body">
<h5 class="card-title">Athirappilly Waterfalls</h5>
<p class="card-text text-align">
On the outskirts of the city at a distance of some 60 km, the Athirappilly waterfalls mark one of the best places to visit in Thrissur. Standing 80 ft tall and about 330 ft wide, these falls are the largest in the state of Kerala.
</p>
<p class="card-text text-align">
The temple premises houses a Pala tree which is pierced with thousands of nails, the reason being patrons who are cured of mental maladies drive a nail across the tree. Men are required to open their shirts before they enter the premises, while women are requested to be dressed in Indian attire to offer reverence.
</p>
</div>
<div class="card-footer">
<small class="text-muted">Best tourist place to visit ...</small>
</div>
</div>
<!-- 2 -->
<div class="card">
<img src="./pictures/trsur2.jpg" class="card-img-top" alt="..." height="35%">
<div class="card-body">
<h5 class="card-title">
Vadakkunnathan Temple</h5>
<p class="card-text text-align">
An ancient temple of Kerala, the Vadakkunnathan Temple is also the oldest temple of the state dedicated to Lord Shiva. Following the architectural style of Kerala, the temple has monumental towers surrounding it.Talking about the inside of the temple, there are several mural paintings that depict various episodes from the Hindu Epic, Mahabharata.
</p>
<p class="card-text text-align">
Thekkinkadu Maidan, which surrounds the temple from all sides is where the local festival of Thrissur Pooram is organized every year, granting this place an even more of spiritual importance.
</p>
</div>
<div class="card-footer">
<small class="text-muted">Best tourist place to visit ...</small>
</div>
</div>
<!-- 3 -->
<div class="card">
<img src="./pictures/ekm4.jpg" class="card-img-top" alt="..." height="35%">
<div class="card-body">
<h5 class="card-title">
Shakthan Thampuran Palace
</h5>
<p class="card-text text-align">
The Palace of Shakthan Thampuran located in the district of Thrissur is a landmark in the annals of the Perumpadappu Swaroopam, the former ruling dynasty of Kochi. The palace located in the heart of Thrissur town is a major attraction, especially for those with a special interest on eminent rulers and dynasties. It is believed that the reign of King Rama Varma Shakthan Thampuran (CE 1790-1805) popularly known as Shakthan as the golden era of Kochi.
</p>
<p class="card-text text-align">
The Shakthan Palace also houses an elaborate museum. The museum contains some interesting galleries like the Bronze Gallery, Sculpture Gallery and the Epigraphy Gallery showcasing the genesis and evolution of ancient writings.The final resting place of Shakthan Thampuran is also located inside the palace, besides that of a Zamorin and a ruler of Kochi.
</p>
</div>
<div class="card-footer">
<small class="text-muted">Best tourist place to visit ...</small>
</div>
</div>
</div>
</div>
<!--card end -->
<!--card start -->
<div class="myMargin col-lg-8">
<div class="card-group">
<!-- 4 -->
<div class="card">
<img src="./pictures/trsur1.jpg " class="card-img-top" alt="..." height="38%">
<div class="card-body">
<h5 class="card-title">
Dolours Basilica</h5>
<p class="card-text text-align">
The Dolours Basilica, or the Basilica of Our Lady of Dolours (as the full name goes), is a distinct building in the city of Thrissur. You can easily recognize this grand church from its white facade.
</p>
<p class="card-text text-align">
Smack in the middle of a lush green valley, this basilica is known for narrating quite a number of stories of love and faith. Spread in an area of about 25,000 sq feet, Dolours Basilica is the third tallest church in Asia and the largest church in the country with double storeyed aisles.
</p>
</div>
<div class="card-footer">
<small class="text-muted">Best tourist place to visit ...</small>
</div>
</div>
<!-- 5 -->
<div class="card">
<img src="./pictures/trsur3.jpg" class="card-img-top" alt="..." height="38%">
<div class="card-body">
<h5 class="card-title">Chavakkad Beach</h5>
<p class="card-text text-align">
One of the most fascinating and unexplored beaches of the state of Kerala, the Chavakkad Beach is popularly one amongst the most famous Thrissur Tourist places. Perfect for picnickers, honeymooners, and tourists of all sorts, the golden sand of the beach is what at the tracts people from all corners of the country.
</p>
<p class="card-text text-align">
The place where the beach is, there is a river that meets the sea, making an estuary. One of the best reasons for people to flock here is the colour of the waters, and the sight of fishermen going about their daily life. One can do a lot here, one of which is witnessing the amazing cleanliness of the area.
</p>
</div>
<div class="card-footer">
<small class="text-muted">Best tourist place to visit ...</small>
</div>
</div>
</div>
</div>
</div>
<!--card end -->
<!-- footer start -->
<footer class="bg-info text-center text-white">
<!-- Copyright -->
<div class="text-center p-3">
© 2021 Copyright:
<p> Kerala Tourism Website Design</p>
</div>
<!-- Copyright -->
</footer>
<!-- footer ends -->
</body>
</html>