-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
239 lines (225 loc) · 11.6 KB
/
index.html
File metadata and controls
239 lines (225 loc) · 11.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kerala Tourism</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script type="text/javascript">
$(window).on('scroll',function(){
if($(window).scrollTop()){
$('.navbar').addClass('black');
}
else{
$('.navbar').removeClass('black');
}
})
</script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-12 navbar">
<a class="logo navbar-brand text-white offset-md-2"><span>K</span>ERALA<br> <span>T</span>ourism</a>
<ul class="nav">
<li class="nav-item active"><a href="#"class="nav-link">Home</a></li>
<li class="nav-item "><a href="#Thingstodo"class="nav-link">Things to do</a></li>
<li class="nav-item "><a href="#travelwithus"class="nav-link">Plan your trip</a></li>
<li class="nav-item "><a href="#Planyourtrip"class="nav-link">Tour Packages</a></li>
<li class="nav-item "><a href="./login.html"class="nav-link" target="blank">Login</a></li>
</ul>
</div>
</div>
</div>
<!-- slide -->
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://www.teahub.io/photos/full/360-3601138_november-1-kerala-piravi.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<p>Welcome to GOD'S OWN COUNTRY</p>
<h1 class="display-1">KERALA</h1>
<h6>Explore The Beauty With Us</h6><br><br>
<a href="district.html" target="blank">Explore now</a>
<a href="signup.html" target="blank">Sign Up</a>
</div>
</div>
<div class="carousel-item">
<img src="https://sahapathika.com/wp-content/uploads/2018/09/k4-1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<p>Welcome to GOD'S OWN COUNTRY</p>
<h1 class="display-1">KERALA</h1>
<h6>Explore The Beauty With Us</h6><br><br>
<a href="district.html" target="blank">Explore now</a>
<a href="signup.html" target="blank">Sign Up</a>
</div>
</div>
<div class="carousel-item">
<img src="http://www.petravalparai.com/img/tourist-places/athirappily-falls.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<p>Welcome to GOD'S OWN COUNTRY</p>
<h1 class="display-1">KERALA</h1>
<h6>Explore The Beauty With Us</h6><br><br>
<a href="district.html" target="blank">Explore now</a>
<a href="signup.html" target="blank">Sign Up</a>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" 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="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- things to do starts here -->
<br>
<section id="Thingstodo">
<h1>Things to do</h1>
<p>Let the lazy backwaters set pace to your day and village folksongs croon to your heart. Let the clarion call of the jungles awaken the wilderness in you. Bathe elephants. Discover remote festivals that leave imprints on your soul. Take your taste buds on rides through flavours they never dreamt existed. Camp in the woods lying awake listening to the symphony of Nature at night and early in the morning let the mountain mists awake you with whispered tales of long forgotten travellers...</p>
<br>
<div class="container">
<div class="row">
<div class="image">
<img src="https://www.picnicwale.com/attractions/assets/sightseeing/spice-plantation-in-kerala-cost.jpg" alt="image">
<div class="details">
<h2>Walk Through woods</h2>
<p>Explore the ecotourism possibilities of Kerala developed by Kerala Forest Department with the active support and involvement of the local community.</p>
</div>
</div>
<div class="image">
<img src="https://img.traveltriangle.com/blog/wp-content/uploads/2017/04/A-houseboat-in-Kumarakom-in-Kerala-at-sunrise.jpg" alt="image">
<div class="details">
<h2>Houseboat Cruise</h2>
<p>A blissful experience through the placid backwaters of Kerala… To get the details of Houseboats and pre book your cruise, do contact the concerned DTPC's or contact directly to the Accredited Houseboat operators.</p>
</div>
</div>
<div class="image">
<img src="https://www.packagetourkerala.com/wp-content/uploads/2019/04/ayurveda-massage-kerala-1.jpg" alt="image">
<div class="details">
<h2>Ayurvedha Rejuvenation</h2>
<p>Energies your cells and rejuvenate your body and mind through Ayurvedic and Panchakarma treatments...</p>
</div>
</div>
<div class="image">
<img src="https://1.bp.blogspot.com/-UayoX4UwS20/W3De9F_mJYI/AAAAAAAACs8/2SMNjHSNikoaG8KwrrXxhjrADNaH8RmtgCLcBGAs/s1600/Onam%2BSadhya.jpg" alt="image">
<div class="details">
<h2>Sadya</h2>
<p>Sadya is an elaborate mouth-watering feast of Kerala, usually served on a banana leaf with the number of side dishes ranging from 16 to 60. When you are in Kerala, if you wish to taste it, please contact your tour operators and experience a delicious Sadya!</p>
</div>
</div>
</div>
</div>
</section>
<!-- things to do ends here -->
<!-- plan your trip starts here -->
<section id="travelwithus">
<h1>Plan Your Trip</h1>
<p>Want to go on a trip to Kerala but too lazy to plan? Just by providing a few simple details about the trip, you’ll be guided to a well planned and organized tour using our Intelligent tour planner. All your queries shall be answered here.</p>
<div class="media">
<ul>
<li><i class="fas fa-bed"></i><br>Where to Stay</li>
<li><i class="fas fa-book-reader"></i><br>E brochures</li>
<li><i class="fas fa-info-circle"></i><br>Travel info</li>
<li><i class="fas fa-address-card"></i><br>Visa on arrival</li>
<li><i class="fas fa-map-marker-alt"></i><br>Routes and locations</li>
</ul>
</div>
</section>
<section id="Planyourtrip">
<div class="headings">
<h1>Travel with us</h1>
<br>
<p>This journey will let you get as close as possible in understanding the land, its culture and tradition. If you need to take a break, do so by the side of the lake and maybe hike your way through the area, which can often surprise you with shrimp farms or the local sights of the village</p>
<br>
<br>
<a href="#">Learn more</a>
</div>
<div class="tour">
<div class="places">
<h3>Backwater</h3>
<img src="https://media.tacdn.com/media/attractions-splice-spp-674x446/0b/17/2d/91.jpg" style="width: 280px; height: 250px;border-radius: 12px;">
<br>
<a href="#">Book Now 15% OFF</a>
</div>
<div class="places">
<h3>Wildlife</h3>
<img src="http://www.keralaindiavacation.com/images/page-images/periyar-header-m.jpg" style="width: 280px; height: 250px;border-radius: 12px;">
<br>
<a href="#">Book Now 15% OFF</a>
</div>
<div class="places">
<h3>Hills</h3>
<img src="https://irisholidays.com/keralatourism/wp-content/uploads/2021/10/kerala-tour.jpg" style="width: 280px; height: 250px;border-radius: 12px;">
<br>
<a href="#">Book Now 20% OFF</a>
</div>
</div>
<br>
</section>
<!-- footer starts here -->
<footer>
<div class="main-content">
<div class="left box">
<h2>About Us</h2>
<div class="content">
<p>The site holds a virtual encyclopedia of Kerala and includes almost 2 million words of text in 18 languages, a few thousand images, and 3000 video clips. To ensure ease of use and precision in search results, Kerala Tourism uses Google's site search tools for search queries.</p>
<div class="social">
<a href="#"><span class="fab fa-facebook-f"></span></a>
<a href="#"><span class="fab fa-twitter"></span></a>
<a href="#"><span class="fab fa-instagram"></span></a>
<a href="#"><span class="fab fa-youtube"></span></a>
<a href="#"><span class="fab fa-whatsapp"></span></a>
</div>
</div>
</div>
<div class="center box">
<h2>Address</h2>
<div class="content">
<div class="place">
<span class="fas fa-map-marker-alt"></span>
<span class="text">Department of Tourism, Government of Kerala, Park View, Thiruvananthapuram, Kerala, India</span>
</div>
<div class="phone">
<span class="fas fa-phone-alt"></span>
<span class="text">+91 471 2321132</span>
</div>
<div class="email">
<span class="fas fa-envelope"></span>
<span class="text">info@keralatourism.org</span>
</div>
</div>
</div>
<div class="right box">
<h2>Contact Us</h2>
<div class="content">
<form action="#">
<div class="email">
<div class="text">Email*</div>
<input type="email" required>
</div>
<div class="msg">
<div class="text">Message*</div>
<textarea cols="45" rows="4" required></textarea>
<br>
<button type="submit">Send</button>
</div>
</form>
</div>
</div>
</div>
<div class="owner">
<p>Created by Neethu. All right reserved by copyright@2021</p>
</div>
</footer>
</body>
</html>