-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
659 lines (655 loc) · 36.5 KB
/
home.php
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotel Management System</title>
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="nav-wrapper brown lighten-1">
<a href="#" class="brand-logo "><b>THE GRAND RESORT</b></a>
<a href="#" class="sidenav-trigger" data-target="link"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li>
<a href="#home"><b>HOME</b></a>
</li>
<li>
<a href="#category"><b>ACCOMMODATIONS</b></a>
</li>
<li>
<a href="#facility"><b>FACILITIES</b></a>
</li>
<li>
<a href="galleryhome.php"><b>GALLERY</b></a>
</li>
<li>
<a href="#" class="dropdown-trigger" data-target="dropdown"><b>BOOK NOW</b></a>
<ul id="dropdown" class="dropdown-content">
<li><a href="roombooking.php" class="brown-text">ROOM BOOKING</a></li>
<li class="divider"></li>
<li><a href="eventbooking.php" class="brown-text">EVENT BOOKING</a></li>
<li class="divider"></li>
<li><a href="packagebooking.php" class="brown-text">PACKAGE BOOKING</a></li>
</ul>
</li>
<li>
<a href="#" class="dropdown-trigger" data-target="dropdown1"><b>RESERVED</b></a>
<ul id="dropdown1" class="dropdown-content">
<li><a href="roomtable.php" class="brown-text">ROOM BOOKING DETAILS</a></li>
<li class="divider"></li>
<li><a href="eventtable.php" class="brown-text">EVENT BOOKING DETAILS</a></li>
<li class="divider"></li>
<li><a href="packagetable.php" class="brown-text">PACKAGE BOOKING DETAILS</a></li>
</ul>
</li>
<li>
<a href="#services"><b>SERVICES</b></a>
</li>
<li>
<a href="#about"><b>ABOUT</b></a>
</li>
<li>
<a href="#contact"><b>CONTACT</b></a>
</li>
<li>
<a href="logout.php"><b>LOGOUT</b></a>
</li>
</ul>
<ul id="link" class="sidenav">
<li>
<a href="home"><b>HOME</b></a>
</li>
<li>
<a href="#category"><b>CATEGORIES</b></a>
</li>
<li>
<a href="#facility"><b>FACILITIES</b></a>
</li>
<li>
<a href="gallery.php"><b>GALLERY</b></a>
</li>
<li>
<a href="roombooking.php"><b>BOOKING</b></a>
</li>
<li>
<a href="#" class="dropdown-trigger" data-target="dropdown2"><b>RESERVED</b></a>
<ul id="dropdown2" class="dropdown-content">
<li><a href="roomtable.php" class="brown-text">ROOM BOOKING DETAILS</a></li>
<li class="divider"></li>
<li><a href="eventtable.php" class="brown-text">EVENT BOOKING DETAILS</a></li>
<li class="divider"></li>
<li><a href="packagetable.php" class="brown-text">PACKAGE BOOKING DETAILS</a></li>
</ul>
</li>
<li>
<a href="#about"><b>ABOUT</b></a>
</li>
<li>
<a href="#contact"><b>CONTACT</b></a>
</li>
<li>
<a href="logout.php"><b>LOGOUT</b></a>
</li>
</ul>
</nav>
</header>
<section>
<div class="carousel carousel-slider" data-indicators="true">
<a class="carousel-item" href="#one!"><img src="images/img4.jpg"></a>
<a class="carousel-item" href="#two!"><img src="images/img1.jpg"></a>
<a class="carousel-item" href="#three!"><img src="images/img2.jpg"></a>
<a class="carousel-item" href="#four!"><img src="images/imgg.jpg"></a>
<a class="carousel-item" href="#five!"><img src="images/img5.jpg"></a>
</div>
</section>
<section class="container section scrollspy" id="category">
<h2 class="brown-text center"><b>ACCOMMODATION</b></h2>
<div class="row conatiner" id="tab">
<div class="col s12">
<ul class="tabs center">
<li class="tab col s3 brown-text"><a href="#rooms"><strong>ROOMS</strong></a></li>
<li class="tab col s3 brown-text"><a href="#events"><strong>EVENTS</strong></a></li>
<li class="tab col s3 brown-text"><a href="#offers"><strong>OFFERS & PACKAGES</strong></a></li>
</ul>
</div>
</div>
<div id="rooms">
<div class="row">
<div class="col s12 l4 ">
<img src="images/single.jpg " class="materialboxed" width="400" height="300">
</div>
<div class="col s12 l6 offset-l1">
<h3 class="brown-text text-darken-1"><b>SINGLE</b></h3>
<p>These provide you a single accommodation with balcony and provides a comfortable luxury feel.</p>
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹3200</strong></a><br><br>
<a href="roombooking.php"><button class="btn brown waves-effect waves-light z-depth-3" type="submit" name="action">Book Now<i class="material-icons right">fast_forward</i></button></a>
</div>
</div>
<div class="row">
<div class="col s12 l4 push-l7 offset-l1 ">
<img src="images/double.jpg" class="materialboxed" width="400" height="300">
</div>
<div class="col s12 l6 pull-l4 right-align ">
<h3 class="brown-text text-darken-1 "><b>DOUBLE</b></h3>
<p>These provide you a double accommodation with balcony and provides a comfortable luxury feel.
</p>
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹3800</strong></a><br><br>
<a href="roombooking.php"><button class="btn brown waves-effect waves-light z-depth-3" type="submit" name="action">Book Now<i class="material-icons right">fast_forward</i></button></a>
</div>
</div>
<div class="row">
<div class="col s12 l4">
<img src="images/triple.jpg" class="materialboxed" width="400" height="300">
</div>
<div class="col s12 l6 offset-l1 ">
<h3 class="brown-text text-darken-1 "><b>TRIPLE</b></h3>
<p>These provide you a triple accommodation with balcony and provides a comfortable luxury feel.</p>
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹4500</strong></a><br><br>
<a href="roombooking.php"><button class="btn brown waves-effect waves-light z-depth-3" type="submit" name="action">Book Now<i class="material-icons right">fast_forward</i></button></a>
</div>
</div>
<div class="row">
<div class="col s12 l4 push-l7 offset-l1">
<img src="images/luxury.jpg" class="materialboxed" width="400" height="300">
</div>
<div class="col s12 l6 pull-l4 right-align">
<h3 class="brown-text text-darken-1 "><b>LUXURY</b></h3>
<p>These premium rooms with a private verandah face the swimming pool and have two inter-connected rooms and a spacious living room perfect for families and friends.</p>
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹5000</strong></a><br><br>
<a href="roombooking.php"><button class="btn brown waves-effect waves-light z-depth-3" type="submit" name="action">Book Now<i class="material-icons right">fast_forward</i></button></a>
</div>
</div>
<div class="row">
<div class="col s12 l4">
<img src="images/botique.jpg" class="materialboxed" width="400" height="300">
</div>
<div class="col s12 l6 offset-l1">
<h3 class="brown-text text-darken-1 "><b>BOTIQUE</b></h3>
<p>These newly refurbished rooms are cute and compact to make your stay comfortable and memorable. They perfectly fuse the traditional with new age modern design. </p>
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹5500</strong></a><br><br>
<a href="roombooking.php"><button class="btn brown waves-effect waves-light z-depth-3" type="submit" name="action">Book Now<i class="material-icons right">fast_forward</i></button></a>
</div>
</div>
<div class="row">
<div class="col s12 l4 push-l7 offset-l1">
<img src="images/deluxe.jpg" class="materialboxed" width="400" height="300">
</div>
<div class="col s12 l6 pull-l4 right-align">
<h3 class="brown-text text-darken-1 "><b>DELUXE</b></h3>
<p>These 350 sq ft studio like rooms are the most spacious with wooden flooring will make your stay as cozy and comfortable. They come with a private balcony leaving you to gaze at the stars all night.</p>
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹6500</strong></a><br><br>
<a href="roombooking.php"><button class="btn brown waves-effect waves-light z-depth-3" type="submit" name="action">Book Now<i class="material-icons right">fast_forward</i></button></a>
</div>
</div>
<div class="row">
<div class="col s12 l4">
<img src="images/cottage.jpg" class="materialboxed" width="400" height="300">
</div>
<div class="col s12 l6 offset-l1">
<h3 class="brown-text text-darken-1 "><b>COTTAGE</b></h3>
<p>Cottage also offers many facilities to enrich your stay . Top features include free Wi-Fi in all rooms, 24-hour security, daily housekeeping, 24-hour front desk, Wi-Fi in public areas.</p>
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹8000</strong></a><br><br>
<a href="roombooking.php"><button class="btn brown waves-effect waves-light z-depth-3" type="submit" name="action">Book Now<i class="material-icons right">fast_forward</i></button></a>
</div>
</div>
</div>
<div id="events">
<div class="row">
<div class="col s12 l4 center-align">
<div class="card">
<div class="card-image">
<img src="images/wedding.jpg" width="420" height="250">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons">auto_awesome
</i></a>
</div>
<div class="card-content">
<span class="card-title brown-text"><strong>WEDDINGS</strong></span>
<hr>
<p>Looking for a venue for your special day?Look no Further!<br>For more details call us.
</p>
</div>
<div class="card-action">
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹50000</strong></a><br><br>
<a href="eventbooking.php" class="btn brown waves-effect waves-light">BOOK NOW</a>
</div>
</div>
</div>
<div class="col s12 l4 center-align">
<div class="card ">
<div class="card-image">
<img src="images/meeting.jpg" width="420" height="250">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">auto_awesome
</i></a>
</div>
<div class="card-content">
<span class="card-title brown-text"><strong>MEETINGS</strong></span>
<hr>
<p>Looking to host a Corporate Gathering? Look no Further!<br>For more details call us.</p>
</div>
<div class="card-action">
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹20000</strong></a><br><br>
<a href="eventbooking.php" class="btn brown waves-effect waves-light">BOOK NOW</a>
</div>
</div>
</div>
<div class="col s12 l4 center-align">
<div class="card">
<div class="card-image">
<img src="images/party.jpg" width="420" height="250">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse \"><i class="material-icons">auto_awesome
</i></a>
</div>
<div class="card-content">
<span class="card-title brown-text"><strong>PARTIES</strong></span>
<hr>
<p>Looking for a Grand Party Venue? Look no further!<br>For more details call us.</p>
</div>
<div class="card-action">
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹35000</strong></a><br><br>
<a href="eventbooking.php" class="btn brown waves-effect waves-light">BOOK NOW</a>
</div>
</div>
</div>
</div>
</div>
<div id="offers">
<div class="row">
<h5 class="brown-text center"><strong>GRAB THE SPECIAL PACKAGES AND EXCITING OFFERS</strong></h5>
<div class="col s12 l4 center-align">
<div class="card">
<div class="card-image">
<img src="images/offer1.jpg" width="420" height="250">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons">auto_awesome
</i></a>
</div>
<div class="card-content ">
<span class="card-title brown-text"><strong>OFFER & PACKAGES</strong></span>
<hr>
<p>3 days accommodation<br>Double room catergory<br>Beach view balcony<br>Complimentary foods
</p>
</div>
<div class="card-action">
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹15000</strong></a><br><br>
<a href="packagebooking.php" class="btn brown waves-effect waves-light">BOOK NOW</a>
</div>
</div>
</div>
<div class="col s12 l4 center-align ">
<div class="card ">
<div class="card-image ">
<img src="images/offer2.jpg" width="420" height="250">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">auto_awesome
</i></a>
</div>
<div class="card-content ">
<span class="card-title brown-text"><strong>OFFERS & PACKAGES</strong></span>
<hr>
<p>5 days accommodation<br>Luxury room category<br>Beach view balcony<br>Complimentary foods</p>
</div>
<div class="card-action">
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹20000</strong></a><br><br>
<a href="packagebooking.php" class="btn brown waves-effect waves-light">BOOK NOW</a>
</div>
</div>
</div>
<div class="col s12 l4 center-align">
<div class="card">
<div class="card-image">
<img src="images/offer3.jpg" width="420" height="250">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse \"><i class="material-icons">auto_awesome
</i></a>
</div>
<div class="card-content ">
<span class="card-title brown-text"><strong>OFFERS & PACKAGES</strong></span>
<hr>
<p>10 days accommodation<br>Luxury+Deluxe room category<br>Beach view balcony<br>Complimentary foods</p>
</div>
<div class="card-action">
<a href="#" class="btn-small brown z-depth-2"> <strong>COST : ₹35000</strong></a><br><br>
<a href="packagebooking.php" class="btn brown waves-effect waves-light">BOOK NOW</a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class=" parallax-container">
<div class="parallax "><img src="images/hotel1.jpg" class="responsive-img"> </div>
</div>
<section class="section container scrollspy" id="facility">
<h2 class="brown-text center "><b>FACILITIES</b></h2>
<div class="row ">
<div class="col s12 l4 ">
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">wifi</i></a>
<span>WiFi Access</span>
</div> <br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">live_tv</i></a>
<span>Cable TV</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">pool</i></a>
<span>Swimming Pool</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">yard</i></a>
<span>Garden Area</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">elevator</i></a>
<span>Elevator/Lift</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">games</i></a>
<span>Indoor & Outdoor Games</span>
</div>
</div>
<div class="col s12 l5 offset-l3 ">
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">web</i></a>
<span>Newspapers</span>
</div> <br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">local_dining</i></a>
<span>Complimentary Breakfast</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">local_drink</i></a>
<span>Mineral Water</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">balcony</i></a>
<span>Balcony</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">live_tv</i></a>
<span>CCTV</span>
</div><br>
<div>
<a href="# " class="btn-floating btn-large brown pulse "><i class=" material-icons left ">event</i></a>
<span>Events</span>
</div>
</div>
</div>
</section>
<div class="parallax-container">
<div class="parallax"><img src="images/hotel2.jpg" class="responsive-img"> </div>
</div>
<section class="section container scrollspy" id="about">
<div class="row ">
<h2 class="brown-text center "><b>ABOUT THE GRAND RESORT</b></h2>
<div class="col s12 l4 ">
<video width="500 " height="550 " autoplay loop>
<source src="images/aboutvideo.mp4 " type="video/mp4"/>
</video>
</div>
<div class="col s12 l6 offset-l2 ">
<p>The GRAND RESORT provides you an amazing luzury facilities,offers and events. Year after year it has been an immovable symbol of national integrity where people from all races and background come together, as one, for wholesome family
entertainment.At The GRAND RESORT we are committed to delight our customers with a unique blend of education and entertainment, coupled by an unwavering dedication to world peace, family harmony and spiritual joy. We take great pleasure
to share with you the good news that various exciting and promising value additions are being offered by your favourite The GRAND RESORT, exclusively for your enjoyment.You will experience the same luxury as a hotel, yet in a homely
and private environment with your family or friends, while waking up to sounds of tropical birds and viewing the landscaped gardens, swimming pool and flowers from the villa windows.</p>
</div>
</div>
</section>
<div class="parallax-container">
<div class="parallax"><img src="images/service.webp" class="responsive-img"> </div>
</div>
<section id="services" class="container">
<h4 class="center brown-text"><strong>SERVICES WE PROVIDE...</strong></h4><br>
<div class="row ">
<div class="col s12 l4 center-align">
<div class="card">
<div class="card-image">
<img src="images/service1.jpg">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">timer
</i></a>
</div>
<div class="card-content">
<span class="card-title brown-text"><strong>OUR SERVICES</strong></span>
<hr>
<p><i class="material-icons prefix">check_circle</i>
<span>24hrs working hours</span><br>
<i class="material-icons prefix">check_circle</i>
<span>24hrs room & event bookings</span><br>
<i class="material-icons prefix">check_circle</i>
<span>Safety Atmosphere</span>
</p>
</div>
</div>
</div>
<div class="col s12 l4 center-align">
<div class="card">
<div class="card-image">
<img src="images/service1.jpg ">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">payment
</i></a>
</div>
<div class="card-content ">
<span class="card-title brown-text"><strong>OUR SERVICES</strong></span>
<hr>
<p><i class="material-icons prefix ">check_circle</i>
<span>Stay first,Pay later</span><br>
<i class="material-icons prefix ">check_circle</i>
<span>Decorated room, proper facilities</span><br>
<i class="material-icons prefix ">check_circle</i>
<span>Private Balcony</span></p>
</div>
</div>
</div>
<div class="col s12 l4 center-align">
<div class="card">
<div class="card-image">
<img src="images/service1.jpg">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse \"><i class="material-icons">auto_awesome
</i></a>
</div>
<div class="card-content ">
<span class="card-title brown-text"><strong>OUR SERVICES</strong></span>
<hr>
<p><i class="material-icons prefix ">check_circle</i>
<span>Special Request Accepted</span><br>
<i class="material-icons prefix ">check_circle</i>
<span>Emergency Precautions available</span><br>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h4 class="center brown-text"><strong>WHAT OTHER VISITORS EXPERIENCED...</strong></h4><br>
<div class="row">
<div class="col s16 m6 l3 center-align" id="review">
<div class="card">
<div class="card-image">
<img src="images/review.png">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">star
</i></a>
</div>
<div class="card-content">
<span class="card-title">
REVIEW & RATING
</span>
<hr>
<p>Excellent Services and Best Facilities</p>
<p><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_half</i>
</div>
</div>
</div>
<div class="col s16 m6 l3 center-align" id="review">
<div class="card">
<div class="card-image">
<img src="images/review.png">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">star
</i></a>
</div>
<div class="card-content">
<span class="card-title">
REVIEW & RATING
</span>
<hr>
<p>Worth to come again,Must visit!</p>
<p><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_border</i></p>
</div>
</div>
</div>
<div class="col s16 m6 l3 center-align" id="review">
<div class="card">
<div class="card-image">
<img src="images/review.png">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">star
</i></a>
</div>
<div class="card-content">
<span class="card-title">
REVIEW & RATING
</span>
<hr>
<p>Pleasant Stay with Affordable packages</p>
<p><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_half</i></p>
</div>
</div>
</div>
<div class="col s16 m6 l3 center-align" id="review">
<div class="card">
<div class="card-image">
<img src="images/review.png">
<a class="btn-floating halfway-fab waves-effect waves-light brown pulse "><i class="material-icons ">star
</i></a>
</div>
<div class="card-content">
<span class="card-title">
REVIEW & RATING
</span>
<hr>
<p>Value for money,Excellent stay</p>
<p><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_rate</i><i class="material-icons">star_border</i></p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="parallax-container">
<div class="parallax"><img src="images/hotel3.png" class="responsive-img"> </div>
</div>
<section class="section container scrollspy" id="contact">
<div class="row">
<div class="col s12 l5 ">
<h3 class="brown-text ">Get In Touch</h3>
<p>If you have any queries and service-related details and doubts,please free to drop a line.We'll get back to your queries and doubts as soon as possible.Stay connected!!</p>
</div>
<div class="col s12 l5 offset-l2">
<form action=" ">
<div class="input-field">
<i class="material-icons prefix">person</i>
<input type="email" id="email">
<label for="email">Your Name..</label>
</div>
<div class="input-field">
<i class="material-icons prefix">email</i>
<input type="email" id="email">
<label for="email ">Your Email..</label>
</div>
<div class="input-field">
<i class="material-icons prefix">message</i>
<input id="msg" class="materialize-textarea">
<label for="msg">Your Message</label>
</div>
<div class="input-field ">
<p>Services required...</p>
<p>
<label>
<input type="checkbox" class="filled-in">
<span>Room Booking</span>
</label>
</p>
<p>
<label>
<input type="checkbox" class="filled-in">
<span>Event Booking</span>
</label>
</p>
<p>
<label>
<input type="checkbox" class="filled-in">
<span>Package Booking</span>
</label>
</p>
</div>
<div class="input-field center">
<button class="btn brown">Submit</button>
</div>
</form>
</div>
</div>
</section>
<section class="page-footer brown lighten-1">
<div class="container">
<div class="row">
<div class="col s12 l6 ">
<h4><b>CONTACT INFO</b></h4><br>
<a href="# " class="btn-floating brown "><i class="material-icons ">location_on</i></a>
<span>Chennai,TamilNadu</span><br><br>
<a href="# " class="btn-floating brown "><i class="material-icons ">email</i></a>
<span>thegrandresort2021@gmail.com</span>
</div>
<div class="col s12 l4 offset-l2 ">
<h4><b>CONNECT US..</b></h4><br>
<ul>
<li>
<a href="#" class="btn-floating btn-small brown tooltipped pulse " data-tooltip="Facebook" data-position="padding-bottom ">
<i class="fab fa-facebook "></i></a>
<a href="#" class="btn-floating btn-small brown tooltipped pulse " data-tooltip="Twitter">
<i class="fab fa-twitter"></i></a>
<a href="#" class="btn-floating btn-small brown tooltipped pulse " data-tooltip="Linkedin">
<i class=" fab fa-linkedin"></i></a>
<a href="#" class="btn-floating btn-small brown tooltipped pulse " data-tooltip="Instagram">
<i class="fab fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright brown darken-1">
<div class="container center-align white-text">
<b>©2021 The Grand Resort</b><br>
<b>Made with by Deepthi Sherly J</b>
</div>
</div>
</section>
<a href="#" class="to-top">
<i class="fas fa-chevron-up"></i>
</a>
<script src="main.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/js/materialize.min.js"></script>
<script>
$(document).ready(function() {
$('.sidenav').sidenav();
$('.carousel').carousel();
setInterval(function() {
$('.carousel').carousel('next');
}, 2000);
$('.materialboxed').materialbox();
$('.parallax').parallax();
$('.tabs').tabs();
$('.datepicker').datepicker({
disableWeekends: true
});
$('.tooltipped').tooltip();
$('.scrollspy').scrollSpy();
$(".dropdown-trigger").dropdown();
});
</script>
</body>
</html>