-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1050 lines (992 loc) · 43.7 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
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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>La Hot Fast Food</title>
<!-- Link for the icon -->
<link rel="icon" href="images/egusi 2.png">
<!-- Google Fonts API -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed&family=Jost&family=Kanit&family=Noto+Sans+Display:wght@600&family=PT+Sans+Narrow&family=Slabo+27px&family=Ubuntu:wght@500&display=swap');
</style>
<!-- for second font "dancing Script" -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed&family=Dancing+Script&family=Jost&family=Kanit&family=Noto+Sans+Display:wght@600&family=PT+Sans+Narrow&family=Slabo+27px&family=Ubuntu:wght@500&display=swap');
</style>
<!-- BootStrap Link CSS-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- customised CSS -->
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<div class="loader">
</div>
<span id="spanText">Please Wait....</span>
</header>
<!-- Main Container -->
<div class="container-main">
<!-- For Animation -->
<!-- for menu section -->
<div class="menu" onclick="closeOrderBox()">
<h2 class="logo">La-Hot</h2>
<!-- code for navbarIcon -->
<div class="navButtons">
<i class="fa-solid fa-xmark " id="closeNavs"></i>
<i class="fa-solid fa-burger" id="openNavs"></i>
</div>
<!-- for nav-links PRIMARY specifically designed to show only on the mobile screens -->
<div class="nav-links">
<ul>
<li><a href="#home" class="Active-Link nav-1">Home</a></li>
<li><a href="#menu" class="nav-2">Menu</a></li>
<li><a href="#about" class="nav-3">About</a></li>
<li><a href="#bookTable" class="nav-4">Book Table</a></li>
<li><a href="accoutnlogin.html"><button id="register">log in</button></a></li>
</ul>
</div>
<!-- For Nav-Links SECONDARY specifically designed to show on the desktop or Large Screens only-->
<div class="nav-linksSecondary">
<ul>
<li><a href="#home" class="Active-Link nav-1">Home</a></li>
<li><a href="#menu" class="nav-2">Menu</a></li>
<li><a href="#about" class="nav-3">About</a></li>
<li><a href="#bookTable" class="nav-4">Book Table</a></li>
<li><a href="accoutnlogin.html" target="_blank"><button id="register">log in</button></a>
<!-- <p class="userNameContainer" style="position: relative; left: -15px; top: 5px;"></p> -->
</li>
</ul>
</div>
<!-- For Nav-Links Secondary -->
</div>
<!-- Home Section -->
<section id="home">
<div class="imageContainerBg">
<img src="images/bg2.png" alt="" class="backgroundImg">
</div>
<!-- For the Order Online Container -->
<div class="makeOrder">
<div class="innerContentsForm">
<div class="close">
<i class="fa-solid fa-xmark " id="closeOrderForm"></i>
</div>
<h2 class="head">La-hot Order Form <br> Free and fast</h2>
<form action="" id="order" autocomplete="on">
<!-- for name container -->
<div class="orderName">
<label for="name-food" class="labels">Name:</label> <br>
<input type="text" autocomplete="family-name" placeholder="First" id="name-food" required>
<input type="text" autocomplete="name" placeholder="Last" id="name-food" required>
</div>
<!-- For Purchaser's Email Container -->
<div class="purchaseEmail">
<label for="purchaser-email" class="labels">Purchaser's Email</label> <br>
<input type="email" autocomplete="email" placeholder="Your Email" id="purchaser-email" required>
</div>
<!-- For delievery phone container -->
<div class="phoneOrder">
<label for="delievery-phone" class="labels">Your Phone:</label> <br>
<input type="tel" autocomplete="tel" id="delievery-phone" placeholder="+234 XXX XXX XX" required>
</div>
<!-- for delivery address container -->
<div class="delievryAddress">
<label for="delievery-address" class="labels">Delivery Address:</label> <br>
<input type="text" autocomplete="address-line1" id="delievery-address" placeholder="Street Address" required> <br>
<input type="text" autocomplete="address-line2" id="delievery-address" placeholder="Street Address Line 2">
</div>
<div class="cityAddress">
<input type="text" autocomplete="street-address" id="city-order" placeholder="City" required>
<input type="text" autocomplete="state" id="city-order" placeholder="Region/State">
</div>
<div class="postalcode">
<input type="text" autocomplete="postal-code" id="zip-code" placeholder="Postal/Zip Code">
<input list="Country-order" placeholder="Country" id="zip-code" required />
<datalist id="Country-order">
<option value="Nigeria "></option>
<option value="USA "></option>
<option value="Canada "></option>
<option value="Switzerland"></option>
<option value="Denmark"></option>
<option value="UK"></option>
<option value="Other"></option>
</datalist>
</div>
<!-- For the foods in ordering -->
<div class="foodNamestoOrder">
<div class="food-1Order">
<input type="checkbox" name="" id="">
<img src="images/okro soup main.png" alt="" class="okro-order-food">
<div class="orderTexts">
<p>Okro Soup</p>
<p><i class="fa-solid fa-naira-sign">2, 500</i></p>
<p>
<label for="QuantityOf-Foods">Quantity</label> <br>
<input type="number">
</p>
</div>
</div>
<!-- Food order 2 -->
<div class="food-2Order">
<input type="checkbox" name="" id="">
<img src="images/egusi 2.png" alt="" class="okro-order-food">
<div class="orderTexts">
<p>Egusi Soup</p>
<p><i class="fa-solid fa-naira-sign">3, 500</i></p>
<p>
<label for="QuantityOf-Foods">Quantity</label> <br>
<input type="number">
</p>
</div>
</div>
<!-- Food order 3 -->
<div class="food-3Order">
<input type="checkbox" name="" id="">
<img src="images/egg sauce 3.png" alt="" class="okro-order-food">
<div class="orderTexts">
<p>Egg Sauce</p>
<p><i class="fa-solid fa-naira-sign">5, 000</i></p>
<p>
<label for="QuantityOf-Foods">Quantity</label> <br>
<input type="number">
</p>
</div>
</div>
<!-- Food order 4 -->
<div class="food-4Order">
<input type="checkbox" name="" id="">
<img src="images/fried rice 2.png" alt="" class="okro-order-food">
<div class="orderTexts">
<p>Fried Rice</p>
<p><i class="fa-solid fa-naira-sign">2, 500</i></p>
<p>
<label for="QuantityOf-Foods">Quantity</label> <br>
<input type="number">
</p>
</div>
</div>
</div>
<div class="sub">
<button type="submit" class="submit">Make Order</button>
</div>
</form>
</div>
</div>
<!-- carousel -->
<div class="carouselContainer">
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1" id="carouselButtonHome"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"
id="carouselButtonHome"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"
id="carouselButtonHome"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<h2>La Hot <br> Fast Food Restaurant</h2>
<p>
WELCOME.... Explore the beauty and serene arena of our reataurant.. <br> We offer the best sales and
affordable foods in Nigeria.
This is a place to call your home. <br> As a Nigerian based reaturant, we are happy to let you taste the
sweet aroma of our food.
</p>
<button class="orderBtn" >
Order Online
</button>
</div>
<div class="carousel-item">
<h2>La Hot <br> Fast Food Restaurant</h2>
<p>
WELCOME.... Explore the beauty and serene arena of our reataurant.. <br> We offer the best sales and
affordable foods in Nigeria.
This is a place to call your home. <br> As a Nigerian based reaturant, we are happy to let you taste the
sweet aroma of our food.
</p>
<button class="orderBtn" >
Order Online
</button>
</div>
<div class="carousel-item">
<h2>La Hot <br> Fast Food Restaurant</h2>
<p>
WELCOME.... Explore the beauty and serene arena of our reataurant.. <br> We offer the best sales and
affordable foods in Nigeria.
This is a place to call your home. <br> As a Nigerian based reaturant, we are happy to let you taste the
sweet aroma of our food.
</p>
<button class="orderBtn" >
Order Online
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Our Menu Section -->
<section id="menu" onclick="closeOrderBox()">
<h2 class="titleHeadre">Our Menu</h2>
<div class="foodsContent">
<button id="forAllFoods">All</button>
<button id="EgusiBtn">Egusi Soup</button>
<button id="OkroBtn">Okro Soup</button>
<button id="AmalaBtn">Amala & Ewedu Meal</button>
<button id="MeatPieBtn">Meat Pie</button>
<button id="FRiedRiceBtn">Fried Rice</button>
<button id="EggSauceBtn">Egg Sauce</button>
</div>
<div class="foodNames">
<!-- for all the foods container -->
<!-- This container contains all the availabel foods -->
<div class="AllFoods">
<div class="cardsforFood">
<div class="foodcard1">
<div class="cardup">
<img src="images/fried rice 2.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Fried Rice</h3>
<p>Dont miss the blessed taste of our Fried Rice <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">2, 500</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food 2 -->
<div class="foodcard2">
<div class="cardup">
<img src="images/okro soup 4.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Okro Soup</h3>
<p>Dont miss the blessed taste of our Okro<br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">4, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food 3 -->
<div class="foodcard3">
<div class="cardup">
<img src="images/egusi 1.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Egusi Soup</h3>
<p>Dont miss the blessed taste of our Egusi Soup <br> A food you are not going to compare with another
</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">3, 500</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food 4 -->
<div class="foodcard4">
<div class="cardup">
<img src="images/egusi 2.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Egusi Soup</h3>
<p>Dont miss the blessed taste of our Egusi Soup <br> A food you are not going to compare with another
</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">3, 500</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food 5 -->
<div class="foodcard5">
<div class="cardup">
<img src="images/egg sauce 1.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Egg Sauce</h3>
<p>Dont miss the blessed taste of our Egg Sauce <br> A food you are not going to compare with another
</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">5, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food 6 -->
<div class="foodcard7">
<div class="cardup">
<img src="images/egg sauce 3.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Egg Sauce</h3>
<p>Dont miss the blessed taste of our Egg Sauce <br> A food you are not going to compare with another
</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">5, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food 7 -->
<div class="foodcard7">
<div class="cardup">
<img src="images/meat pie 1.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Meat Pie</h3>
<p>Dont miss the blessed taste of our Meat Pie <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">1, 950</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food 8 -->
<div class="foodcard8">
<div class="cardup">
<img src="images/dry meats bg.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Dry Meat</h3>
<p>Dont miss the blessed taste of our Dry Meat <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">2, 400</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food card 9 -->
<div class="foodcard9">
<div class="cardup">
<img src="images/bg1.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Chicken Jollof Rice</h3>
<p>Dont miss the blessed taste of our Chicken Jollof Rice <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">7, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food card 10 -->
<div class="foodcard10">
<div class="cardup">
<img src="images/bg2.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Macaroni Pasta</h3>
<p>Dont miss the blessed taste of our Macaroni Pasta <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">9, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food card 11 -->
<div class="foodcard11">
<div class="cardup">
<img src="images/okro soup 2.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Okro Soup</h3>
<p>Dont miss the blessed taste of our Chicken Okro Soup <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">4, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- food card 12 -->
<div class="foodcard12">
<div class="cardup">
<img src="images/amala and ewedu 2.png" alt="">
</div>
<div class="cardDown">
<h3>Delicious Amala & Ewedu Soup</h3>
<p>Dont miss the blessed taste of our Amala & Ewedu Soup <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">2, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
</div>
</div>
<!-- container for Egusi Soup -->
<div class="EgusiSoupSection">
<div class="Egusi1">
<div class="cardupEgusi">
<img src="images//egusi 3.png" alt="">
</div>
<div class="cardDownEgusi">
<h3>Delicious Naija Egusi Soup</h3>
<p>Dont miss the blessed taste of our Egusi Soup <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">3, 500</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- For the second soup -->
<div class="Egusi2">
<div class="cardupEgusi">
<img src="images/egusi 1.png" alt="">
</div>
<div class="cardDownEgusi">
<h3>Delicious Naija Egusi Soup</h3>
<p>Dont miss the blessed taste of our Egusi Soup <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">3, 500</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for thr third Egusi -->
<div class="Egusi3">
<div class="cardupEgusi">
<img src="images/egusi 2.png" alt="">
</div>
<div class="cardDownEgusi">
<h3>Delicious Naija Egusi Soup</h3>
<p>Dont miss the blessed taste of our Egusi Soup <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">3, 500</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
</div>
<!-- Container for Okro Soup -->
<div class="okroSoupSection">
<div class="Okro1">
<div class="cardupOkro">
<img src="images/okro soup 5.png" alt="">
</div>
<div class="cardDownOkro">
<h3>Delicious Naija Okro Soup</h3>
<p>Dont miss the blessed taste of our Okro Soup <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">4, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the second okro soup -->
<div class="Okro2">
<div class="cardupOkro">
<img src="images/okro soup 2.png" alt="">
</div>
<div class="cardDownOkro">
<h3>Delicious Naija Okro Soup</h3>
<p>Dont miss the blessed taste of our Okro Soup <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">4, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the third okro soup -->
<div class="Okro3">
<div class="cardupOkro">
<img src="images/okro soup 1.png" alt="">
</div>
<div class="cardDownOkro">
<h3>Delicious Naija Okro Soup</h3>
<p>Dont miss the blessed taste of our Okro Soup <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">4, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the 4th Okro Soup -->
<div class="Okro4">
<div class="cardupOkro">
<img src="images/okro soup main.png" alt="">
</div>
<div class="cardDownOkro">
<h3>Delicious Naija Okro Soup</h3>
<p>Dont miss the blessed taste of our Okro Soup <br> A food you are not going to compare with another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">4, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
</div>
<!-- Container for Amala & Ewedu Food Section -->
<div class="AmalaFoodsSection">
<div class="Amala1">
<div class="cardupAmala">
<img src="images/amala and ewedu 2.png" alt="">
</div>
<div class="cardDownAmala">
<h3>Delicious Naija Amala & Ewedu Meal</h3>
<p>Dont miss the blessed taste of our Amala & Ewedu Meal <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">2, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- For the 2nd Amala & Ewedu Food -->
<div class="Amala2">
<div class="cardupAmala">
<img src="images/amala and ewedu 1.png" alt="">
</div>
<div class="cardDownAmala">
<h3>Delicious Naija Amala & Ewedu Meal</h3>
<p>Dont miss the blessed taste of our Amala & Ewedu Meal <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">2, 700</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
</div>
<!-- Container for Meat Pie Section -->
<div class="MeatPieFoods">
<div class="MeatPie1">
<div class="cardupMeatPie">
<img src="images//meat pie 3.png" alt="">
</div>
<div class="cardDowMeatPie">
<h3>Delicious Naija Meat Pie</h3>
<p>Dont miss the blessed taste of our Meat Pie <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">1, 950</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the second Meat Pie -->
<div class="MeatPie2">
<div class="cardupMeatPie">
<img src="images//meat pie 1.png" alt="">
</div>
<div class="cardDowMeatPie">
<h3>Delicious Naija Meat Pie</h3>
<p>Dont miss the blessed taste of our Meat Pie <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">1, 950</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the 3rd Meat Pie -->
<div class="MeatPie3">
<div class="cardupMeatPie">
<img src="images//meat pie 2.png" alt="">
</div>
<div class="cardDowMeatPie">
<h3>Delicious Naija Meat Pie</h3>
<p>Dont miss the blessed taste of our Meat Pie <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">1, 950</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
</div>
<!-- Container for Fried Rice Section -->
<div class="friedRiceSection">
<div class="FriedRice1">
<div class="cardupFriedRice">
<img src="images/fried rice 1.png" alt="">
</div>
<div class="cardDowFriedRice">
<h3>Delicious Naija Fried Rice</h3>
<p>Dont miss the blessed taste of our Fried Rice <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign" id="price1">2500</i>
<i class="fa-solid fa-cart-plus" id="calculateRice1"></i>
</div>
</div>
</div>
<!-- for the 2nd fried rice food -->
<div class="FriedRice2">
<div class="cardupFriedRice">
<img src="images/fried rice 2.png" alt="">
</div>
<div class="cardDowFriedRice">
<h3>Delicious Naija Fried Rice</h3>
<p>Dont miss the blessed taste of our Fried Rice <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign" id="price2">2500</i>
<i class="fa-solid fa-cart-plus" id="calculateRice2"></i>
</div>
</div>
</div>
<!-- for the 3rd fried rice food -->
<div class="FriedRice3">
<div class="cardupFriedRice">
<img src="images/fried rice 3.png" alt="">
</div>
<div class="cardDowFriedRice">
<h3>Delicious Naija Fried Rice</h3>
<p>Dont miss the blessed taste of our Fried Rice <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign" id="price3">2500</i>
<i class="fa-solid fa-cart-plus" id="calculateRice3"></i>
</div>
</div>
</div>
</div>
<!-- Container for Egg sauce -->
<div class="eggSauceContainer">
<div class="EggSauce1">
<div class="cardupEggSauce">
<img src="images/sauce bg egg.png" alt="">
</div>
<div class="cardDowEggSauce">
<h3>Delicious Naija Egg Sauce</h3>
<p>Dont miss the blessed taste of our Egg Sauce <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">5, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the 2nd egg sauce food -->
<div class="EggSauce2">
<div class="cardupEggSauce">
<img src="images/egg sauce 1.png" alt="">
</div>
<div class="cardDowEggSauce">
<h3>Delicious Naija Egg Sauce</h3>
<p>Dont miss the blessed taste of our Egg Sauce <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">5, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the 3rd Egg Suace -->
<div class="EggSauce3">
<div class="cardupEggSauce">
<img src="images/egg sauce 3.png" alt="">
</div>
<div class="cardDowEggSauce">
<h3>Delicious Naija Egg Sauce</h3>
<p>Dont miss the blessed taste of our Egg Sauce <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">5, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the 4th Egg Sauce -->
<div class="EggSauce4">
<div class="cardupEggSauce">
<img src="images/egg sauce 4.png" alt="">
</div>
<div class="cardDowEggSauce">
<h3>Delicious Naija Egg Sauce</h3>
<p>Dont miss the blessed taste of our Egg Sauce <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">5, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
<!-- for the 5th Egg Sauce -->
<div class="EggSauce5">
<div class="cardupEggSauce">
<img src="images/egg sauce 5.png" alt="">
</div>
<div class="cardDowEggSauce">
<h3>Delicious Naija Egg Sauce</h3>
<p>Dont miss the blessed taste of our Egg Sauce <br> A food you are not going to compare with
another</p>
<div class="inner">
<i class="fa-solid fa-naira-sign">5, 000</i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<!-- for the about us Container -->
<div class="aboutContainerr">
<!-- container for the image on the about -->
<div class="aboutImg">
<img src="images/sauce bg egg.png" alt="">
</div>
<!-- container for the About us Text -->
<div class="aboutText">
<h2 class="aboutHeader">We Are La-Hot</h2>
<p class="aboutInfoText">
"Welcome to La-Hot Restaurant <strong>'Nigerian best Restaurant'</strong> where culinary excellence meets a
warm and inviting atmosphere.
Discover a symphony of flavors, crafted with passion and precision, in a warm and inviting ambiance. From
delectable appetizers to
mouthwatering entrees and decadent desserts, our menu celebrates culinary excellence. Join us for a
memorable dining experience,
where every bite tells a story. Explore our menu, reserve your table, and savor the moment at La-Hot
Restaurant.
Whether you're seeking a romantic dinner, a lively family gathering, or a memorable celebration, our
restaurant promises to delight your
senses and create lasting memories.
Our story began with a dream to provide a place where friends and family could gather over exceptional food
and drinks. We've carefully
curated a menu that blends traditional and
contemporary flavors, resulting in a dining experience that transcends the ordinary.
Join us for a gastronomic journey that combines impeccable service with a passion for exceptional food."
</p>
</div>
</div>
</section>
<!-- Book A Table Section -->
<section id="bookTable" onclick="closeOrderBox()">
<!-- bookingHeader -->
<h2 class="bookingHeader">Reserve A Table Now</h2>
<div class="formBookingTable">
<form action="" method="post" autocomplete="on">
<!-- for name input field -->
<div class="nameFied">
<label for="YourName"></label>
<input type="text" id="YourName" placeholder="Your Name" autocomplete="name" autocapitalize="name"
required>
</div>
<!-- for phone number input field -->
<div class="numberFied">
<label for="YourNumber"></label>
<input type="tel" id="YourNumber" placeholder="Phone Number" autocomplete="tel" maxlength="15" required>
</div>
<!-- for email input field -->
<div class="emailFied">
<label for="YourEmail"></label>
<input type="text" id="YourEmail" placeholder="Your Email" autocomplete="email" required>
</div>
<!-- For booking the number of persons fieled -->
<div class="tableNumberFieled">
<input list="book-now" placeholder="How Many People?" required />
<datalist id="book-now">
<option value="1"></option>
<option value="3"></option>
<option value="4"></option>
<option value="7"></option>
<option value="8"></option>
<option value="10"></option>
</datalist>
</div>
<!-- for the date of booking -->
<div class="bookingdateFieled">
<label for="dateOfBooking"></label>
<input type="datetime-local" id="dateOfBooking" required>
</div>
<!-- Booking Button -->
<button type="submit" id="BookingBtn">
Book Now
</button>
</form>
</div>
</section>
<!-- What Our Customer's say Section -->
<section id="customers">
<h2 class="customerHeader">See What Our Customer's Are Saying</h2>
<div class="customerContainer">
<!-- For the carousel cintainer -->
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1" id="hideCarousel"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"
id="hideCarousel"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"
id="hideCarousel"></button>
</div>
<div class="carousel-inner">
<!-- for the first carousel item -->
<div class="carousel-item active">
<div class="customerCommentsContainer">
<p class="customerMsg">
"An evening at La-Hot is a sensory symphony of flavors, elegance, and hospitality. From the moment you
step through the door, you're
transported to a world of culinary delight. The menu is a culinary masterpiece,
a carefully orchestrated fusion of innovation and tradition. <br>
<i class="fa-solid fa-star fa-beat"></i><i class="fa-solid fa-star fa-beat"></i>
<i class="fa-solid fa-star fa-beat"></i><i class="fa-solid fa-star fa-beat"></i>
<i class="fa-solid fa-star fa-beat"></i>
<aside>
<strong>Miracle Chibuike</strong> <br> <i class="fa-solid fa-location-dot fa-beat-fade"></i> Owerri,
Nigeria
</aside>
</p>
</div>
<i class="fa-solid fa-caret-up"></i>
<img src="images/miracles image.jpg" alt="..." id="customerImg1">
</div>
<!-- for the 2nd carousel Item -->
<div class="carousel-item">
<div class="customerCommentsContainer2">
<p class="customerMsg">
"An evening at La-Hot is a sensory symphony of flavors, elegance, and hospitality. From the moment you
step through the door, you're
transported to a world of culinary delight. The menu is a culinary masterpiece,
a carefully orchestrated fusion of innovation and tradition. <br>
<i class="fa-solid fa-star fa-beat"></i><i class="fa-solid fa-star fa-beat"></i>
<i class="fa-solid fa-star fa-beat"></i><i class="fa-solid fa-star fa-beat"></i>
<i class="fa-solid fa-star fa-beat"></i>
<aside>
<strong>Miracle Chibuike</strong> <br> <i class="fa-solid fa-location-dot fa-beat-fade"></i> Owerri,
Nigeria
</aside>
</p>
</div>
<i class="fa-solid fa-caret-up"></i>
<img src="images/mira2.jpg" alt="..." id="customerImg2">
</div>
<!-- for the 3rd carousel item -->
<div class="carousel-item">
<div class="customerCommentsContainer3">
<p class="customerMsg">
"An evening at La-Hot is a sensory symphony of flavors, elegance, and hospitality. From the moment you
step through the door, you're
transported to a world of culinary delight. The menu is a culinary masterpiece,
a carefully orchestrated fusion of innovation and tradition. <br>
<i class="fa-solid fa-star fa-beat"></i><i class="fa-solid fa-star fa-beat"></i>
<i class="fa-solid fa-star fa-beat"></i><i class="fa-solid fa-star fa-beat"></i>
<i class="fa-solid fa-star fa-beat"></i>
<aside>
<strong>Miracle Chibuike</strong> <br> <i class="fa-solid fa-location-dot fa-beat-fade"></i> Owerri,
Nigeria
</aside>
</p>
</div>
<i class="fa-solid fa-caret-up"></i>
<img src="images/miracles image.jpg" alt="..." id="customerImg3">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Footer Section -->
<section id="Footer">
<!-- This Div is going to be divided in 3 sections -->
<!-- for the parent Footer-Outer container -->
<div class="parentFooter">
<!-- Container For Contact Us -->
<div class="contactUsContainer">
<h2 class="contactHeader">Let's Get In Touch</h2>
<!-- for location -->
<p>
<i class="fa-solid fa-location-dot"></i>
Owerri, Imo State Nigeria
</p>
<!-- for phone contact -->
<p>
<i class="fa-solid fa-phone-volume fa-shake"></i>
<a href="tel:+2349056255572">Call +234 905-625-5572</a>
</p>
<!-- for email contact -->
<p>
<i class="fa-solid fa-envelope"></i>
<a href="mailto:lahotfastfoodng@gmail.com">lahotfastfood@gmail.com</a>
</p>
</div>
<!-- Container For Retaurant Info -->
<div class="laHotContainer">
<h2 class="lahotHeadre">La-Hot</h2>
<p class="lahotText">
"In the heart of Owerri, Imo, a culinary journey was born. <br> La-Hot, established in 2002, has a rich
history
of delighting palates <br> and creating cherished memories. <br> What began as a humble endeavor by
<strong>Onyia Miracle Chibuike</strong> <br> soon evolved into
a gastronomic destination renowned <br> for its commitment to quality and innovation."
</p>
</div>
<!-- Container for Opening Hours -->
<div class="openingHoursContainer">
<h2 class="hoursHeadre">Opening Hours</h2>
<p><strong>Monday to Friday</strong>
<aside>
8:00 Am - 8:30 Pm
</aside>
</p>
<p>
<strong>Sundays </strong>
<aside>
2:00 Pm - 7:30 Pm
</aside>
</p>
</div>
</div>
<!-- For the Social Media Icons -->
<div class="socilaMediaContacts">
<!-- LiinkedIn icon-->
<a href="http://www.linkedin.com/in/onyia-miracle-b582b4237/"><i class="fa-brands fa-linkedin-in"></i></a>
<!-- for facebook icon-->
<i class="fa-brands fa-facebook-f"></i>
<!-- for Instagram icon-->
<i class="fa-brands fa-instagram"></i>