-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1125 lines (1089 loc) · 43.1 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
<!-- =======================================================
* 21 Days of Code : Assignment-2
* Index HTML File
* Written by Jobaieer
======================================================== -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>21 Days of Code : Assignment-2</title>
<!-- Fav Icons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./img/fav-icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./img/fav-icons/favicon-32x32.png"
/>
<!-- CSS Files -->
<link rel="stylesheet" href="./assets/css/global.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="stylesheet" href="./assets/css/responsive.css" />
</head>
<body>
<!-- Header Container Start-->
<header id="header-container" class="ss-margin">
<!-- Nav Section Start -->
<nav class="navbar">
<div class="nav-logo">
<img
src="./img/header-images/icon.png"
alt="food logo"
title="Food"
/>
</div>
<ul class="nav-menu">
<li><a href="#" target="_blank">Home</a></li>
<li><a href="#product-section">Cart</a></li>
<li>
<a
href="https://accounts.livechat.com/"
target="_blank"
rel="noopener"
>
Live Support</a
>
</li>
</ul>
<div class="div-search">
<svg
width="27"
height="28"
viewBox="0 0 27 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M10.5 21C15.7467 21 20 16.5228 20 11C20 5.47715 15.7467 1 10.5 1C5.25329 1 1 5.47715 1 11C1 16.5228 5.25329 21 10.5 21Z"
stroke="black"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M26 27L18 19"
stroke="black"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<input
type="search"
class="search-input"
name="search"
id="search"
placeholder="Search"
/>
<svg
width="60"
height="50"
viewBox="0 0 61 62"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12.75 28.207L9 32.9657V49.6208C9 50.2519 9.26339 50.857 9.73223 51.3033C10.2011 51.7495 10.837 52.0001 11.5 52.0001H29C29.663 52.0001 30.2989 51.7495 30.7678 51.3033C31.2366 50.857 31.5 50.2519 31.5 49.6208V32.9657L27.75 28.207H12.75Z"
stroke="black"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M9 33.3794H31.5"
stroke="black"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M25.0713 37.5173C25.0713 38.8891 24.5634 40.2048 23.6592 41.1748C22.755 42.1448 21.5286 42.6897 20.2499 42.6897C18.9712 42.6897 17.7448 42.1448 16.8406 41.1748C15.9364 40.2048 15.4285 38.8891 15.4285 37.5173"
stroke="black"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<g filter="url(#filter0_d_0_1)">
<ellipse
cx="30.9644"
cy="29.7586"
rx="8.03571"
ry="7.75862"
fill="#F48E28"
/>
</g>
<path
d="M27.8223 34V33.235L32.1873 28.96C32.5873 28.57 32.8873 28.23 33.0873 27.94C33.2873 27.64 33.4223 27.36 33.4923 27.1C33.5623 26.84 33.5973 26.595 33.5973 26.365C33.5973 25.755 33.3873 25.275 32.9673 24.925C32.5573 24.575 31.9473 24.4 31.1373 24.4C30.5173 24.4 29.9673 24.495 29.4873 24.685C29.0173 24.875 28.6123 25.17 28.2723 25.57L27.5073 24.91C27.9173 24.43 28.4423 24.06 29.0823 23.8C29.7223 23.54 30.4373 23.41 31.2273 23.41C31.9373 23.41 32.5523 23.525 33.0723 23.755C33.5923 23.975 33.9923 24.3 34.2723 24.73C34.5623 25.16 34.7073 25.665 34.7073 26.245C34.7073 26.585 34.6573 26.92 34.5573 27.25C34.4673 27.58 34.2973 27.93 34.0473 28.3C33.8073 28.66 33.4523 29.07 32.9823 29.53L28.9773 33.46L28.6773 33.04H35.1873V34H27.8223Z"
fill="white"
/>
<defs>
<filter
id="filter0_d_0_1"
x="0.928711"
y="0"
width="60.0715"
height="59.5172"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset />
<feGaussianBlur stdDeviation="11" />
<feComposite in2="hardAlpha" operator="out" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow_0_1"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow_0_1"
result="shape"
/>
</filter>
</defs>
</svg>
</div>
</nav>
<!-- Nav Section End -->
<!-- Hero Section Start-->
<section id="hero-section">
<div class="hero-wrapper">
<div class="hero-left">
<div class="h-left-t">
<p>Bike Delivery</p>
<img src="./img/header-images/hero-bike.png" alt="bike" />
</div>
<div class="h-left-m">
<h1>
The Fastest
<span class="color">Delivery</span>
<br />In <span class="color">Chattogram</span>
</h1>
<p>
Food is a user-friendly online food delivery platform that
connects hungry customers with their favorite local restaurants.
From mouthwatering pizzas to exotic sushi, Food delivers
culinary delights right to your doorstep. Bon appétit!
</p>
</div>
<div class="h-left-d">
<button class="btn-on" title="Order Now">Order Now</button>
<div class="play-button">
<img
src="./img/header-images/Play Button.png"
alt="play-button"
/>
<h3>Order Process</h3>
</div>
</div>
</div>
<div class="hero-mid hide-m-d">
<img src="./img/header-images/hero-arrow.png" alt="arrow" />
</div>
<div class="hero-right">
<div class="hero-cards">
<div class="h-right-card">
<div class="h-s">
<div class="bg-card">
<h4>Burger</h4>
<p>Mushroom Sauce</p>
<p><span class="color-r">$</span>5.15</p>
</div>
<img
src="./img/header-images/hero-1.png"
alt="hero-1"
title="Burger"
class="h-img"
/>
</div>
</div>
<div class="h-right-card">
<div class="bg-card">
<h4>Food Combo</h4>
<p>Mushroom Sauce</p>
<p><span class="color-r">$</span>5.15</p>
</div>
<img
src="./img/header-images/hero-2.png"
alt="hero-2"
title="Food Combo"
class="h-img"
/>
</div>
<div class="h-right-card">
<div class="bg-card">
<h4>Pizza</h4>
<p>Mushroom Sauce</p>
<p><span class="color-r">$</span>5.15</p>
</div>
<img
src="./img/header-images/hero-3.png"
alt="hero-3"
title="Pizza"
class="h-img"
/>
</div>
<div class="h-right-card">
<div class="bg-card">
<h4>Cake</h4>
<p>Mushroom Sauce</p>
<p><span class="color-r">$</span>5.15</p>
</div>
<img
src="./img/header-images/hero-4.png"
alt="hero-4"
title="Cake"
class="h-img"
/>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End-->
</header>
<!-- Header Container End -->
<!-- Main Container Start -->
<main id="main-container" class="ss-margin">
<!-- Contact Section Start -->
<section id="contact-section">
<div class="contact-flex">
<div class="contact-card border-right">
<svg
width="42"
height="42"
viewBox="0 0 42 42"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="21" cy="21" r="21" fill="#F48E28" />
<path
d="M21 31C26.5228 31 31 26.5228 31 21C31 15.4772 26.5228 11 21 11C15.4772 11 11 15.4772 11 21C11 26.5228 15.4772 31 21 31Z"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M21 15V21L25 23"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<h4>Today 10:00am - 10:00pm</h4>
<h6>Working time</h6>
</div>
<div class="contact-card border-right">
<svg
width="42"
height="42"
viewBox="0 0 42 42"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="21" cy="21" r="21" fill="#F48E28" />
<path
d="M30 19C30 26 21 32 21 32C21 32 12 26 12 19C12 16.6131 12.9482 14.3239 14.636 12.636C16.3239 10.9482 18.6131 10 21 10C23.3869 10 25.6761 10.9482 27.364 12.636C29.0518 14.3239 30 16.6131 30 19Z"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M21 22C22.6569 22 24 20.6569 24 19C24 17.3431 22.6569 16 21 16C19.3431 16 18 17.3431 18 19C18 20.6569 19.3431 22 21 22Z"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<h4>Mohammadpur, Dhaka</h4>
<h6>Our Location</h6>
</div>
<div class="contact-card">
<svg
width="42"
height="42"
viewBox="0 0 42 42"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="21" cy="21" r="21" fill="#F48E28" />
<path
d="M23.9381 15C24.9149 15.1906 25.8125 15.6683 26.5162 16.3719C27.2199 17.0756 27.6976 17.9733 27.8881 18.95L23.9381 15ZM23.9381 11C25.9674 11.2254 27.8597 12.1342 29.3044 13.577C30.749 15.0198 31.6601 16.911 31.8881 18.94L23.9381 11ZM30.8881 26.92V29.92C30.8892 30.1985 30.8322 30.4742 30.7206 30.7293C30.6091 30.9845 30.4454 31.2136 30.2402 31.4019C30.035 31.5901 29.7927 31.7335 29.5289 31.8227C29.265 31.9119 28.9855 31.9451 28.7081 31.92C25.631 31.5856 22.6751 30.5341 20.0781 28.85C17.6619 27.3147 15.6135 25.2662 14.0781 22.85C12.3881 20.2412 11.3364 17.271 11.0081 14.18C10.9831 13.9035 11.016 13.6248 11.1046 13.3616C11.1932 13.0985 11.3357 12.8567 11.5229 12.6516C11.7101 12.4466 11.9379 12.2827 12.1919 12.1705C12.4459 12.0583 12.7205 12.0003 12.9981 12H15.9981C16.4834 11.9952 16.9539 12.1671 17.3219 12.4835C17.6898 12.8 17.9302 13.2394 17.9981 13.72C18.1247 14.6801 18.3596 15.6227 18.6981 16.53C18.8327 16.8879 18.8618 17.2769 18.782 17.6509C18.7023 18.0248 18.517 18.3681 18.2481 18.64L16.9781 19.91C18.4017 22.4135 20.4746 24.4864 22.9781 25.91L24.2481 24.64C24.52 24.3711 24.8633 24.1858 25.2372 24.1061C25.6112 24.0263 26.0002 24.0555 26.3581 24.19C27.2654 24.5286 28.2081 24.7634 29.1681 24.89C29.6539 24.9585 30.0975 25.2032 30.4146 25.5775C30.7318 25.9518 30.9003 26.4296 30.8881 26.92Z"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<h4>+88 017 0000 0000</h4>
<h6>Phone Number</h6>
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Product Section Start -->
<section id="product-section">
<div class="heading-text">
<h6 class="color">Product</h6>
<h1>Most Popular Items</h1>
</div>
<div id="products" class="product-cards-gird">
<div class="product-card">
<img
src="./img/main-product-images/item1.png"
alt="item-1"
title="Gyro Sandwich"
/>
<div class="card-bottom">
<div class="card-t-o">
<div class="card-t-o-left">
<h2>Gyro Sandwich</h2>
</div>
<div class="card-t-o-right">
<svg
width="14"
height="13"
viewBox="0 0 14 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7 1L8.854 4.6204L13 5.20452L10 8.02103L10.708 12L7 10.1204L3.292 12L4 8.02103L1 5.20452L5.146 4.6204L7 1Z"
fill="#F48E28"
stroke="#F48E28"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>4.9</p>
</div>
</div>
<div class="card-t-t">
<button class="p-btn" type="button" title="Add To Cart">
Add To Cart
</button>
<p>$15.00</p>
</div>
</div>
</div>
<div class="product-card">
<img
src="./img/main-product-images/item2.png"
alt="item-2"
title="Enchilada"
/>
<div class="card-bottom">
<div class="card-t-o">
<div class="card-t-o-left">
<h2>Enchilada</h2>
</div>
<div class="card-t-o-right">
<svg
width="14"
height="13"
viewBox="0 0 14 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7 1L8.854 4.6204L13 5.20452L10 8.02103L10.708 12L7 10.1204L3.292 12L4 8.02103L1 5.20452L5.146 4.6204L7 1Z"
fill="#F48E28"
stroke="#F48E28"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>5</p>
</div>
</div>
<div class="card-t-t">
<button class="p-btn" type="button" title="Add To Cart">
Add To Cart
</button>
<p>$35.00</p>
</div>
</div>
</div>
<div class="product-card">
<img
src="./img/main-product-images/item3.png"
alt="item-3"
title="Green Beans"
/>
<div class="card-bottom">
<div class="card-t-o">
<div class="card-t-o-left">
<h2>Green Beans</h2>
</div>
<div class="card-t-o-right">
<svg
width="14"
height="13"
viewBox="0 0 14 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7 1L8.854 4.6204L13 5.20452L10 8.02103L10.708 12L7 10.1204L3.292 12L4 8.02103L1 5.20452L5.146 4.6204L7 1Z"
fill="#F48E28"
stroke="#F48E28"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>4.5</p>
</div>
</div>
<div class="card-t-t">
<button class="p-btn" type="button" title="Add To Cart">
Add To Cart
</button>
<p>$25.00</p>
</div>
</div>
</div>
<div class="product-card">
<img
src="./img/main-product-images/item4.png"
alt="item-4"
title="Pizza"
/>
<div class="card-bottom">
<div class="card-t-o">
<div class="card-t-o-left">
<h2>Pizza</h2>
</div>
<div class="card-t-o-right">
<svg
width="14"
height="13"
viewBox="0 0 14 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7 1L8.854 4.6204L13 5.20452L10 8.02103L10.708 12L7 10.1204L3.292 12L4 8.02103L1 5.20452L5.146 4.6204L7 1Z"
fill="#F48E28"
stroke="#F48E28"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>4.9</p>
</div>
</div>
<div class="card-t-t">
<button class="p-btn" type="button" title="Add To Cart">
Add To Cart
</button>
<p>$17.00</p>
</div>
</div>
</div>
<div class="product-card">
<img
src="./img/main-product-images/item5.png"
alt="item-5"
title="Chicken Pot Pie"
/>
<div class="card-bottom">
<div class="card-t-o">
<div class="card-t-o-left">
<h2>Chicken Pot Pie</h2>
</div>
<div class="card-t-o-right">
<svg
width="14"
height="13"
viewBox="0 0 14 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7 1L8.854 4.6204L13 5.20452L10 8.02103L10.708 12L7 10.1204L3.292 12L4 8.02103L1 5.20452L5.146 4.6204L7 1Z"
fill="#F48E28"
stroke="#F48E28"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>4.9</p>
</div>
</div>
<div class="card-t-t">
<button class="p-btn" type="button" title="Add To Cart">
Add To Cart
</button>
<p>$15.00</p>
</div>
</div>
</div>
<div class="product-card">
<img
src="./img/main-product-images/item6.png"
alt="item-6"
title="Green Salad"
/>
<div class="card-bottom">
<div class="card-t-o">
<div class="card-t-o-left">
<h2>Green Salad</h2>
</div>
<div class="card-t-o-right">
<svg
width="14"
height="13"
viewBox="0 0 14 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7 1L8.854 4.6204L13 5.20452L10 8.02103L10.708 12L7 10.1204L3.292 12L4 8.02103L1 5.20452L5.146 4.6204L7 1Z"
fill="#F48E28"
stroke="#F48E28"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>4.6</p>
</div>
</div>
<div class="card-t-t">
<button class="p-btn" type="button" title="Add To Cart">
Add To Cart
</button>
<p>$28.00</p>
</div>
</div>
</div>
</div>
<div class="bottom-btn">
<button
class="see-more-btn"
title="See More Products"
onclick="seeMoreProducts()"
>
See More Products
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M12 3.5C7.313 3.5 3.5 7.313 3.5 12C3.5 16.687 7.313 20.5 12 20.5C16.687 20.5 20.5 16.687 20.5 12C20.5 7.313 16.687 3.5 12 3.5ZM12 22C6.486 22 2 17.514 2 12C2 6.486 6.486 2 12 2C17.514 2 22 6.486 22 12C22 17.514 17.514 22 12 22Z"
fill="white"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10.5586 16.2208C10.3666 16.2208 10.1736 16.1478 10.0276 15.9998C9.73558 15.7058 9.73658 15.2318 10.0296 14.9398L12.9816 11.9998L10.0296 9.0608C9.73658 8.7688 9.73558 8.2938 10.0276 7.9998C10.3196 7.7048 10.7936 7.7068 11.0876 7.9978L14.5736 11.4688C14.7146 11.6098 14.7936 11.8008 14.7936 11.9998C14.7936 12.1998 14.7146 12.3908 14.5736 12.5318L11.0876 16.0018C10.9416 16.1478 10.7496 16.2208 10.5586 16.2208Z"
fill="white"
/>
</svg>
</button>
</div>
</section>
<!-- Product Section End -->
<!-- Services Section Start -->
<section id="services-section">
<div class="heading-text">
<h6 class="color">Services</h6>
<h1>Why Choose Our Favorite Food</h1>
</div>
<div class="services-card-grid">
<div class="services-card">
<div class="s-card-bg"></div>
<div class="s-card-t">
<img src="./img/main-service-images/icon1.png" alt="icon1" />
<h1>Qualityfull Food</h1>
<p>
But I must explain to you how all this mistaken idea of
denouncing pleasur and prasising pain was bron.
</p>
</div>
</div>
<div class="services-card">
<div class="s-card-bg"></div>
<div class="s-card-t">
<img src="./img/main-service-images/icon2.png" alt="icon2" />
<h1>Healthy Food</h1>
<p>
But I must explain to you how all this mistaken idea of
denouncing pleasur and prasising pain was bron.
</p>
</div>
</div>
<div class="services-card">
<div class="s-card-bg"></div>
<div class="s-card-t">
<img src="./img/main-service-images/icon3.png" alt="icon3" />
<h1>Fast Delivery</h1>
<p>
But I must explain to you how all this mistaken idea of
denouncing pleasur and prasising pain was bron.
</p>
</div>
</div>
</div>
</section>
<!-- Services Section End -->
<!-- Testimonial Section Start -->
<section id="testimonial-section">
<div class="heading-text">
<h6 class="color">Testimonial</h6>
<h1>Why Choose Our Favorite Food</h1>
</div>
<div class="t-wrapper">
<div class="t-left">
<div class="t-profile">
<div class="img-t">
<img
src="./img/main-testimonial-images/Jobaieer.png"
alt="jobaieer"
/>
</div>
<div class="t-p-s">
<h1>Jobaieer</h1>
<p>CEO & Co-Founder</p>
</div>
</div>
<div class="ar-logo-set">
<div class="ar-left">
<svg
width="92"
height="92"
viewBox="0 0 92 92"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g filter="url(#filter0_d_3_187)">
<circle
cx="21"
cy="21"
r="21"
transform="matrix(-1 0 0 1 67 25)"
fill="#F48E28"
/>
</g>
<path
d="M52.4167 46H39.5833"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M46 39.5834L39.5833 46L46 52.4167"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<defs>
<filter
id="filter0_d_3_187"
x="0"
y="0"
width="92"
height="92"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset />
<feGaussianBlur stdDeviation="12.5" />
<feComposite in2="hardAlpha" operator="out" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.5125 0 0 0 0 0.649 0 0 0 0 1 0 0 0 0.25 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow_3_187"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow_3_187"
result="shape"
/>
</filter>
</defs>
</svg>
</div>
<div class="ar-right">
<svg
width="92"
height="92"
viewBox="0 0 92 92"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g filter="url(#filter0_d_3_188)">
<circle cx="46" cy="46" r="21" fill="#F48E28" />
</g>
<path
d="M39.5833 46H52.4166"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M46 39.5834L52.4167 46L46 52.4167"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<defs>
<filter
id="filter0_d_3_188"
x="0"
y="0"
width="92"
height="92"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset />
<feGaussianBlur stdDeviation="12.5" />
<feComposite in2="hardAlpha" operator="out" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.5125 0 0 0 0 0.649 0 0 0 0 1 0 0 0 0.25 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow_3_188"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow_3_188"
result="shape"
/>
</filter>
</defs>
</svg>
</div>
</div>
<p>
“As the CEO of What’s Good, I’m proud to lead a platform that
connects independent growers and small producers directly with
consumers. Our mission is to make fresh local produce accessible
to everyone, especially during challenging times. Together, we’re
building a resilient food system.”
</p>
</div>
<div class="t-right">
<img
src="./img/main-testimonial-images/testimonial-1.png"
alt="t-1"
/>
</div>
</div>
</section>
<!-- Testimonial Section End -->
<!-- News Section Start-->
<section id="news-section">
<div class="n-wrapper">
<div class="n-left">
<img src="./img/main-testimonial-images/t-2.png" alt="t-2" />
</div>
<div class="n-right">
<h2>Subscribe To Our Newsletter</h2>
<p>
Subscribers get first dibs on discounts, special menus, and secret
recipes. Treat yourself to a little extra flavor!
</p>
<form onsubmit="subEmail(event)" class="n-i-btn form-s">
<input
type="email"
name="email"
class="sub-mail"
placeholder=" Type your email..... "
required
/>
<button class="sub-btn" title="Subscribe" type="submit">
Subscribe
</button>
</form>
<div id="success_container"></div>
</div>
</div>
</section>
<!-- News Section Start-->
</main>
<!-- Main Container End -->
<!-- Footer Container Start -->
<footer id="footer-container">
<div class="footer-set ss-margin">
<div class="footer-wrapper">
<div class="footer-left">
<img src="./img/header-images/icon.png" alt="logo" title="Food" />
<div class="footer-text-b">
<p class="para-c-a">
Food is a user-friendly online food delivery platform that
connects hungry customers with their favorite local restaurants.
From mouthwatering pizzas to exotic sushi, Food delivers
culinary delights right to your doorstep. Bon appétit!
</p>
<div class="footer-social">
<div class="bg-social">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0,0,256,256"
class="social-icon"
>
<g
fill="#f48e28"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M32,11h5c0.552,0 1,-0.448 1,-1v-6.737c0,-0.524 -0.403,-0.96 -0.925,-0.997c-1.591,-0.113 -4.699,-0.266 -6.934,-0.266c-6.141,0 -10.141,3.68 -10.141,10.368v6.632h-7c-0.552,0 -1,0.448 -1,1v7c0,0.552 0.448,1 1,1h7v19c0,0.552 0.448,1 1,1h7c0.552,0 1,-0.448 1,-1v-19h7.222c0.51,0 0.938,-0.383 0.994,-0.89l0.778,-7c0.066,-0.592 -0.398,-1.11 -0.994,-1.11h-8v-5c0,-1.657 1.343,-3 3,-3z"
></path>
</g>
</g>
</svg>
</div>
<div class="bg-social">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0,0,256,256"
class="social-icon"
>
<g
fill="#f48e28"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M50.0625,10.4375c-1.84766,0.82031 -3.82812,1.37109 -5.91016,1.62109c2.125,-1.27344 3.75781,-3.28906 4.52344,-5.6875c-1.98437,1.17578 -4.19141,2.03125 -6.53125,2.49219c-1.875,-2 -4.54687,-3.24609 -7.50391,-3.24609c-5.67969,0 -10.28516,4.60156 -10.28516,10.28125c0,0.80469 0.09375,1.58984 0.26953,2.34375c-8.54687,-0.42969 -16.12109,-4.52344 -21.19531,-10.74609c-0.88672,1.52344 -1.39062,3.28906 -1.39062,5.17187c0,3.56641 1.8125,6.71484 4.57422,8.5625c-1.6875,-0.05469 -3.27344,-0.51953 -4.66016,-1.28906c0,0.04297 0,0.08594 0,0.12891c0,4.98438 3.54688,9.13672 8.24609,10.08594c-0.85937,0.23438 -1.76953,0.35938 -2.70703,0.35938c-0.66406,0 -1.30859,-0.0625 -1.9375,-0.1875c1.3125,4.08203 5.10938,7.0625 9.60547,7.14453c-3.51562,2.75781 -7.94922,4.39844 -12.76953,4.39844c-0.83203,0 -1.64844,-0.04687 -2.44922,-0.14453c4.54687,2.92188 9.95312,4.62109 15.76172,4.62109c18.91406,0 29.25781,-15.66797 29.25781,-29.25391c0,-0.44531 -0.01172,-0.89453 -0.02734,-1.33203c2.00781,-1.44922 3.75,-3.26172 5.12891,-5.32422z"
></path>
</g>
</g>
</svg>
</div>
<div class="bg-social">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0,0,256,256"
class="social-icon"
>
<g
fill="#f48e28"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"