generated from skills/introduction-to-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFAQs.html
505 lines (462 loc) · 17.3 KB
/
FAQs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQs - Mambo Yote Restaurant</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Italianno&display=swap">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
*{
box-sizing: border-box;
}
header {
background-image: url("images/pexels-pixabay-262978.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
padding: 75px;
text-align: center;
color: white;
}
header h1 {
width: 100%;
font-family: 'Italianno', cursive;
background-color: rgba(218, 210, 210, 0.615); /* Optional: Add background for better readability */
padding: 10px; /* Optional: Add padding */
color: rgb(0, 0, 0); /* Ensure text color is readable */
font-size: 64px;
margin: 0;
}
.ul-one {
position: fixed;
display: grid;
grid-template-columns: auto auto auto auto auto auto auto auto;
gap: 0px;
top: 0%;
left: 0%;
list-style-type: none;
z-index: 2;
transition: all ease-in-out 1.25s;
}
button {
background-color: #333;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #ff6347;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
text-align: center;
min-width: 160px;
box-shadow: 0px rgba(0,0,0,0.2);
z-index: 2;
}
.dropdown-content ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.dropdown-content ul a {
text-decoration: none;
color: black;
display: block;
padding: 10px;
}
.dropdown:hover .dropdown-content {
display: block;
transition: all ease-in-out 0.5s;
}
.dropdown-content ul a:hover {
background-color: #ff6347;
}
header img {
width: 24px;
height: 24px;
}
.italianno-regular {
position: relative;
bottom: 0px;
height: 50px;
width: 100%;
text-align: center;
font-family: 'Italianno', cursive;
background-color: rgba(218, 210, 210, 0.615); /* Optional: Add background for better readability */
/* Optional: Add padding */
color: rgb(0, 0, 0); /* Ensure text color is readable */
font-size: 28px;
margin: 0;
}
div h2.italianno-regular{
font-size: 48px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
text-align: center;
min-width: 160px;
box-shadow: 0px rgba(0,0,0,0.2);
z-index: 2;
}
.dropdown-content ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.dropdown-content ul a {
text-decoration: none;
color: black;
display: block;
padding: 10px;
}
.dropdown:hover .dropdown-content {
display: block;
transition: all ease-in-out 0.5s;
}
.dropdown-content ul a:hover {
background-color: #f1f1f1;
}
.dropdown-content ul a:active {
background-color: #ff6347;
}
header img {
width: 24px;
height: 24px;
}
.italianno-regular {
position: absolute;
bottom: 10px; /* Adjust this value as needed */
background-color: rgba(24, 22, 22, 0); /* Optional: Add background for better readability */
padding: 10px; /* Optional: Add padding */
color: rgb(144, 119, 119); /* Ensure text color is readable */
width: 100%;
left: 0px;
right: 0px;
font-family: "Italianno", cursive;
font-weight: 400;
font-style: normal;
font-size: 2rem;
z-index: 1;
}
.header-text h1 {
margin: 20px;
}
button {
background-color: #333;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #ff6347;
}
header h1 {
font-family: 'Italianno', cursive;
font-size: 3rem;
margin: 0;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq {
margin-bottom: 20px;
}
.faq h2 {
font-size: 1.5rem;
margin: 0;
padding: 10px;
background-color: #333;
color: white;
border-radius: 4px;
}
.faq p {
display: none;
padding: 10px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 4px;
}
.faq img {
width: 100%;
height: auto;
border-radius: 4px;
margin-top: 10px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
width: 100%;
position: relative;
}
footer a {
margin: 5px;
}
footer img {
width: 24px;
height: 24px;
transition: all 0.5s;
}
footer img:hover{
transform: scale(1.5);
}
footer p {
margin: 10px;
font-size: small;
}
footer ul {
list-style-type: none;
padding: 0;
margin: 0;
}
footer ul li {
display: inline;
margin: 10px;
}
@media screen and (max-width:748px) {
footer ul li {
display: inline;
margin: 2.5px;
}
}
footer ul li a {
text-decoration: none;
color: white;
}
footer ul li a:hover {
color: #ff6347;
}
footer ul li a:active {
color: #ff6347;
}
</style>
</head>
<body>
<header>
<nav>
<ul class="ul-one">
<div class="dropdown">
<li><button><img src="images/home_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href="index.html"><li>Home</li></a>
</ul>
</div>
</div>
<div class="dropdown">
<li><button><img src="images/menu_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href="menu.html#Breakfastmenu"><li>Breakfast</li></a>
<a href="menu.html#Lunchmenu"><li>Lunch</li></a>
<a href="menu.html#Dinnermenu"><li>Dinner</li></a>
<a href="menu.html#Drinksmenu"><li>Drinks</li></a>
<a href="menu.html#Dessertsmenu"><li>Desserts</li></a>
<a href="menu.html#Snacksmenu"><li>Snacks</li></a>
</ul>
</div>
</div>
<div class="dropdown">
<li><button><img src="images/notifications_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href="notifications.html#Specials"><li>Specials</li></a>
<a href="notifications.html#Offers"><li>Offers</li></a>
<a href="notifications.html#Events"><li>Events</li></a>
</ul>
</div>
</div>
<div class="dropdown">
<li><button><img src="images/shopping_cart_checkout_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href=""><li>My Cart</li></a>
<a href=""><li>Reccomendations</li></a>
</ul>
</div>
</div>
<div class="dropdown">
<li><button><img src="images/settings_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href=""><li>Account information</li></a>
<a href=""><li>Privacy and security</li></a>
</ul>
</div>
</div>
<div class="dropdown">
<li><button><img src="images/account_circle_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href="log in.html"><li>Log in</li></a>
<a href="sign up.html"><li>Sign up</li></a>
</ul>
</div>
</div>
<div class="dropdown">
<li><button><img src="images/contact_support_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href="FAQs.html"><li>FAQs</li></a>
<a href=""><li>Contact Us</li></a>
<a href=""><li>About us</li></a>
</ul>
</div>
</div>
<div class="dropdown">
<li><button><img src="images/logout_24dp_EFEFEF_FILL0_wght400_GRAD0_opsz24.png" alt=""></button></li>
<div class="dropdown-content">
<ul>
<a href=""><li>Log out</li></a>
</ul>
</div>
</div>
</ul>
</nav>
<h1>FAQs - Mambo Yote Restaurant</h1>
</header>
<div class="container">
<div class="faq">
<h2 onclick="myAnswer()">What are your opening hours?</h2>
<p>We are open from 8:00 AM to 10:00 PM from Monday to Sunday.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you offer vegetarian options?</h2>
<p>Yes, we have a variety of vegetarian dishes available on our menu.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you have gluten-free options?</h2>
<p>Yes, we offer several gluten-free dishes. Please ask our staff for more details.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Is there parking available?</h2>
<p>Yes, we have ample parking space available for our customers.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you offer delivery services?</h2>
<p>Yes, we offer delivery services within a 10-mile radius of our restaurant.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Can I make a reservation?</h2>
<p>Yes, you can make a reservation by calling us at (123) 456-7890 or through our website.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you have outdoor seating?</h2>
<p>Yes, we have a beautiful outdoor seating area for our customers to enjoy.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Are pets allowed?</h2>
<p>Yes, pets are allowed in our outdoor seating area.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you offer catering services?</h2>
<p>Yes, we offer catering services for events and special occasions. Please contact us for more details.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you have a kids' menu?</h2>
<p>Yes, we have a special menu for kids with a variety of options.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you offer gift cards?</h2>
<p>Yes, we offer gift cards that can be purchased at our restaurant or online.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Is there a dress code?</h2>
<p>We have a casual dress code. However, we encourage our customers to dress smartly.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you have live music?</h2>
<p>Yes, we have live music performances on weekends.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you offer Wi-Fi?</h2>
<p>Yes, we offer free Wi-Fi for our customers.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Can I host a private event at your restaurant?</h2>
<p>Yes, we have a private dining area available for events. Please contact us for more details.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you have vegan options?</h2>
<p>Yes, we have a variety of vegan dishes available on our menu.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you offer takeout?</h2>
<p>Yes, we offer takeout services. You can place your order online or by calling us.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you have a loyalty program?</h2>
<p>Yes, we have a loyalty program that rewards our regular customers with discounts and special offers.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you have a bar?</h2>
<p>Yes, we have a fully stocked bar with a wide selection of drinks.</p>
</div>
<div class="faq">
<h2 onclick="myAnswer()">Do you offer seasonal menus?</h2>
<p>Yes, we offer seasonal menus that feature fresh, locally sourced ingredients.</p>
</div>
<script>
document.querySelectorAll('.faq h2').forEach(faq => {
faq.addEventListener('click', () => {
faq.nextElementSibling.style.display = faq.nextElementSibling.style.display === 'block' ? 'none' : 'block';
});
});
</script>
</div>
<footer>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Menu</a></li>
<li><a href="">Contact Us</a></li>
<li><a href="">Shopping cart</a></li>
<li><a href="">Settings</a></li>
<li><a href="">Account info</a></li>
<li><a href="">FAQs</a></li>
</ul>
</nav>
<p>Follow Us</p>
<a href=""><img src="images/facebook (1).png" alt=""></a>
<a href=""><img src="images/instagram.png" alt=""></a>
<a href=""><img src="images/twitter.png" alt=""></a>
<a href=""><img src="images/youtube.png" alt=""></a>
<a href=""><img src="images/linkedin.png" alt=""></a>
<a href=""><img src="images/whatsapp.png" alt=""></a>
<a href=""><img src="images/mail_24dp_000000_FILL0_wght400_GRAD0_opsz24.png" alt=""></a>
<a href=""><img src="images/call_24dp_000000_FILL0_wght400_GRAD0_opsz24.png" alt=""></a>
<a href=""><img src="images/location_on_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.png" alt=""></a>
<p>© 2021 Mambo Yote Restaurant. All rights reserved.</p>
</footer>
</body>
</html>