forked from Zroctve/ZeroOctave-Javascript-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotel.html.html
More file actions
496 lines (451 loc) · 21.3 KB
/
hotel.html.html
File metadata and controls
496 lines (451 loc) · 21.3 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
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
<!DOCTYPE html>
<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 website</title>
<link rel="stylesheet" href="final.css">
<!-- <script src="https://kit.fontawesome.com/dbed6b6114.js" crossorigin="anonymous"></script> -->
<script src="https://kit.fontawesome.com/442dffe68b.js" crossorigin="anonymous"></script>
<link rel="icon" href="images/logo.png" type="image/png">
</head>
<body>
<!-- HEADER -->
<header class="header" id="header">
<div class="head-top">
<div class="site-name">
<span>RAINBOW</span>
</div>
<div class="site-nav">
<span id="nav-btn">MENU <i class="fas fa-bars"></i></span>
</div>
</div>
<div class="head-bottom flex">
<h2>Hotel for the elite passionate about luxury</h2>
<p>Discover the perfect blend of convenience, stylish comfort, legendary service and timeless Indian style in an iconic landmark. <br>
Dedicated to growing its footprint in the future,
Rainbow Hotels has a series of lavish and comfortable
hotels and residences in the pipeline. </p>
<button type="button" class="head-btn" id="reserve" >Reserve now</button>
</div>
</header>
<!-- END OF HEADER -->
<!-- SIDE NAV-BAR -->
<div class="side-nav" id="side-nav">
<span class="cancel-btn" id="cancel-btn">
<i class="fas fa-times"></i>
</span>
<ul class="nav-bar">
<li><a href="#header">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#place">Rooms</a></li>
<li><a href="#customers">Customers</a></li>
</ul>
<button class="btn sign-up" ><a href="login.html">Log-In</a></button>
<button class="btn log-in"><a href="registration.html"> Register</a></button>
</div>
<!-- END OF SIDE NAV-BAR -->
<!-- Full screen modal -->
<div id="modal"></div>
<!-- End of fullscreen modal -->
<!-- BODY CONTENT-->
<div class="book" id="book">
<form class="book-form" action="http://localhost/book.php" method="POST">
<div class="form-item">
<label for="name">NAME</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-item">
<label for="checkin-date">Check In Date</label>
<input type="date" id="checkin-date" name="checkin" required>
</div>
<div class = "form-item">
<label for = "checkout-date">Check Out Date: </label>
<input type = "date" id = "chekout-date" name="checkout" required>
</div>
<div class = "form-item">
<label for = "adult">Adults: </label>
<input type = "number" min = "1" value = "1" id = "adult" name="adults" required>
</div>
<!-- <div class = "form-item">
<label for = "children">Children: </label>
<input type = "number" value = "1" id = "children" name="children" required>
</div>-->
<div class="form-item">
<label for="roomtype">Room_type</label>
<select name="roomtype" id="roomtype">
<option value="select">----Select----</option>
<option value="standard">standard</option>
<option value="superior">superior</option>
<option value="luxury">luxury</option>
<option value="Executive">Executive</option>
</select>
</div>
<div class = "form-item">
<label for = "rooms">Rooms: </label>
<input type = "number" min = "1" value = "1" id = "rooms" name="rooms" required>
</div>
<div class = "form-item">
<input type = "submit" class = "btn" value = "Book Now" >
</div>
</form>
</div>
<section class="services sec-width" id="services">
<div class="title">
<h2>Services</h2>
</div>
<div class="services-container">
<!-- single service -->
<article class="service">
<div class="service-icon">
<span>
<!-- <i class="fas fa-utensils"></i> -->
<i class="fas fa-concierge-bell"></i>
</span>
</div>
<div class="service-content">
<h2>Reception and Concierge services</h2>
<p>Our professional and international staff is available 24/7 and delighted to advise and assist you in organizing your stay (price by request)
<ul>
<li>
Transportation
</li>
<li>
Ticket Office
</li>
<li>
Tour reservations
</li>
<li>
Personalized welcome upon arrival
</li>
<li>
Restaurants
</li>
<li>
Massages
</li>
</ul>
</p>
<button type="button" class="btn"><a href="#wifi"> More </a></button>
</div>
</article>
<!-- end of single service -->
<!-- single service -->
<article class = "service">
<div class = "service-icon">
<span>
<i class="fas fa-cocktail"></i>
</span>
</div>
<div class = "service-content">
<h2>Honesty Bar</h2>
<p>
Enjoy a pleasant evening in the hotel lounge, a place of relaxation, encounters, sharing, where you will feel right at home. The Honesty Bar is an unusual concept based on trust: the bar is yours, serve yourself as if you were at home. <br> <br>
We offer a wide selection of beverages (Nespresso, sodas, fruit juice, gin, vodka, whiskies, pre-dinner drinks, liqueurs, etc.). Personally host your friends or business partners and enjoy a peaceful moment at "home" to chat, have a drink, enjoy a light lunch, cup of tea or gourmet coffee.
</p>
<button type = "button" class = "btn"><a href="#wifi"> More </a></button>
</div>
</article>
<!-- end of single service -->
<!-- single service -->
<article class="service" id="wifi">
<div class = "service-icon">
<span>
<i class="fas fa-wifi"></i>
</span>
</div>
<div class="service-content">
<h2>Internet Access</h2>
<p>
Free Wi-Fi throughout the entire hotel,
Internet hotspot in the lobby (iMac with printer),
iPad available at the front desk (you can borrow it by request)
</p>
<button type = "button" class = "btn"><a href="#other"> More </a></button>
</div>
</article>
<!-- End of single service -->
<!-- single service -->
<article class = "service">
<div class = "service-icon">
<span>
<i class="fas fa-utensils"></i>
</span>
</div>
<div class = "service-content">
<h2>Room Service</h2>
<p>
Room service is available from 7am to 10:30pm and offers a concise menu and a selection of wines to peacefully enjoy in the comfort and privacy of your own room. Room Service Menu.
</p>
<button type = "button" class = "btn"><a href="#other"> More </a></button>
</div>
</article>
<!-- end of single service -->
<!-- single service -->
<article class = "service" id="other">
<div class = "service-icon">
<span>
<i class="fas fa-ellipsis-h"></i>
</span>
</div>
<div class = "service-content">
<h2>Other Services</h2>
<p>
Porter, Left-Luggage Office, International Press, Laundry, International TV Channels, Radio, iPod Docks, Wake-Up Calls on request, Iron and Ironing Board on request, Bathrobes and Slippers in all rooms and "Hermès" Toiletries.
</p>
<!-- <button type = "button" class = "btn"><a href="#services"> More </a></button>-->
</div>
</article>
<!-- end of single service -->
</div>
</section>
<section class = "rooms sec-width" id="place">
<div class = "title">
<h2>Rooms</h2>
</div>
<div class = "rooms-container">
<!-- single room -->
<article class = "room">
<div class = "room-image">
<img src = "images/img1.jpg" alt = "room image">
</div>
<div class = "room-text">
<h3>Standard Rooms</h3>
<ul>
<li>
<i class="fas fa-bed"></i>
1 double bed (140 x 190)
</li>
<li>
<i class="fas fa-user"></i>
2 people
</li>
<li>
<i class="fas fa-vector-square"></i>
16m²
</li>
</ul>
<p>We pay special attention to the decor in order to give each room a unique character and an exceptional atmosphere that guarantees peace and relaxation. Perfect for a short romantic stay or business trip.</p>
<p class = "rate">
<span>$149.00 /</span> Per Night
</p>
<!--<button type = "button" onclick="book" class = "btn"> <a href="#book">book now</a></button>
--> </div>
</article>
<!-- end of single room -->
<!-- single room -->
<article class = "room">
<div class = "room-image">
<img src = "images/img2.jpg" alt = "room image">
</div>
<div class = "room-text">
<h3>Superior Rooms</h3>
<ul>
<li>
<i class="fas fa-bed"></i>
1 queen size double bed (160 x 200) or 2 twin beds (90 x 200)
</li>
<li>
<i class="fas fa-user"></i>
2 people
</li>
<li>
<i class="fas fa-vector-square"></i>
20m²
</li>
</ul>
<p>
A cozy room with a sophisticated and personalized decor, decorated with beautiful fabrics created by the most prestigious designers (Pierre Frey, Manuel Canovas), high-end furniture and paintings, providing a warm, elegant and comfortable setting.
</p>
<p class = "rate">
<span>$199.00 /</span> Per Night
</p>
<!-- <button type = "button" class = "btn"><a href="#book">book now</a></button>-->
</div>
</article>
<!-- end of single room -->
<!-- single room -->
<article class = "room">
<div class = "room-image">
<img src = "images/img3.jpg" alt = "room image">
</div>
<div class = "room-text">
<h3>Executive Rooms</h3>
<ul>
<li>
<i class="fas fa-bed"></i>
1 queen size double bed (160 x 200) or 2 twin beds (90 x 200) </li>
<li>
<i class="fas fa-user"></i>
4 people </li>
<li>
<i class="fas fa-vector-square"></i>
25m² </li>
</ul>
<p>
The room offers a lovely, discreet and luxurious atmosphere for your stays in Paris. With its classic setting, guests will be seduced by the room's pleasant decor and enjoy the cozy intimate setting.
</p>
<p class = "rate">
<span>$249.00 /</span> Per Night
</p>
<!-- <button type = "button" class = "btn"><a href="#book">book now</a></button>-->
</div>
</article>
<!-- end of single room -->
<article class = "room">
<div class = "room-image">
<img src = "images/hotel_feture_3.jpg" alt = "room image">
</div>
<div class = "room-text">
<h3>Luxury Rooms</h3>
<ul>
<li>
<i class="fas fa-bed"></i>
1 queen size double bed (160 x 200) or 2 twin beds (90 x 200) </li>
<li>
<i class="fas fa-user"></i>
4 people </li>
<li>
<i class="fas fa-vector-square"></i>
30m² </li>
</ul>
<p>
Spacious rooms, the chic and sophisticated decor will remind you of pure Parisian elegance and the French "art de vivre". Particularly recommended for a long stay by yourself, as a couple, with the family or with friends.
</p>
<p class = "rate">
<span>$299.00 /</span> Per Night
</p>
<!--<button type = "button" class = "btn"><a href="#book">book now</a></button>-->
</div>
</article>
</div>
</section>
<section class = "customers" id = "customers">
<div class = "sec-width">
<div class = "title">
<h2>customers</h2>
</div>
<div class = "customers-container">
<!-- single customer -->
<div class = "customer">
<div class = "rating">
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "far fa-star"></i></span>
</div>
<h3>We Loved it</h3>
<p>
“Me and my wife had a delightful weekend get away here, the staff were so friendly and attentive. Highly Recommended”
</p>
<img src = "images/cus1.jpg" alt = "customer image">
<span>Johny Depp</span>
</div>
<!-- end of single customer -->
<!-- single customer -->
<div class = "customer">
<div class = "rating">
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "far fa-star"></i></span>
</div>
<h3>Comfortable Living</h3>
<p>
“If you’re looking for a top quality hotel look no further. We were upgraded free of charge to the Premium Suite, thanks so much”
</p>
<img src = "images/cus2.jpg" alt = "customer image">
<span>Emma Watson</span>
</div>
<!-- end of single customer -->
<!-- single customer -->
<div class = "customer">
<div class = "rating">
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "far fa-star"></i></span>
</div>
<h3>Nice Place</h3>
<p>
I enjoyed my stay at your hotel. The breakfast was excellent. I must comment on your director of rooms -Romana. I had a small problem and she handled it with grace, charm and professionalism.. She is a credit to your organization
</p>
<img src = "images/cus3.jpg" alt = "customer image">
<span>Tom Cruise</span>
</div>
<!-- end of single customer -->
</div>
</div>
</section>
<!-- END OF BODY CONTENT -->
<!-- FOOTER -->
<footer class = "footer">
<div class = "footer-container">
<div>
<h2>About Us </h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque sapiente mollitia doloribus provident? Eos quisquam aliquid vel dolorum, impedit culpa.</p>
<ul class = "social-icons">
<li class = "flex">
<a href="https://twitter.com/"><i class = "fa fa-twitter fa-2x"></i></a>
</li>
<li class = "flex">
<a href="https://www.facebook.com/"><i class = "fa fa-facebook fa-2x"></i></a>
</li>
<li class = "flex">
<a href="https://www.instagram.com/"> <i class = "fa fa-instagram fa-2x"></i></a>
</li>
</ul>
</div>
<div>
<h2>Useful Links</h2>
<a href = "#header">home</a>
<a href = "#place">Rooms</a>
<a href = "#services">Services</a>
<a href = "#customers">customers</a>
</div>
<!--<div>
<h2>Privacy</h2>
<a href = "#">Career</a>
<a href = "#">About Us</a>
<a href = "#">Contact Us</a>
<a href = "#">Services</a>
</div>-->
<div>
<h2>Have A Question</h2>
<div class = "contact-item">
<span>
<i class = "fas fa-map-marker-alt"></i>
</span>
<span>
Gharuan , kharar , mohali .
</span>
</div>
<div class = "contact-item">
<span>
<i class = "fas fa-phone-alt"></i>
</span>
<span>
+91 3678463839
</span>
</div>
<div class = "contact-item">
<span>
<i class = "fas fa-envelope"></i>
</span>
<span>
info@domain.com
</span>
</div>
</div>
</div>
</footer>
<!-- end of footer -->
<script src="final.js"></script>
<script src="book.js"></script>
</body>
</html>