-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
560 lines (552 loc) · 21.3 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<!-- Bootstrap CSS -->
<!-- build:css css/main.css -->
<link
rel="stylesheet"
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="node_modules/font-awesome/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="node_modules/bootstrap-social/bootstrap-social.css"
/>
<link rel="stylesheet" href="css/styles.css" />
<!-- endbuild -->
<title>Ristorante Con Fusion</title>
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-sm fixed-top">
<div class="container">
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#Navbar"
>
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand mr-auto" href="#"
><img src="img/logo.png" height="30" width="41"
/></a>
<div class="colapse navbar-collapse" id="Navbar">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#"
><span class="fa fa-home fa-lg"></span> Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="./aboutus.html"
><span class="fa fa-info fa-lg"></span>About</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#"
><span class="fa fa-list fa-lg"></span>Menu</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="./contactus.html"
><span class="fa fa-address-card fa-lg"></span>Contact</a
>
</li>
</ul>
<span class="navbar-text">
<button class="btn btn-link text-white" id="login">
<span class="fa fa-sign-in"></span> Login
</button>
</span>
</div>
</div>
</nav>
<div id="loginModal" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg" role="content">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Login</h4>
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body">
<form>
<div class="form-row">
<div class="form-group col-sm-4">
<label class="sr-only" for="exampleInputEmail3"
>Email address</label
>
<input
type="email"
class="form-control form-control-sm mr-1"
id="exampleInputEmail3"
placeholder="Enter email"
/>
</div>
<div class="form-group col-sm-4">
<label class="sr-only" for="exampleInputPassword3"
>Password</label
>
<input
type="password"
class="form-control form-control-sm mr-1"
id="exampleInputPassword3"
placeholder="Password"
/>
</div>
<div class="col-sm-auto">
<div class="form-check">
<input class="form-check-input" type="checkbox" />
<label class="form-check-label"> Remember me </label>
</div>
</div>
</div>
<div class="form-row">
<button
type="button"
class="btn btn-secondary btn-sm ml-auto"
data-dismiss="modal"
>
Cancel
</button>
<button type="submit" class="btn btn-primary btn-sm ml-1">
Sign in
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<header class="jumbotron">
<div class="container">
<div class="row row-header align-items-centerr">
<div class="col col-sm-6 order-sm-first col-md">
<h1>Ristorante con Fusion</h1>
<p>
We take inspiration from the World's best cuisines, and create a
unique fusion experience. Our lipsmacking creations will tickle
your culinary senses!
</p>
</div>
<div class="col col-sm-3 align-self-center">
<img src="img/logo.png" class="img-fluid" />
</div>
<div
class="col col-sm-3 order-sm-last align-self-center container d-flex justify-content-center"
>
<button class="btn btn-warning" id="reserve">Reserve Table</button>
<div id="reservetable" class="modal fade">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<!-- Modal header -->
<div class="modal-header">
<h4 class="modal-title">Reserve a Table</h4>
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<!-- Modal Body -->
<div class="modal-body mb-0 pb-0 mt-0">
<form>
<!-- Radio buttons -->
<div class="form-row mb-0">
<div class="form-group row">
<label
for="noofguests"
class="col-sm-3 col-form-label"
>Number of Guests</label
>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
id="inlineRadio1"
name="inlineRadioOptions"
value="option1"
/>
<label class="form-check-label" for="inlineRadio1"
>1
</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
id="inlineRadio2"
name="inlineRadioOptions"
value="option2"
/>
<label class="form-check-label" for="inlineRadio2"
>2
</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
id="inlineRadio3"
name="inlineRadioOptions"
value="option3"
/>
<label class="form-check-label" for="inlineRadio3"
>3
</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
id="inlineRadio4"
name="inlineRadioOptions"
value="option4"
/>
<label class="form-check-label" for="inlineRadio4"
>4
</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
id="inlineRadio5"
name="inlineRadioOptions"
value="option5"
/>
<label class="form-check-label" for="inlineRadio5"
>5
</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
id="inlineRadio6"
name="inlineRadioOptions"
value="option6"
/>
<label class="form-check-label" for="inlineRadio6"
>6
</label>
</div>
</div>
</div>
<!-- Section buttons -->
<div class="form-group row">
<label for="section" class="col-2 col-form-label"
>Section</label
>
<div class="col-5 text-right btn-group" role="group">
<button
type="button"
class="btn btn-success active btn-sm"
>
No Smoking
</button>
<button type="button" class="btn btn-danger btn-sm">
Smoking
</button>
</div>
</div>
<!-- Date and Time Row -->
<div class="form-group row">
<label for="datetime" class="col-sm col-form-label"
>Date and Time</label
>
<div class="col-sm-5">
<input
type="datetime"
class="form-control"
id="date"
name="date"
placeholder="Date"
/>
</div>
<div class="col-sm-5">
<input
type="datetime"
class="form-control"
id="time"
name="time"
placeholder="Time"
/>
</div>
</div>
<!-- Cancel and Reserve Buttons -->
<div class="form-group row">
<div class="position-absolute bottom-right">
<button
type="button"
class="btn btn-secondary"
data-dismiss="modal"
>
Cancel
</button>
</div>
<div class="position-absolute bottom-left">
<button type="submit" class="btn btn-primary">
Reserve
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row row-content">
<div class="col">
<div id="mycarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img
class="d-block img-fluid"
src="img/uthappizza.png"
alt="uthappizza"
/>
<div class="carousel-caption d-none d-md-block">
<h2>
Uthappizza <span class="badge badge-danger">HOT</span>
<span class="badge badge-pill badge-secondary">$4.99</span>
</h2>
<p class="d-none d-sm-block">
A unique combination of Indian Uthappam (pancake) and
Italian pizza, topped with Cerignola olives, ripe vine
cherry tomatoes, Vidalia onion, Guntur chillies and Buffalo
Paneer.
</p>
</div>
</div>
<div class="carousel-item">
<img
class="d-block img-fluid"
src="img/buffet.png"
alt="buffet"
/>
<div class="carousel-caption d-none d-md-block">
<h2>
Weekend Grand Buffet
<span class="badge badge-danger">NEW</span>
</h2>
<p class="d-none d-sm-block">
Featuring mouthwatering combinations with a choice of five
different salads, six enticing appetizers, six main entrees
and five choicest desserts. Free flowing bubbly and soft
drinks. All for just $19.99 per person
</p>
</div>
</div>
<div class="carousel-item">
<img
class="d-block img-fluid"
src="img/alberto.png"
alt="alberto"
/>
<div class="carousel-caption d-none d-md-block">
<h2>Alberto Somayya</h2>
<h4>Executive Chef</h4>
<p class="d-none d-sm-block">
Award winning three-star Michelin chef with wide
International experience having worked closely with whos-who
in the culinary world, he specializes in creating
mouthwatering Indo-Italian fusion experiences.
</p>
</div>
</div>
</div>
<ol class="carousel-indicators">
<li
data-target="#mycarousel"
data-slide-to="0"
class="active"
></li>
<li data-target="#mycarousel" data-slide-to="1"></li>
<li data-target="#mycarousel" data-slide-to="2"></li>
</ol>
<a
class="carousel-control-prev"
href="#mycarousel"
role="button"
data-slide="prev"
>
<span class="carousel-control-prev-icon"></span>
</a>
<a
class="carousel-control-next"
href="#mycarousel"
role="button"
data-slide="next"
>
<span class="carousel-control-next-icon"></span>
</a>
<button class="btn btn-danger btn-sm" id="carouselButton">
<span class="fa fa-pause"></span>
</button>
</div>
</div>
</div>
<div class="row row-content align-items-center">
<div class="col-12 col-sm-4 order-sm-last col-md-3">
<h3>Our Lipsmacking Culinary Creations</h3>
</div>
<div class="col col-sm order-sm-first col-md">
<div class="media">
<img
class="d-flex mr-3 img-thumbnail align-self-center"
src="img/uthappizza.png"
alt="uthappizza"
/>
<div class="media-body">
<h2 class="mt-0">
Uthappizza <span class="badge badge-danger">HOT</span>
<span class="badge badge-pill badge-secondary">$4.99</span>
</h2>
<p class="d-none d-sm-block">
A unique combination of Indian Uthappam (pancake) and Italian
pizza, topped with Cerignola olives, ripe vine cherry tomatoes,
Vidalia onion, Guntur chillies and Buffalo Paneer.
</p>
</div>
</div>
</div>
</div>
<div class="row row-content align-items-center">
<div class="col-12 col-sm-4 col-md-3">
<h3>This Month's Promotions</h3>
</div>
<div class="col col-sm col-md">
<h2 class="mt-0">
Weekend Grand Buffet <span class="badge badge-danger">NEW</span>
</h2>
<p class="d-none d-sm-block">
Featuring mouthwatering combinations with a choice of five different
salads, six enticing appetizers, six main entrees and five choicest
desserts. Free flowing bubbly and soft drinks. All for just $19.99
per person
</p>
</div>
<div class="media">
<img
class="d-flex mr-3 img-thumbnail align-self-center"
src="img/buffet.png"
alt="buffet"
/>
<div class="media-body"></div>
</div>
</div>
<div class="row row-content align-items-center">
<div class="col-12 col-sm-4 order-sm-last col-md-3">
<h3>Meet our Culinary Specialists</h3>
</div>
<div class="col col-sm order-sm-first col-md">
<div class="media">
<img
class="d-flex mr-3 img-thumbnail align-self-center"
src="img/alberto.png"
alt="alberto"
/>
<div class="media-body">
<h2>Alberto Somayya</h2>
<h4>Executive Chef</h4>
<p class="d-none d-sm-block">
Award winning three-star Michelin chef with wide International
experience having worked closely with whos-who in the culinary
world, he specializes in creating mouthwatering Indo-Italian
fusion experiences.
</p>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-4 offset-1 col-sm-2">
<h5>Links</h5>
<ul class="list-unstyled">
<li><a href="#">Home</a></li>
<li><a href="./aboutus.html">About</a></li>
<li><a href="#">Menu</a></li>
<li><a href="./contactus.html">Contact</a></li>
</ul>
</div>
<div class="col-7 col-sm-5">
<h5>Our Address</h5>
<address>
121, Clear Water Bay Road<br />
Clear Water Bay, Kowloon<br />
HONG KONG<br />
<i class="fa fa-phone fa-lg"></i>: +852 1234 5678<br />
<i class="fa fa-fax fa-lg"></i>: +852 8765 4321<br />
<i class="fa fa-envelope fa-lg"></i>:
<a href="mailto:[email protected]">[email protected]</a>
</address>
</div>
<div class="col-12 col-sm-4 align-self-center">
<div class="text-center">
<a
class="btn btn-social-icon btn-google"
href="http://google.com/+"
><i class="fa fa-google-plus fa-lg"></i
></a>
<a
class="btn btn-social-icon btn-facebook"
href="http://www.facebook.com/profile.php?id="
><i class="fa fa-facebook fa-lg"></i
></a>
<a
class="btn btn-social-icon btn-linkedin"
href="http://www.linkedin.com/in/"
><i class="fa fa-linkedin fa-lg"></i
></a>
<a
class="btn btn-social-icon btn-twitter"
href="http://twitter.com/"
><i class="fa fa-twitter fa-lg"></i
></a>
<a
class="btn btn-social-icon btn-youtube"
href="http://youtube.com/"
><i class="fa fa-youtube fa-lg"></i
></a>
<a class="btn btn-social-icon" href="mailto:"
><i class="fa fa-envelope-o fa-lg"></i
></a>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-auto">
<p>© Copyright 2018 Ristorante Con Fusion</p>
</div>
</div>
</div>
</footer>
<!-- jQuery first, then Popper.js, then Bootstrap JS. -->
<!-- build:js js/main.js -->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<!-- endbuild -->
</body>
</html>