-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMenu.html
473 lines (395 loc) · 18 KB
/
Menu.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Restaurant</title>
<style type="text/css">
.shop-item {
width: 700px;
}
.shop-item-title{
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
font-size: 40px;
}
.shop-item-price{
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
font-size: 40px;
}
.zoom {
transition: transform .5s; /* Animation */
width: 50px;
height: 50px;
margin: 0 auto;
}
.zoom:hover {
transform: scale(6.5); /*650% zoom */
}
/* Navbar container */
.navbar {
overflow: hidden;
background-color: #333;
font-family: Arial;
}
/* Links inside the navbar */
.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* The dropdown container */
.dropdown {
float: left;
overflow: hidden;
}
/* Dropdown button */
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit; /* Important for vertical align on mobile phones */
margin: 0; /* Important for vertical align on mobile phones */
}
/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: red;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
</style>
<script src="Scripts/store.js" async>
</script>
</head>
<body class="lunchmenu">
<table width="80%" border="1" cellspacing="12" cellpadding="12">
<tbody>
<th colspan= "5" scope="col"><label for="menu_options"></label>
<center>
<div class="navbar">
<a href="#home">Home</a>
<div class="dropdown">
<button class="dropbtn">Menu
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#">Lunch</a>
<a href="#">Dinner</a>
<a href="#">Desert</a>
</div>
</div>
<a href="#news">Reservations</a>
<a href="#news">About Us</a>
<a href="#news">Contact Us</a>
</div>
</th>
</tr>
<tr>
<th scope="col"><img src="images/c38bc7b801063c0469874c11f8d27ff1.jpg" width="736" height="500" alt=""/></th>
<th colspan="4" scope="col">Titans Room<br> Filled with a wide array of wines to choose from dating as far back as the 19th Century .The TitansRoom also boasts a large mural by Pablo picasso's Night sky .It is The Atlas' largest private room, suited for parties of up to 30 guests and requires a minimum of 10 guests</th>
</tr>
<tr>
<th scope="col">Independence Room<br> This room features japanese memorabilia, including the program the Kenyan emarald lilacs painted to honor kenya's 10 years of Independence. Kenyan hunting paintings and political cartoons also line the walls. The Independence Room is suited for parties of up to 25 guests and requires a minimum of 10 guests.</th>
<th colspan= "4" scope="col"><img src="images/sofitel-philippine-plaza-manila-private-dining.jpg" width="736" height="500" alt=""/></th>
</tr> <tr>
<th scope="col"><img src="images/Hidden-1024x621.jpg" width="736" height="500" alt=""/></th>
<th colspan="4" scope="col">East African Room<br> This quintessentially Modern African room is ideal for executive or private dinners, small cocktail parties and wine tastings. The room features a working fireplace and its richly paneled walls are lined with 60's period photographs.The room is suited for parties of up to 20 guests and requires a minimum of 20 guests.</th>
</tr>
<tr >
<th colspan= "5" scope="col">LUNCH DINNER DESERT </th>
</tr>
<tr >
<th scope="row"><img src="images/chef-cooking-steak-cook-turns-meat-fire_109285-2650.webp" width="736" height="736" alt=""/>
<br>
</th>
<td colspan= "5" ><table width="100%" border="1" cellspacing="12" cellpadding="12">
<tbody>
<tbody>
<tr>
<td colspan="6"> <center>
LUNCH MENU
</center></td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/sirloin-steak.jpg" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">SIRLOIN STEAK</span>
<span class="shop-item-price">$19.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img class="btn_cart_purchase" src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/filet-mignon-steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">FILET MIGNON</span>
<span class="shop-item-price">$69.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/beef-short-ribs.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">BEEFSHORT RIBS</span>
<span class="shop-item-price">$10.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/Flank-Steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">FLANK STEAK</span>
<span class="shop-item-price">$15.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="imageS/hanger-steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">HANGER STEAK</span>
<span class="shop-item-price">$39.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/Rump-Steak.jpg" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">RUMP STEAK</span>
<span class="shop-item-price">$29.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/Tri-Tip-Steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">TRI-TIP STEAK</span>
<span class="shop-item-price">$39.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr >
<th scope="row"><img src="images/how-to-cook-steak-on-grill_522ddace-6798-4658-b4cc-1d560a774005.webp" width="736" height="736" alt=""/></th>
<td colspan= "5" ><table width="100%" border="1" cellspacing="12" cellpadding="12">
<tbody>
<tbody>
<tr>
<td colspan="6"> <center>
DINNER MENU
</center></td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/Flat-Iron-Steak-.jpg" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">FLAT-IRON STEAK</span>
<span class="shop-item-price">$23.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img class="btn_cart_purchase" src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/london-broil.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">LONDON BROIL</span>
<span class="shop-item-price">$27.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/filet-mignon-steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">FILET MINGNON</span>
<span class="shop-item-price">$79.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/ribeye-steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">RIB-EYE STEAK</span>
<span class="shop-item-price">$45.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="imageS/Skirt-Steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">SKIRT STEAK</span>
<span class="shop-item-price">$39.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/porthouse-t-bone-steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">T-BONE STEAK
</span>
<span class="shop-item-price">$59.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/Tomahawk-Steak.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">THE TOMAHAWK </span>
<span class="shop-item-price">$79.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
</tbody>
</tbody>
<tbody>
</tbody>
</table>
</td>
</tr>
<tr >
<th scope="row"><img src="images/chocolate-icecream-in-an-icecream-maker.jpg" width="736" height="580" alt=""/></th>
<td colspan= "5" ><table width="100%" border="1" cellspacing="12" cellpadding="12">
<tbody>
<tbody>
<tr>
<td colspan="6"> <center>
DESSERT MENU
</center></td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/chocolate-icecream-in-an-icecream-maker.jpg" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">HOUSE ICE CREAM</span>
<span class="shop-item-price">$13.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img class="btn_cart_purchase" src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/BLUEBERRY MACAROONS.jpeg" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">MACAROONS</span>
<span class="shop-item-price">$11.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/17244-caramel-topped-ice-cream-dessert-760x580.jpg" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">CARAMEL CAKE</span>
<span class="shop-item-price">$17.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/7c1096c7-bfd0-4806-a794-1d3001fe0063.jpg" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">CHOCOLATE CAKE
</span>
<span class="shop-item-price">$29.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="shop-item">
<img src="images/chocolate-covered-strawberry-cheesecake.png" width="150" height="150" class="shop-item-image zoom">
<span class="shop-item-title">CHEESE CAKE</span>
<span class="shop-item-price">$19.99</span>
<button class="btn btn-primary shop-item-button" type="image"><img src="socialmediaicons/icons8-shopping-cart-48.png"></button>
</div>
</td>
</tr>
</tbody>
</tbody>
<tbody>
</tbody>
</table>
</td>
</tr>
<tr >
<th scope="row">CURRENT ORDER</th>
<td colspan="2">
ITEM
</td>
<td colspan="1">
PRICE
</td>
<td colspan="2">
QUANTITY
</td>
</tr>
<tr >
<th
colspan= "5" scope="row">ABOUT US</th>
</tr>
</tbody>
</table>
</center>
</body>
</html>