-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2087 lines (1987 loc) · 102 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Foody's</title>
<link rel="desktop favicon icon" href="./assets/icons/bick-2.png">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./src/css/styles.css">
<link rel="stylesheet" href="./src/css/bottom-nav.css">
<link rel="stylesheet" href="./src/css/chat.css">
<link rel="stylesheet" href="./src/css/filter.css">
<link rel="stylesheet" href="./src/css/item-hover.css">
<link rel="stylesheet" href="./src/css/socialMedia.css">
<link rel="stylesheet" href="./src/css/multislider.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./src/slick/slick.css">
<link rel="stylesheet" type="text/css" href="./src/slick/slick-theme.css">
<style>
#aug{
text-align: center;
font-family: sans-serif;
background: linear-gradient(to bottom, #ff4902 10%, #fff 50%, #036d32 80%);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.slick-slide {
margin: 0px 20px;
}
.slick-slide img {
width: 100%;
}
.slick-prev:before,
.slick-next:before {
color: #09ae25;
background-color: #fff;
}
</style>
</head>
<body onload="disableLoader()" style="background: #f3f7f8;">
<!-- preloder start -->
<div id="loading">
<div class="container text-center" id="loading-center">
<noscript>
<h1>!</h1> <h3><mark> Sorry ! Your Browser dose't support javascript</mark></h3>
<br>
</noscript>
<img src="./assets/icons/bick-2.png" alt="">
<h1 class="text-center mt-2">Welcome to Foody's Restaurants</h1>
<h4 class="text-center">Please Wait Page is loading</h4>
<div class="spinner-grow text-warning" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-primary" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-danger" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</div>
<!-- preloder end -->
<!-- filter section start -->
<div class="filter-price">
<img src="./assets/icons/filter.png" id="pf1" class="img-fluid" title="Filter" onclick="openfilter()">
</div>
<div id="myfilter" class="myfilter">
<a href="javascript:void(0)" class="close-filter-btn" id=""onclick="closefilter()">×</a>
<h4 class="text-center">filter</h4>
<hr class="style-hr">
<!-- <a href="#">About</a>
<a href="#">Services</a>
<a href="#">Clients</a>
<a href="#">Contact</a> -->
</div>
<!-- filter section end -->
<!-- sticky sicial media icon bar start -->
<div class="icon-bar" id="icon-bar-1">
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="#" class="youtube"><i class="fa fa-youtube"></i></a>
</div>
<!-- sticky sicial media icon bar end -->
<!-- Back to top area start -->
<div class="container mt-5 pt-5" id="back-to-top-1">
<div class="row">
<div class="col-6 col-md-3 mx-auto">
<div class="row">
<div class="col-md-4 col-2">
<button class="btn btn-light text-primary" onclick="topFunction()" id="g2t">Back to top....
<img src="./assets/icons/up.png" alt=""></button>
</div>
<div class="col-1 mx-auto">
<button class="btn btn-light text-primary" onclick="showSearchBar()" id="ssb2">
<img src="./assets/icons/search.png" class="img-fluid"></button>
</div>
</div>
</div>
</div>
</div>
<!-- Back to top area end -->
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header" style="background-color: rgb(5, 5, 5);">
<!-- <h1>Best Offer For Your</h1> -->
<h1 id="aug">15 AUGUST OFFER'S</h1>
<span class="close">×</span>
</div>
<div class="modal-body" style="background-color: rgb(5, 5, 5);">
<div class="row">
<div class="col-10 mx-auto">
<img class="card-img-top" id="popup-ad" src="./assets/food-img/popupadd1.jpg" style="height: 500px; width:100%;" alt="Card image">
</div>
</div>
</div>
<!-- Modal Footer area -->
<a href="#section1" class="btn btn-primary noThanks">Order Now</a>
<a class="btn btn-warning noThanks">No Thanks</a>
</div>
</div>
<!-- header section start -->
<header>
<!-- navbar section start -->
<nav class="navbar navbar-expand-lg fixed-top style-nav">
<div class="dropdown">
<a class="navbar-brand style-foody-color" href="#">
<span class="h4 style-foody-h1">Foody's</span>
</a>
<div class="dropdown-content">
<div class="h6 desc">Foody's Restaurant</div>
<div id="info">
<p>
All Kind Of Bengali, Chinnies, Beriany
Food
</p>
</div>
</div>
</div>
<!-- horizontal navbar with collapse start -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<li class="nav-item style-nav-hor-li">
<a class="nav-link h5" href="#" onclick="getLocation()">Location</a>
</li>
<li class="nav-item style-nav-hor-li">
<!-- <a class="nav-link h5" href="#">Delivary Date & Time</a> -->
<div class="dropdown">
<!-- <button type="button" class="btn border dropdown-toggle" data-toggle="dropdown">
Delivary Date & Time
</button> -->
<a class="nav-link h5 dropdown-toggle" data-toggle="dropdown" href="#">Delivary Date & Time</a>
<div class="dropdown-menu">
Time <input type="time">
<br>
Date <input type="date">
</div>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle h5" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Food's Menu
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Indian Food</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#IB">Biryani</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#IB">Mutton Biryani</a></li>
<li><a class="dropdown-item" href="#IB">Chicken Biryani</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Roll</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Egg Roll</a></li>
<li><a class="dropdown-item" href="#">Chicken Roll</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Fish</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Kerela Fish</a></li>
<li><a class="dropdown-item" href="#">Hilsa Fish</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Samosa</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Vag Samosa</a></li>
<li><a class="dropdown-item" href="#">Chicken Samosa</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Polow Rice</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Polow Rice Plain</a></li>
<li><a class="dropdown-item" href="#">Chicken Samosa Special</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Chicken Kasha</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Chicken Kasha</a></li>
<li><a class="dropdown-item" href="#">Butter Chicken Kasha</a></li>
</ul>
</li>
</ul>
</li>
<!-- -->
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Chinese Food</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Mix Chowmein</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Mix Chowmein Normal</a></li>
<li><a class="dropdown-item" href="#">Mix Chowmein Special</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Chili Chicken</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Chili Chicken Norma</a></li>
<li><a class="dropdown-item" href="#">Chili Chicken Special</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Mix Fried Rice</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Mix Fried Rice Norma</a></li>
<li><a class="dropdown-item" href="#">Mix Fried Rice Special</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Momo</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Chicken Momo</a></li>
<li><a class="dropdown-item" href="#">Veg Momo</a></li>
</ul>
</li>
</ul>
</li>
<!-- -->
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Fast Food</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Subsubmenu</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Subsubmenu action</a></li>
<li><a class="dropdown-item" href="#">Another subsubmenu action</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Dessert Sweet <span class="badge badge-danger">10% OFF</span></a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Subsubmenu</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Subsubmenu action</a></li>
<li><a class="dropdown-item" href="#">Another subsubmenu action</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Drinks <span class="badge badge-danger">50% OFF</span></a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Subsubmenu</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Subsubmenu action</a></li>
<li><a class="dropdown-item" href="#">Another subsubmenu action</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav-item style-nav-hor-li">
<a class="nav-link h5" href="./src/pages/TableBook/TableBooking.html">TableBook<sup class="bg-danger text-light">New</sup></a>
</li>
</ul>
</div>
<!-- horizontal navbar with collapse end -->
<!-- Sign-in Section Start -->
<button class="btn text-primary font-weight-bold" onclick="document.getElementById('id01').style.display='block'" style="width:auto;">
Sign-in</button>
<div id="id01" class="modallogin">
<form class="modal-content animate" action="/action_page.php" style="background: rgb(50, 156, 255);">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="closelogin" title="Close Modal">×</span>
<!-- <img src="./assets/icons/user-id.png" alt="Avatar" class="avatar"> -->
<h1 class="text-light">Sign-in</h1>
</div>
<div class="containerlog">
<label for="mob"><b>Mobile No</b></label>
<input type="text" placeholder="Enter mobile no (ex: +91 1234 567891)" name="uname" id="mob" required>
<label for="pwd"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" id="pwd" required>
<p id="text">WARNING! Caps lock is ON.</p>
<input type="checkbox" onclick="showpassword()"> Show Password
<button type="submit" id="loginbtn">Login</button>
<label>
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<p class="text-center">
<br>
<span>New in This side, <a href="./src/pages/sign-up/register.html"> Register Your self & Sign-up</a></span>
<br><br>
<span>Forgot <a href="./src/pages/ForgetPassword/ForgetPassword.html">password?</a></span>
</p>
</div>
</form>
</div>
<!-- Sign-in Section end -->
<div class="dropdown1">
<img src="./assets/icons/blue-shopping-cart-48.png" class="dropbtn" onclick="onCartClick()" >
<span class="badge1">0</span>
<div class="container">
<div id="myDropdown" class="dropdown1-content">
<table class="text-center table table-bordered">
<thead>
<tr>
<th>Item No</th>
<th>Item Name</th>
<th>Item Quantati</th>
<th>Item Price (₹)</th>
<th>Edit Item</th>
</tr>
</thead>
<tbody id="myTable"></tbody>
</table>
<a href="./src/pages/checkout/checkout.html" class="btn btn-outline-success btn-primary text-light">Payment to Contanue
<i class="fa fa-angle-double-right" style="font-size: 10pt"></i>
</a>
</div>
</div>
</div>
<!-- shopping cart area end -->
<!-- horizontal secach bar end -->
<!-- horizontal menu icon start -->
<div class="dropdown">
<span class="mr-5 style-menu-icon" onclick="openNav()">☰</span>
<div class="dropdown-content-menu-icon">
<div class="h6 desc style-hover-menu-icon">Menu</div>
</div>
</div>
<!-- horizontal menu icon end -->
<!-- vertical menu bar start -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a class="navbar-brand style-foody-color" href="#">
<h4 class="style-foody-h1-2">Foody's Menu</h4>
</a>
<hr class="style-hr">
<a href="index.html" class="style-sidenav-a"><img src="./assets/icons/home.png" class="style-menu-item-icon">
Home</a>
<a href="./src/pages/TableBook/TableBooking.html" class="style-sidenav-a"><img src="./assets/icons/Grill.png" class="style-menu-item-icon">
Table Book</a>
<a href="./src/pages/services/services.html" class="style-sidenav-a"><img src="./assets/icons/waiter.png" class="style-menu-item-icon">
Services</a>
<a href="./src/pages/gallery/gallery.html" class="style-sidenav-a"><img src="./assets/icons/gallery.png" class="style-menu-item-icon">
Gallery</a>
<hr class="style-hr">
<a href="./src/pages/AboutUs/Aboutus.html" class="style-sidenav-a"><img src="./assets/icons/about-us.png" class="style-menu-item-icon">
About Us</a>
<a href="./src/pages/contactus/contact.html" class="style-sidenav-a"><img src="./assets/icons/contact-us.png" class="style-menu-item-icon">
Contact Us</a>
<a href="./src/pages/MessageUs/MessageUs.html" class="style-sidenav-a"><img src="./assets/icons/message.png" class="style-menu-item-icon">
Message Us</a>
<hr class="style-hr">
<a href="#" class="style-sidenav-a"><img src="./assets/icons/setting.png" class="style-menu-item-icon">
Setting</a>
<a href="#" class="style-sidenav-a" onclick="document.getElementById('id01').style.display='block'">
<img src="./assets/icons/Sign-in.png" class="style-menu-item-icon">
Sign-in</a>
<br>
<span id="output"></span>
</div>
<!-- vertical menu bar end -->
</nav>
<!-- nevbar section end -->
<!-- Search Bar start -->
<div class="container-fluid bg-ligh search-hr-fixer" id="search-bar-off">
<div class="container">
<div class="input-group">
<input type="search" class="form-control dropdown-toggle" placeholder="Search Foods..."
id="searchfilter" aria-label="Text input with segmented dropdown button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<br>
<div class="dropdown-menu">
<ul class="list-group" id="myList">
<li class="list-group-item"><a class="dropdown-item" href="#section1">Best Offer's</a></li>
<li class="list-group-item"><a class="dropdown-item" href="#section2">Indian Food</a></li>
<li class="list-group-item"><a class="dropdown-item" href="#section3">Chinese Food</a></li>
<li class="list-group-item"><a class="dropdown-item" href="#section4">Fast Food</a></li>
<li class="list-group-item"><a class="dropdown-item" href="#section5">Dessert Sweet</a></li>
<li class="list-group-item"><a class="dropdown-item" href="#section6">Drinks</a></li>
</ul>
</div>
<div class="input-group-append">
<!-- <button class="btn btn-primary">Search</button> -->
<input class="btn btn-primary" type="submit" value="Search" id="find" onclick="find()">
<button class="btn btn-outline-warning dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="sr-only">Toggle Dropdown</span>
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#section1">Best Offer's</a>
<a class="dropdown-item" href="#section2">Indian Food</a>
<a class="dropdown-item" href="#section3">Chinese Food</a>
<a class="dropdown-item" href="#section4">Fast Food</a>
<div role="separator" class="dropdown-divider"></div>
<a class="dropdown-item" href="#section5">Dessert Sweet</a>
<a class="dropdown-item" href="#section6">Drinks</a>
</div>
</div>
</div>
</div>
</div>
<!-- Search Bar end -->
<!-- add video start -->
<section class="video-ad-mt">
<div class="container-fluid mt-md-4 mt-sm-5 mt-5">
<button class="btn style-add-btn">Ad</button>
<div class="row pb-0">
<div class="col-lg-3 col-md-3 col-12 mx-auto style-header-add-video-1">
<video class="style-header-add-video" autoplay loop muted>
<source src="./assets/videos/PizzaHuts.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="col-lg-3 col-md-3 col-12 mx-auto style-header-add-video-2">
<video class="style-header-add-video" autoplay loop muted>
<source src="./assets/videos/KFC.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="col-lg-3 col-md-3 col-12 mx-auto style-header-add-video-3">
<video class="style-header-add-video" autoplay loop muted>
<source src="./assets/videos/McDonald's.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</section>
<!-- add video end -->
</header>
<!-- header section end -->
<main>
<!-- best offer for you start -->
<section id="section1" class="pt-0" style="padding-top:30px;">
<div class="container-fluid style-offer-zone">
<div class="pt-5 pb-2 style-offer-zone-text">
<h1 class="style-offer-h1">Best Offer's For You</h1>
</div>
<!-- Timer Coundown start -->
<div class="timer-wrap">
<i class="time">04:1:2</i>
<div class="timer">
<span>0</span> : <span>0</span> : <span>0</span>
</div>
</div>
<!-- Timer Coundown end -->
<h2 class="pt-3 px-auto pb-5 style-offer-price-off">😍 All Item ₹
<span class="style-offer-span-1">20 % Off</span> hurry ! 😍</h2>
<div>
<div class="row style-offer-img-area">
<!-- No 1 -->
<div class="col-lg-3 col-md-4 col-12">
<img class="card-img-top style-offer-img2 img-zoom" src="./assets/food-img/1.png" alt="Card image">
<h6 class="pt-3 text-center style-offer-price">Price ₹ <span class="style-offer-span-1">20 %
Off</span> </h6>
<h5 class="pt-1 text-center style-offer-price"><span class="style-offer-span">Price </span>
<del class="h4 text-secondary">₹ 599</del> ₹ 399 </h5>
<p class="text-center">
<span class="text-light heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
<small class="text-dark text-center details">Details</small>
</p>
<button class="btn btn-warning style-offer-btn" data-toggle="modal" data-target="#myModalKFC"
onclick="clickToAdd()">
Order now</button>
<hr class="style-offer-hr">
</div>
<!-- No 2 -->
<div class="col-lg-3 col-md-4 col-12">
<img class="card-img-top style-offer-img img-zoom" src="./assets/food-img/2.png" alt="Card image">
<h6 class="pt-3 text-center style-offer-price">Price ₹<span class="style-offer-span-1"> 20 %
Off</span> </h6>
<h5 class="pt-1 text-center style-offer-price"><span class="style-offer-span">Price </span>
<del class="h4 text-secondary">₹ 120</del> ₹ 99 </h5>
<p class="text-center">
<span class="text-light heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
<small class="text-dark text-center details">Details</small>
</p>
<button class="btn btn-warning style-offer-btn" data-toggle="modal" data-target="#myModalBG"
onclick="clickToAdd()">
Order now</button>
<hr class="style-offer-hr">
</div>
<!-- No 4 -->
<div class="col-lg-3 col-md-4 col-12 pt-md-0 pt-5">
<img class="card-img-top style-offer-img1 img-zoom" src="./assets/food-img/4.png" alt="Card image">
<h6 class="pt-3 text-center style-offer-price">Price ₹ <span class="style-offer-span-1">20 %
Off</span> </h6>
<h5 class="pt-1 text-center style-offer-price"><span class="style-offer-span">Price </span>
<del class="h4 text-secondary">₹ 40</del> ₹ 20 </h5>
<p class="text-center">
<span class="text-light heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
<small class="text-dark text-center details">Details</small>
</p>
<button class="btn btn-warning style-offer-btn"data-toggle="modal" data-target="#myModalPEP"
onclick="clickToAdd()">
Order now</button>
<hr class="style-offer-hr">
</div>
</div>
</div>
<!-- user reatind details start -->
<!-- <div class="b">
<hr style="border:3px solid #f1f1f1">
<div class="row">
<div class="side">
<div>5 star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-5"></div>
</div>
</div>
<div class="side right">
<div>150</div>
</div>
<div class="side">
<div>4 star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-4"></div>
</div>
</div>
<div class="side right">
<div>63</div>
</div>
<div class="side">
<div class="white">3 star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-3"></div>
</div>
</div>
<div class="side right">
<div class="white">15</div>
</div>
<div class="side">
<div class="white">2 star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-2"></div>
</div>
</div>
<div class="side right">
<div class="white">6</div>
</div>
<div class="side">
<div class="white">1 star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-1"></div>
</div>
</div>
<div class="side right">
<div class="white">20</div>
</div>
</div>-->
</div>
<!-- user reatind details end -->
</section>
<!-- best offer for you end -->
<!-- Bick Amination area start -->
<section class="mt-3 text-center layering">
<span class="ani-right">
<img src="./assets/icons/bick.png" alt="" class="ani-right-img">
</span>
<span class="ani-middle">
</span>
<span class="ani-left">
<img src="./assets/icons/bick-2.png" alt="" class="ani-left-img">
</span>
</section>
<!-- Bick Amination area end -->
<!-- Food Order On Call Section Start -->
<section class="bg-primary mt-3">
<article class="py-5 text-center">
<div>
<h2 class="app-text-color-black myfontclass">Foody's</h2>
<p><img src="./assets/icons/sausage-barbeque.png"></p>
<h1 class="app-text-color-black">
Give Your Food Order On Phone Call Now !
</h1>
<!-- <div class="ph-no-shake"> -->
<a href="tel:+918981112934" class="display-4 app-ph-no-color">+91 123456789</a>
<!-- </div> -->
<p>If you want to get best food... Call us now.</p>
<button class="btn app-btn-color-1">
<a href="tel:+918981112934" class="app-text-color-black">Call Now ...
<span> <i class="fa fa-phone" aria-hidden="true"></i></span>
</a>
</button>
</div>
</article>
</section>
<!-- Food Order On Call Section end -->
<!-- Indian food start -->
<section id="section2" style="padding-top:80px;">
<div class="container-fluid">
<h1 class="text-center pt-5 myfontclass style-in-food-h1">Indian Food</h1>
<hr class="w-25 mx-auto pt-5">
<div class="container mb-5">
<!-- image slider start -->
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./assets/slider-img/1.jpg" class="style-slider-img">
</div>
<div class="carousel-item">
<img src="./assets/slider-img/2.jpg" class="style-slider-img">
</div>
<div class="carousel-item">
<img src="./assets/slider-img/3.jpg" class="style-slider-img">
</div>
</div>
</div>
<!-- image slider end -->
</div>
<div class="container">
<section class="regular slider">
<div>
<!-- No 1 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2" id="IB">
<h3 class="text-center text-success myfontclass2 myfontsize">Mutton Biryani</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-1 size1" src="./assets/food-img/mutton-biryani.jpg"> <!-- img 1-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="MuttonBiryani" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 2 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Egg Roll</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-2 size1" src="./assets/food-img/maxresdefajuult.jpg"> <!-- img 2-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="EggRoll" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 3 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Kerela Fish</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-3 size1" src="./assets/food-img/KERELA.FISH.66(1).jpg"> <!-- img 3-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="KerelaFish" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 4 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Samosa</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-4 size1" src="./assets/food-img/maxresdefault.jpg"> <!-- img 4-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="Samosa" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 5 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<!-- img 5-->
<h3 class="text-center text-success myfontclass2 myfontsize">Polow Rice</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-5 size1" src="./assets/food-img/barberry-rice-saffron-chicken-su.jpg">
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="PolowRice" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 6 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Chicken Kasha</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-6 size1" src="./assets/food-img/chicken-kasha-2-640x449.jpg">
<!-- img 6-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="ChickenKasha" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
</section>
</div>
</div>
<div class="container">
<a href="./src/pages/food-type/indian.html" class="btn btn-outline-success btn-primary text-light">more itens</a>
</div>
<hr>
</section>
<!-- Indian food end -->
<!-- chinese food start -->
<section id="section3" style="padding-top:80px;">
<div class="container-fluid">
<h1 class="text-center pt-5 text-danger myfontclass">Chinese Food</h1>
<hr class="w-25 mx-auto pt-5">
<div class="container-fluid mb-5">
</div>
<div class="container">
<section class="regular slider">
<div>
<!-- No 1 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Mix Chowmein</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-1 size1" src="./assets/food-img/mixed_nonveg_noodles.jpg">
<!-- img 1-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="MixChowmein" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 2 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Chili Chicken</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-2 size1" src="./assets/food-img/maxresdefault (1).jpg"> <!-- img 2-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="ChiliChicken" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 3 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Mix Fried Rice</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-3 size1" src="./assets/food-img/Mixed-Fried-Rise-600x534.jpg">
<!-- img 3-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star non"></span>
</p>
<button id="MixFriedRice" onclick="clickToAdd()" class="btn btn-warning style-in-food-btn">
Order now</button>
</div>
</div>
<!-- </div> -->
</div>
<div>
<!-- No 4 -->
<!-- <div class="col-lg-2 col-md-3 col-sm-2 col-12"> -->
<div class="card box my-2">
<h3 class="text-center text-success myfontclass2 myfontsize">Chicken Momo</h3>
<div class="like">
<img class="card-img-top mx-auto style-in-food-item-img-4 size1" src="./assets/food-img/chicken-momo-600x480.jpg">
<!-- img 4-->
<div class="top-right box2">
<img src="./assets/icons/love-black.png" onclick="this.src='./assets/icons/love-red.png', myLike()">
</div>
</div>
<div class="style-in-food-item-price">
<h6 class="pt-3 text-center">Price ₹ <span class="text-danger">20 % Off</span> </h6>
<h5 class="pt-1 text-center text-success"><span class="">Price </span>
<del class="h4 text-secondary">₹ 69</del> ₹ 49 </h5>
<p class="text-center">
<span class="heading">User Rating</span>
<span class="fa fa-star checked"></span>