-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoodPage.html
More file actions
921 lines (810 loc) · 35.3 KB
/
foodPage.html
File metadata and controls
921 lines (810 loc) · 35.3 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
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
<!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>Document</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="foodPage.css">
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-expand-lg bg-light">
<a class="navbar-brand blogname" href="#">Win Win Htet <img src="img/chef.png" class='chiefLogo'/></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon">
</span>
</button>
<div class="collapse navbar-collapse " id="navbarNavAltMarkup">
<div class="navbar-nav m-auto fw-semibold">
<a class="nav-link home" href="#">Home</a>
<a class="nav-link" href="#">Menu</a>
<a class="nav-link" href="#">Order</a>
<a class="nav-link" href="#">Contact</a>
<a class="nav-link" href="#">About Us</a>
</div>
<form class="d-flex ms-auto" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
</form>
</div>
</nav>
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="false">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/bgphoto1.jpg" height="500px" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block mb-5">
<h1>Food Made With Love</h1>
<p>Here is your food ~ Enjoy Life & Enjoy Food</p>
<button type="button" class="btn btn-warning">Order Now</button>
</div>
</div>
<div class="carousel-item">
<img src="img/bgphoto5.jpg" height="500px" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block mb-5">
<h1>Food Made With Love</h1>
<p>Here is your food ~ Enjoy Life & Enjoy Food</p>
<button type="button" class="btn btn-warning">Order Now</button>
</div>
</div>
<div class="carousel-item">
<img src="img/bgphoto3.jpg" object-fit='cover' height="500px" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block mb-5">
<h1>Food Made With Love</h1>
<p>Here is your food ~ Enjoy Life & Enjoy Food</p>
<button type="button" class="btn btn-warning">Order Now</button>
</div>
</div>
</div>
<!-- <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" 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="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button> -->
</div>
<div class="container-fluid">
<div class="card mb-4 mt-5">
<div class="row g-0">
<div class="col-md-5">
<img src="img/food1.webp" class="img-fluid rounded-start" alt="..." class="ms-3">
</div>
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title" style="font-family: 'Trebuchet MS', sans-serif; font-size:24px;">Welcome From Our Restaurant</h5>
<p class="card-text mt-2">Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut necessitatibus dolore tempora quasi totam quia inventore voluptas! Impedit veritatis iure distinctio consequuntur ducimus optio sequi, voluptate velit, animi ex assumenda.</p>
<button type="button" class="btn btn-warning read-more">Read More</button>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
<div class="row mt-4">
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/quality1.jpg" alt="" srcset="" width="40px" height="40px">
<p class="card-text">Quality Food</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/drink.jpg" alt="" srcset="" width="40px" height="40px">
<p class="card-text">Drink & Foods</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/chef1.jpg" alt="" srcset="" width="40px" height="40px">
<p class="card-text">Experts Chief</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<figure class="text-center">
<blockquote class="blockquote">
<p class="text-center" style="font-family: 'Trebuchet MS', sans-serif;font-size:24px;">Our <span class="text-center"
style="font-family: 'Trebuchet MS', sans-serif; font-size:24px;color:#faab35">Special Menus</span></p>
</blockquote>
</figure>
<div class="row">
<div class="col col1 me-2">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/food11.jpg" alt="" srcset="" width="270px" height="230px" class="mt-3">
<p class="fw-bold mt-2 mb-0">Beeflio Brekf<span class="fw-bold ms-3">12000 kyats</span></p>
<div class="star">
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star-half-stroke" style="color:yellow"></i>
</div>
<button type="button" class="btn btn-outline-warning mt-1 mb-1">Order Now</button>
</div>
</div>
<div class="col col1 me-2">
<div class="d-flex flex-column align-items-center justify-content-center ">
<img src="img/food12.png" alt="" srcset="" width="270px" height="230px" class="mt-3">
<p class="fw-bold mt-2 mb-0">Pork Steak <span class="fw-bold ms-3">12000 kyats</span></p>
<div class="star">
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star-half-stroke" style="color:yellow"></i>
</div>
<button type="button" class="btn btn-outline-warning mt-1 mb-1">Order Now</button>
</div>
</div>
<div class="col col1 me-2">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/food2.jpg" alt="" srcset="" width="270px" height="230px" class="mt-3">
<p class="fw-bold mt-2 mb-0">Sherki ChiEgg<span class="fw-bold ms-3">12000 kyats</span>
</p>
<div class="star">
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star-half-stroke" style="color:yellow"></i>
</div>
<button type="button" class="btn btn-outline-warning mt-1 mb-1">Order Now</button>
</div>
</div>
</div>
<div class="continer">
<div class="row mt-2">
<div class="col col2 me-2 showMenu">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/plating2.jpg" alt="" srcset="" width="270px" height="230px" class="mt-3">
<p class="fw-bold mt-2 mb-0">Shapar Chio Desert<span class="fw-bold ms-3">12000 kyats</span>
</p>
<div class="star">
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star-half-stroke" style="color:yellow"></i>
</div>
<button type="button" class="btn btn-outline-warning mt-1 mb1">Order Now</button>
</div>
</div>
<div class="col col2 me-2">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/plating4.jpg" alt="" srcset="" width="270px" height="230px" class="mt-3">
<p class="fw-bold mt-2 mb-0">Steo Chicago <span class="fw-bold ms-3">12000 kyats</span>
</p>
<div class="star">
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star-half-stroke" style="color:yellow"></i>
</div>
<button type="button" class="btn btn-outline-warning mt-1 mb-1">Order Now</button>
</div>
</div>
<div class="col col2 me-2">
<div class="d-flex flex-column align-items-center justify-content-center">
<img src="img/plating1.jpg" alt="" srcset="" width="270px" height="230px" class="mt-3">
<p class="fw-bold mt-2 mb-0">Mico Larka <span class="fw-bold ms-3">12000 kyats</span>
</p>
<div class="star">
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star" style="color:yellow"></i>
<i class="fa-solid fa-star-half-stroke" style="color:yellow"></i>
</div>
<button type="button" class="btn btn-outline-warning mt-1 mb-1">Order Now</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="container-fluid mt-5">
<figure class="text-center">
<blockquote class="blockquote mb-3">
<p>Another Available Menus</p>
</blockquote>
<figcaption class="blockquote-footer">
Someone famous in <cite title="Source Title">Source Title</cite>
</figcaption>
</figure>
<div class="slider">
<div class="slider1" id="slider1">
<div class="img">
<img src="img/menu1.jpg" alt="" srcset="" width="200px" height="200px" class="img1">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu11.jpg" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu4.jpg" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu5.webp" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu6.jpg" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu7.jpg" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu8.jpg" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu9.jpg" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
<div class="img">
<img src="img/menu10.jpg" alt="" srcset="" width="200px" height="200px">
<p class="fw-bold text-center mt-1">Pocalio</p>
<div class="d-flex flex-row justify-content-between">
<strong >11500 Kyats</strong>
<a href="order" class="order">Order Now</a>
</div>
</div>
</div>
</div>
<div class="button-area">
<button type="button" class="previous"><i class="fa-solid fa-arrow-left"></i></button>
<button type="button" class="next"><i class="fa-solid fa-arrow-right"></i></button>
</div>
</div>
-->
<div class="container-fluid">
<figure class="text-center mt-4">
<blockquote class="blockquote mb-3">
<p>Another Available Menus</p>
</blockquote>
<figcaption class="blockquote-footer">
Someone famous in <cite title="Source Title">Source Title</cite>
</figcaption>
</figure>
<div class="menu">
<div class="slider1">
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu1.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu2.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu3.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu4.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu5.webp" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
</div>
<!-- slider2 -->
<div class="slider2">
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu10.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu11.JPG" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu12.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu13.webp" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu14.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
</div>
<!-- slider3 -->
<div class="slider3">
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu6.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu7.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu8.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu9.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu15.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
</div>
<!-- slider4 -->
<div class="slider4">
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu2.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu12.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu7.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu9.jpg" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
<div class="box"> <!-- box-slider -->
<div class="slide-img"> <!-- img-box -->
<img src="img/menu5.webp" alt="" srcset="">
</div>
<!-- overlayer -->
<div class="overlay">
<a href="" class="order-btn">Order Now</a>
</div>
<div class="detail-box"> <!-- detail-box -->
<div class="type">
<strong>Pokyio</strong>
<strong>10900 Kyats</strong>
</div>
</div>
</div>
</div>
</div>
<div class="button-gp mb-3">
<i class="fa-solid fa-circle-dot btn-select one"></i>
<i class="fa-solid fa-circle-dot btn-select two"></i>
<i class="fa-solid fa-circle-dot btn-select three"></i>
<i class="fa-solid fa-circle-dot btn-select four"></i>
</div>
<div class="row mt-5 ">
<div class="col col-border">
<p class="fs-3 text-center">How It Works...</p>
<div class="orderFood">
<img src="img/chooseFood.jpg" alt="" srcset="" class="chooseFood me-3">
<span class="fw-semibold fs-5">You can choose any meal you enjoy</span>
</div>
<div class="delivery1">
<img src="img/delivery.jpg" alt="" srcset="" class="delivery me-3">
<span class="fw-semibold fs-5">Our Free And Fast Delivery</span>
</div>
<div class="cash1">
<img src="img/cash.jpg" alt="" srcset="" class="cash me-3">
<span class="fw-semibold fs-5">Easy Payment Method</span>
</div>
<div class="enjoyFood1">
<img src="img/enjoyFood.jpg" alt="" srcset="" class="enjoyFood me-3">
<span class="fw-semibold fs-5">And Finally, Enjoy Your Food</span>
</div>
</div>
<div class="col">
<p class="fs-3 text-center">Reviews From Customers...</p>
<div class="firstRow">
<div class="first">
<div class="firstPerson">
<img src="img/person1.jpg" alt="" srcset="" class="person">
<p style="font-weight:bold" class="mt-2 mb-0">U Thaung Sein</p>
<p class="text-center mb-1">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<button type="button" class="btn btn-dark btn1"
style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;">
My Fav Menu
</button>
<div class="hideMenu">
<div class="favMenu">
<i class="fa-solid fa-xmark close1"></i>
<img src="img/menu7.jpg" alt="" srcset="" class="favMenuImg">
<strong>Pinochino</strong>
<strong>27000 Kyats</strong>
</div>
</div>
</div>
</div>
<div class="second mb-5">
<div class="secondPerson">
<img src="img/person1.jpg" alt="" class="person">
<p style="font-weight:bold" class="mt-2 mb-0">Daw Theingi Swe</p>
<p class="text-center mb-1">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<button type="button" class="btn btn-dark btn2"
style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;">
My Fav Menu
</button>
<div class="hideMenu1">
<div class="favMenu">
<i class="fa-solid fa-xmark close2"></i>
<img src="img/menu8.jpg" alt="" srcset="" class="favMenuImg ">
<strong>Pinochino</strong>
<strong>27000 Kyats</strong>
</div>
</div>
</div>
</div>
</div>
<div class="secondRow mt-2">
<div class="third mb-5">
<div class="thirdPerson">
<img src="img/person1.jpg" alt="" srcset="" class="person">
<p style="font-weight:bold" class="mt-2 mb-0">Ma Win Win Htet</p>
<p class="text-center mb-1">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<button type="button" class="btn btn-dark btn3"
style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;">
My Fav Menu
</button>
<div class="hideMenu2">
<div class="favMenu">
<i class="fa-solid fa-xmark close3"></i>
<img src="img/menu10.jpg" alt="" srcset="" class="favMenuImg ">
<strong>Pinochino</strong>
<strong>27000 Kyats</strong>
</div>
</div>
</div>
</div>
<div class="fourth">
<div class="fourthPerson">
<img src="img/person1.jpg" alt="" srcset="" class="person">
<p style="font-weight:bold" class="mt-2 mb-0">Mg Nyi Min Khant</p>
<p class="text-center mb-1">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<button type="button" class="btn btn-dark btn4"
style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;">
My Fav Menu
</button>
</div>
<div class="hideMenu3">
<div class="favMenu">
<i class="fa-solid fa-xmark close4"></i>
<img src="img/menu6.jpg" alt="" srcset="" class="favMenuImg">
<strong>Pinochino</strong>
<strong>27000 Kyats</strong>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container mt-5 lastContainer mb-5">
<p class="text-center" style="font-family: 'Trebuchet MS', sans-serif;font-size:26px;"><span class='me-2' style="font-family: 'Trebuchet MS', sans-serif;font-size:26px;color:#faab35">Order</span>Now</p>
<div class="row">
<div class="col">
<img src="img/orderImg1.jpg" alt="" class="orderImg">
</div>
<div class="col">
<div class="row">
<div class="col-md-6">
<!-- <label for="validationDefault03" class="form-label">Name</label> -->
<input type="text" class="form-control name" id="validationDefault03"placeholder='name' required>
</div>
<div class="col-md-6">
<!-- <label for="validationDefault03" class="form-label">Email</label> -->
<input type="email" class="form-control email" id="validationDefault03" placeholder="email" required>
</div>
</div>
<div class="row mt-4">
<div class="col-md-6">
<!-- <label for="validationDefault03" class="form-label">Ph n0</label> -->
<input type="text" class="form-control phoneno" id="validationDefault03" placeholder="ph no (eg -09235612345)" required>
</div>
<div class="col-md-6">
<!-- <label for="validationDefault03" class="form-label">Food Name</label> -->
<input type="text" class="form-control food" id="validationDefault03" placeholder="food name" required>
<div class="showOrder"></div>
</div>
</div>
<div class="row mt-4">
<input type="text" class="form-control address" placeholder="address">
</div>
<div class="row mt-4">
<button type="button" class="btn btn-outline-warning lastOrderbtn">Order Now</button>
</div>
</form>
</div>
</div>
</div>
<div class="container-fluid footer">
<div class="iconFooter">
<div class="addressFooter mt-4">
<i class="fa-solid fa-address-card me-2" style="color:#faab35"></i><span>Yesagyo Myo, Mya Thitsar Road</span>
</div>
<div class="phoneFooter mt-4">
<i class="fa-solid fa-phone me-2" style="color:#faab35"></i><span>09 - 235675743 / 062-40971</span>
</div>
<div class="fbFooter mt-4">
<i class="fa-brands fa-facebook me-2" style="color:#faab35"></i><span>http://www.fa-facebook.com.winblabla</span>
</div>
<div class="igFooter mt-4">
<i class="fa-brands fa-instagram me-2" style="color:#faab35"></i><span>WinResturant</span>
</div>
</div>
<p class="text-center mt-3 fs-6 fw-semibold">Lorem ipsum dolor sit, amet consectetur adipisicing elit !</p>
</div>
<script src="foodPage.js"></script>
</body>
</html>