-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathhome.html
397 lines (369 loc) · 17.3 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="../index-style/materialize.min.css" media="screen,projection" />
<link type="text/css" rel="stylesheet" href="../index-style/main.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to TravelYaari</title>
</head>
<body class="scrollspy">
<a name="home"></a>
<div class="navbar-fixed">
<nav class="green">
<div class="container">
<a href="#home" class="brand-logo">TravelYaari</a>
<a href="#" data-activates="mobile-nav" class="button-collapse">
<i class="material-icons">menu</i>
</a>
<ul class="right hide-on-med-and-down">
<li>
<a href="#popular">Popular Places</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li><a class="dropdown-button" href="#!" data-activates="dropdown4">Places<i class="material-icons right">arrow_drop_down</i></a>
</li>
<li><a class="dropdown-button" href="#!" data-activates="dropdown3">More<i class="material-icons right">arrow_drop_down</i></a>
</li>
<li>
<a href="../index.html" onclick="logout()">logout</a>
</li>
</ul>
</div>
</nav>
<ul id="dropdown1" class="dropdown-content">
<li><a href="setting.html">Settings</a></li>
<li class="divider"></li>
<li><a href="about.html">About Us</a></li>
<li class="divider"></li>
<li><a href="team.html">Our Team</a></li>
<li class="divider"></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<ul id="dropdown3" class="dropdown-content">
<li><a href="setting.html">Settings</a></li>
<li class="divider"></li>
<li><a href="about.html">About Us</a></li>
<li class="divider"></li>
<li><a href="team.html">Our Team</a></li>
<li class="divider"></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<ul id="dropdown2" class="dropdown-content">
<li><a href="type/beaches.html">Beaches</a></li>
<li class="divider"></li>
<li><a href="type/hill-station.html">Hill-Stations</a></li>
<li class="divider"></li>
<li><a href="type/historical.html">Historical Heritage</a></li>
<li class="divider"></li>
<li><a href="type/parks.html">National Parks</a></li>
<li class="divider"></li>
<li><a href="type/religious.html ">Religious Richness</a></li>
<li class="divider"></li>
<li><a href="type/honeymoon.html ">Honeymoon Destinations</a></li>
<li class="divider"></li>
</ul>
<ul id="dropdown4" class="dropdown-content">
<li><a href="type/beaches.html">Beaches</a></li>
<li class="divider"></li>
<li><a href="type/hill-station.html">Hill-Stations</a></li>
<li class="divider"></li>
<li><a href="type/historical.html">Historical Heritage</a></li>
<li class="divider"></li>
<li><a href="type/parks.html">National Parks</a></li>
<li class="divider"></li>
<li><a href="type/religious.html ">Religious Richness</a></li>
<li class="divider"></li>
<li><a href="type/honeymoon.html ">Honeymoon Destinations</a></li>
<li class="divider"></li>
</ul>
</div>
<!-- we put the sidebar li elements outside the div because its fixed div and we wont be able to access these links -->
<ul class="side-nav" id="mobile-nav">
<li>
<a href="#popular">Popular Places</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li><a class="dropdown-button" href="#!" data-activates="dropdown2">Places<i class="material-icons right">filter_hdr</i></a>
</li>
<li><a class="dropdown-button" href="#!" data-activates="dropdown1">More<i class="material-icons right">arrow_drop_down</i></a>
</li>
<li>
<a href="../index.html" onclick="logout()">logout</a>
</li>
</ul>
<!-- Section: Slider -->
<section class="slider ">
<ul class="slides ">
<li>
<img src="../index-style/img/resort1.jpg " alt="resort1.jpg ">
<div class="caption center-align ">
<h2>Take Your Dream Vacation</h2>
<h5 class="light grey-text text-lighten-3 hide-on-small-only ">Adventure awaits, go find it.</h5>
<a href="contact.html " class="btn btn-large green ">Contact Us</a>
</div>
</li>
<li>
<img src="../index-style/img/resort2.jpg " alt="resort2.jpg ">
<div class="caption left-align ">
<h2>We Work With All Budgets</h2>
<h5 class="light grey-text text-lighten-3 hide-on-small-only ">Book a ticket and just leave.</h5>
<a href="contact.html " class="btn btn-large green ">Contact Us</a>
</div>
</li>
<li>
<img src="../index-style/img/resort3.jpg " alt="resort3.jpg ">
<div class="caption right-align ">
<h2>Group & Individual Gataways</h2>
<h5 class="light grey-text text-lighten-3 hide-on-small-only ">Experience. Tourism. These are as education in themselves.</h5>
<a href="contact.html " class="btn btn-large green ">Contact Us</a>
</div>
</li>
</ul>
</section>
<!-- Section: Search -->
<section id="search" class="section section-search green darken-1 white-text center scrollspy ">
<div class="container">
<div class="row">
<div class="col s12">
<h3>Search Destinations </h3>
<div class="input-field ">
<input type="text" class="white grey-text autocomplete" placeholder="Agra,Manali,Gulmohar etc..." id="autocomplete-input ">
</div>
</div>
</div>
</div>
</section>
<!-- Section: Icon Boxes -->
<section class="section section-icons grey lighten-4 center ">
<div class="container ">
<div class="row ">
<div class="col s12 m4 ">
<div class="card-panel ">
<i class="material-icons large green-text ">room</i>
<h4>Pick Where</h4>
<p>Feed your wanderlust.</p>
</div>
</div>
<div class="col s12 m4">
<div class="card-panel">
<i class="material-icons large green-text">store</i>
<h4>Travel Shop</h4>
<p>Answer it Royally.</p>
</div>
</div>
<div class="col s12 m4">
<div class="card-panel ">
<i class="material-icons large green-text ">airplanemode_active</i>
<h4>Fly Cheap</h4>
<p>Dream. Explore. Discover.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Section: Popular -->
<section id="popular" class="section section-popular scrollspy ">
<div class="container ">
<div class="row ">
<h4 class="center ">
<span class="green-text ">Popular</span> Places</h4>
<div class="col s12 m4 ">
<div class="card ">
<div class="card-image ">
<img src="../index-style/img/resort1.jpg " alt="resort1.jpg ">
<span class="card-title ">GOA</span>
</div>
<div class="card-content ">
<p>Sandy beaches, warm sunsets, beautiful villages and an atmosphere filled with joy .</p>
</div>
</div>
</div>
<div class="col s12 m4 ">
<div class="card ">
<div class="card-image ">
<img src="../index-style/img/resort2.jpg " alt="resort2.jpg ">
<span class="card-title ">Rameshwaram</span>
</div>
<div class="card-content ">
<p>Rameshwaram is one of the holiest places in India and is located on a beautiful island. </p>
</div>
</div>
</div>
<div class="col s12 m4 ">
<div class="card ">
<div class="card-image ">
<img src="../index-style/img/resort3.jpg " alt="resort3.jpg ">
<span class="card-title ">Manali</span>
</div>
<div class="card-content ">
<p> Manali is seated comfortably in the River Beas Valley, Himachal Pradesh.</p>
</div>
</div>
</div>
<div class="col s12 m4 ">
<div class="card ">
<div class="card-image ">
<img src="../places/Historical/Varanasi_c/images/india-in-pictures-beautiful-places-to-photograph-the-ganges-river-varanasi.jpg" alt="resort3.jpg ">
<span class="card-title ">Varanasi</span>
</div>
<div class="card-content ">
<p>Varanasi, popularly known as the City of Lights or Kashi, is a sacred city on the west bank of the River Ganga.</p>
</div>
</div>
</div>
<div class="col s12 m4 ">
<div class="card ">
<div class="card-image ">
<img src="../places/Hill-Stations/LADAKH.jpg " alt="resort3.jpg ">
<span class="card-title ">Leh Ladakh</span>
</div>
<div class="card-content ">
<p>Ladakh is an adventure playground for climbing, jeeps tours, rafting and high-altitude trekking. </p>
</div>
</div>
</div>
<div class="col s12 m4 ">
<div class="card ">
<div class="card-image ">
<img src="../places/Hill-Stations/OOTY.jpg" alt="resort3.jpg ">
<span class="card-title ">Ooty</span>
</div>
<div class="card-content ">
<p>Once regarded as the summer headquarters of the East India Company, the Queen of the hills.</p>
</div>
</div>
</div>
</div>
<div class="row ">
<div class="col s12 center ">
<a href="contact.html " class="btn btn-large blue darken-3 ">
<i class="material-icons left ">send</i>Contact for Booking
</a>
</div>
</div>
</div>
</section>
<!-- Section: Follow -->
<section class="section section-follow green darken-2 white-text center ">
<div class="container ">
<div class="row ">
<div class="col s12 ">
<h4>Follow TravelYaari</h4>
<p>Follow us on social media for special offers.</p>
<a href="https://facebook.com " target="_blank " class="white-text ">
<i class="fab fa-facebook fa-4x "></i>
</a>
<a href="https://twitter.com " target="_blank " class="white-text ">
<i class="fab fa-twitter fa-4x "></i>
</a>
<a href="https://linkedin.com " target="_blank " class="white-text ">
<i class="fab fa-linkedin fa-4x "></i>
</a>
<a href="https://googleplus.com " target="_blank " class="white-text ">
<i class="fab fa-google-plus fa-4x "></i>
</a>
<a href="https://pinterest.com " target="_blank " class="white-text ">
<i class="fab fa-pinterest fa-4x "></i>
</a>
</div>
</div>
</div>
</section>
<!-- Section: Gallery -->
<section id="gallery" class="section section-gallery scrollspy ">
<div class="container">
<h4 class="center">
<span class="green-text">Photo</span> Gallery
</h4>
<div class="row ">
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?beach " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?travel " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?nature " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?beach,travel " alt=" ">
</div>
</div>
<div class="row ">
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?water " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?building " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?trees " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?cruise " alt=" ">
</div>
</div>
<div class="row ">
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?beaches " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?traveling " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?bridge " alt=" ">
</div>
<div class="col s12 m3 ">
<img class="materialboxed responsive-img " src="https://source.unsplash.com/1600x900/?boat,travel " alt=" ">
</div>
</div>
</div>
</section>
<!-- Footer section -->
<footer class="section green darken-1 white-text center ">
<p class="flow-text ">TravelYaari © 2020</p>
</footer>
<!--Import jQuery before materialize.js-->
<script type="text/javascript " src="https://code.jquery.com/jquery-3.2.1.min.js "></script>
<script type="text/javascript " src="..\index-style\materialize.min.js "></script>
<script>
$(document).ready(function() {
// INIT sidebar
$(".button-collapse ").sidebar();
//INIT SLIDER
$(".slider ").slider({
indicators: false,
height: 500,
transition: 500,
interval: 6000
});
//AUTOCOMPLETE
$(".autocomplete ").autocomplete({
data: {
"Agra ": null,
"gulmohar ": null,
"Hawaii ": null,
"Florida ": null,
"California ": null,
"Jamaica ": null,
"Europe ": null,
"The Bahamas ": null
}
});
//INIT SCROLLSPY
$(".scrollspy ").scrollSpy();
//init dropdown
$(".dropdown-button ").dropdown();
});
function logout() {
alert("you are about to logout. Click OK to continue. ");
}
</script>
</body>
</html>