-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
742 lines (728 loc) · 28.6 KB
/
menu.html
File metadata and controls
742 lines (728 loc) · 28.6 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
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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
<!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>Menu</title>
<link rel="shortcut icon" type="image/jpg" href="/images/favicon.png" />
<!--Css file for the page to take the styles from-->
<link rel="stylesheet" href="/dist/style.css" />
<!--Boxicons to be used for icons-->
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<header class="header">
<div class="overlay has-fade"></div>
<nav class="container container--pall flex flex-jc-sb flex-ai-c">
<a href="/" class="header__logo">
<img src="/images/Logo.svg" alt="HungryHub" />
</a>
<a href="#" id="hamburgerBtn" class="header__toggle hide-for-desktop">
<span></span>
<span></span>
<span></span>
</a>
<div class="header__links hide-for-mobile">
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
</div>
<div class="flex flex-gap flex-jc-sb hide-for-mobile">
<a href="#" class="button__outline">Register</a>
<a href="signin.html" class="button">Sign In</a>
</div>
</nav>
<div class="header__menu has-fade">
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
<a href="#">Register</a>
<a href="signin.html">Sign In</a>
</div>
</header>
<section class="popmenus">
<div class="popmenu__content container container--pall">
<div class="popmenu__intro">
<h3>Explore</h3>
<h2>Our Delicious Menu</h2>
</div>
<div
id="paginated-list"
data-current-page="1"
aria-live="polite"
class="popmenu__grid"
>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/pizza.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Cheese Pizza</h2>
<h2>$15</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Experience pizza perfection with our mouthwatering cheese
pizza. Indulge in a classic favorite crafted with love and
care. Our signature hand-tossed crust is topped with a
generous layer of melty, gooey cheese, creating a perfect
harmony of flavors.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>4</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/butter.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Butter Chicken</h2>
<h2>$7</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Delight in the flavors of our exquisite butter chicken. Tender
pieces of marinated chicken are simmered in a velvety, spiced
tomato-based sauce. This classic Indian dish offers a
harmonious blend of rich, creamy flavors and aromatic spices.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>4.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/sandwich.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Sandwich</h2>
<h2>$5</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Our sandwiches are a culinary delight, meticulously
handcrafted with the finest ingredients. Each bite reveals
layers of flavor, from the freshly baked bread to the premium
meats and cheeses, complemented by a symphony of crisp
vegetables and delectable spreads.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>3.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/alfredo.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Chicken Alfredo</h2>
<h2>$20</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Experience culinary bliss with our delectable chicken Alfredo.
Tender pieces of grilled chicken are nestled in a creamy,
indulgent Alfredo sauce, crafted with the perfect blend of
Parmesan cheese, butter, and garlic.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>3.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/beef.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Beef Burger</h2>
<h2>$10</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Savor the irresistible delight of our beef burger. A juicy,
flavorful patty made from premium beef, perfectly cooked to
your liking. Nestled in a soft, toasted bun and topped with
fresh, crisp ingredients that add a burst of flavor and
texture.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>4.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/burger.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Chicken Burger</h2>
<h2>$12</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Savor the exquisite delight of our chicken burger, a true
masterpiece in flavor and satisfaction. Imagine sinking your
teeth into a perfectly grilled chicken patty, bursting with
juicy tenderness and infused with delightful seasonings.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>5</span>
</div>
<a href="#" class="button">Add to Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/ribs.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>BBQ Ribs</h2>
<h2>$20</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Indulge in a mouthwatering delight with our Smoky BBQ Ribs.
Our expert chefs slow-cook tender ribs to perfection, ensuring
they are fall-off-the-bone tender and packed with smoky
flavor.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>4.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/panini.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Caprese Panini</h2>
<h2>$10</h2>
</div>
<div class="popmenu__description container--pb">
<p>
This classic sandwich is a delightful fusion of fresh
ingredients and Mediterranean charm. Sliced vine-ripened
tomatoes, creamy mozzarella cheese, and fragrant basil leaves
come together to create a symphony of flavors and textures.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>3.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/shakshuka.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Shakshuka</h2>
<h2>$25</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Our Shakshuka features a tantalizing blend of gently simmered
tomatoes, fragrant spices, and perfectly poached eggs. The
velvety tomato base is infused with aromatic cumin, paprika,
and chili flakes, creating a symphony of flavors that will
delight your taste buds.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>4</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/tacos.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Mexican Tacos</h2>
<h2>$15</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Experience the vibrant flavors of Mexico with our authentic,
handcrafted tacos. Indulge in tender Carne Asada, crispy Baja
Fish, or flavorful Veggie options. Savor the
melt-in-your-mouth Carnitas.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>4</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/biryani.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Biryani</h2>
<h2>$10</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Savor the exquisite flavors of Biryani at our restaurant.
Fragrant Basmati rice infused with aromatic spices and tender
meats or vegetables. A culinary masterpiece that transports
you to the streets of India with every heavenly bite.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/lava.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Lava Cake</h2>
<h2>$5</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Indulge in our signature Lava Cake—a rich, dense chocolate
cake with a molten, gooey chocolate center that oozes with
every bite. Served warm, it's a decadent delight that's
perfect for chocolate lovers.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>4.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/profiteroles.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Profiteroles</h2>
<h2>$10</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Experience the delicate elegance of our Profiteroles. These
light and airy choux pastry puffs are filled with luscious
vanilla or chocolate pastry cream. With each bite, you'll
discover a perfect balance of textures and flavors..
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>4</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/cheese.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Cheese Cake</h2>
<h2>$15</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Indulge in our creamy Cheesecake, a perfect harmony of smooth
texture, tangy flavor, and buttery crust. It's a decadent
delight that will leave you craving more. Treat yourself to a
slice of pure bliss.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>4.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/iced.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Iced Coffee</h2>
<h2>$5</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Cool down with our invigorating iced coffee, brewed to
perfection and served over ice. Whether you prefer it black,
with milk, or flavored with a hint of vanilla or caramel, it's
a satisfying pick-me-up.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>3.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/hot.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Hot Chocolate</h2>
<h2>$7</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Indulge in the comforting embrace of our Hot Chocolate. Made
with the finest quality cocoa, our hot chocolate is a velvety
blend of rich, creamy goodness that will warm your heart and
delight your taste buds.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>4</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/herbal.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Herbal Tea</h2>
<h2>$15</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Discover serenity with our Herbal Infusions. Crafted from the
finest aromatic herbs, these all-natural blends offer soothing
flavors and therapeutic benefits. Embrace tranquility sip by
sip and indulge in a moment of pure relaxation.
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star-half"></i></span>
<span>3.5</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
<div class="popmenu__item">
<div
class="popmenu__image"
style="background-image: url(/images/fruit.jpg)"
></div>
<div class="popmenu__text container--pall">
<div class="popmenu__title flex">
<h2>Fruit Smoothie</h2>
<h2>$15</h2>
</div>
<div class="popmenu__description container--pb">
<p>
Experience fruity bliss with our refreshing Fruit Smoothies.
Made with fresh, seasonal fruits, creamy yogurt, and a touch
of sweetness, they're the perfect way to invigorate your day.
Sip and savor the deliciousness!
</p>
</div>
</div>
<div
class="popmenu__rating flex flex-ai-c flex-jc-sb container--pall"
>
<div class="popmenu__stars">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span>4</span>
</div>
<a href="#" class="button">Add To Cart</a>
</div>
</div>
</div>
</div>
</section>
<nav class="pagination-container container container--pall">
<button
class="pagination-button"
id="prev-button"
title="Previous page"
>
<
</button>
<div id="pagination-numbers"></div>
<button
class="pagination-button"
id="next-button"
title="Next page"
>
>
</button>
</nav>
<footer class="footer">
<div class="footer__content container container--pall">
<a href="#" class="footer__logo">
<img src="/images/Black logo - no background.svg" alt="" />
</a>
<div class="footer__social">
<a href="#">
<img src="/images/1.png" alt="Facebook" />
</a>
<a href="#">
<img src="/images/2.png" alt="Twitter" />
</a>
<a href="#">
<img src="/images/3.png" alt="Instagram" />
</a>
<a href="#">
<img src="/images/4.png" alt="Pinterest" />
</a>
</div>
<div class="footer__links col1">
<h2>Quick Links</h2>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
<div class="footer__links col2">
<h2>Menu</h2>
<a href="menu.html">Burgers</a>
<a href="menu.html">Sandwiches</a>
<a href="menu.html">Desserts</a>
<a href="menu.html">Pizzas</a>
<a href="menu.html">Drinks</a>
</div>
<div class="footer__contact">
<h2>Contact Us</h2>
<ul>
<li>
<span><img src="/images/location.png" alt="" /></span>
<span>26 Al Woushar Street,Dubai, UAE,11472</span>
</li>
<li>
<span><img src="/images/call.png" alt="" /></span>
<span>702-279-3488</span>
</li>
<li>
<span><img src="/images/mail.png" alt="" /></span>
<span>nhamad919@gmail.com</span>
</li>
</ul>
</div>
<div class="footer__copyright">
© HungryHub, All Rights Reserved.
</div>
</div>
</footer>
<!--Javacript file for the menu toggle in the header section for mobile-->
<script src="/js/index.js"></script>
<!--Javascript file for the pagination feature in the menu section-->
<script src="/js/pagination.js"></script>
</body>
</html>