-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
829 lines (822 loc) · 21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<!-- Css -->
<link
rel="stylesheet"
href="./styles/main.css"
/>
<link
rel="stylesheet"
href="./styles/queries.css"
/>
<link
rel="stylesheet"
href="./styles/animations.css"
/>
<!-- Js -->
<script
src="./src/index.js"
defer
></script>
<!-- Icons -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<!-- Fonts -->
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,700;1,600&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="./img/favicon.png"
type="image/x-icon"
/>
<link
rel="apple-touch-icon"
href="./img//favicon.png"
/>
<title>Burguer Buzz</title>
</head>
<body>
<section class="first-section">
<div class="menu-burg">
<i
onclick="openMenu()"
id="open-menu"
class="bx bx-menu"
></i>
</div>
<nav
id="navbar"
class="navbar"
>
<a href="/">
<img
class="navbar-logo"
src="./img/logo_burguer.png"
alt="Logo"
/>
</a>
<ul class="nav-menu">
<i
onclick="closeMenu()"
id="close-menu"
class="bx bx-x"
></i>
<li class="nav-item">
<a href="#">Home</a>
</li>
<li class="nav-item">
<a href="#">Menus</a>
</li>
<li class="nav-item">
<a href="#">Pages</a>
</li>
<li class="nav-item">
<a href="#">Shop</a>
</li>
<li class="nav-item">
<a href="#">Blogs</a>
</li>
<li class="nav-item">
<a href="#">Contact Us</a>
</li>
<div class="nav-menu-options">
<div class="search">
<i class="bx bx-search"></i>
<input
type="search"
placeholder="Search"
class="search-input"
/>
</div>
<div class="login-btn">LOGIN</div>
<div
class="shop-cart"
title="Shop cart"
>
<img
src="./img/shop-cart-icon.png"
alt="Shop cart icon"
/>
</div>
</div>
</ul>
</nav>
<div class="content-title">
<a href="/">
<img
class="navbar-logo-mobile"
src="./img/logo_burguer.png"
alt="Logo"
/>
</a>
<h3>FAST FOOD BURGERS</h3>
<div>
<h1>BEST</h1>
<h1>BURGERS</h1>
</div>
<h5 class="desc">
Secret family recipes are the stuff of legends and Stack burger blend
is no expection.
</h5>
<div class="order-now-btn">ORDER NOW</div>
</div>
<div class="big-burger-group">
<div class="big-burger-contents">
<img
class="burger"
src="./img/big_burguer.png"
/>
<div class="burger-title">Burguer</div>
<img
class="sale"
src="./img/sale_off.png"
/>
<img
class="mushroom-1"
src="./img/ldp_mushroom.png"
/>
<img
class="mushroom-2"
src="./img/ldp_mushroom.png"
/>
</div>
</div>
</section>
<section class="second-section">
<div class="second-section-decorations">
<img src="./img/pizza_dec.png" />
<img src="./img/burger_dec.png" />
</div>
<div class="second-section-descriptions">
<h4>WHY CHOOSE FASTFOOD?</h4>
<h1>BURGERS MADE WITH LOVE AND CARE</h1>
</div>
<div class="second-section-card-group">
<div>
<div class="card-bgr animate-card-1">
<div class="card-bgr-img">
<img src="./img/our_burger_img.jpg" />
</div>
<div class="card-bgr-title">OUR BURGERS</div>
<div class="card-bgr-description">
At Fazfood , we only use quality ingredients and treat them with
care! We flame grill our steaks, and by using open kitchens we
ensure that guests can always follow the process.
</div>
</div>
</div>
<div>
<div class="card-bgr animate-card-2">
<div class="card-bgr-img">
<img src="./img/happy_man_with_bugr.jpg" />
</div>
<div class="card-bgr-title">YOUR OPINION IS IMPORTANT</div>
<div class="card-bgr-description">
We take all constructive feedback seriously, and we would love
along with our staff – to spend every single day making Fasfood
even better! Send your feedback on your experience with us here.
</div>
</div>
</div>
<div>
<div class="card-bgr">
<div class="card-bgr-img animate-card-3">
<img src="./img/burguer_chk.jpg" />
</div>
<div class="card-bgr-title">CHICKEN BURGERS</div>
<div class="card-bgr-description">
At Fazfood, we want to make sure that everyone can get their hands
on a good burger. Go hunting in our versatile burger menu there is
something for every taste and for all sizes!
</div>
</div>
</div>
</div>
</section>
<section class="third-section">
<div class="third-section-decorations">
<img src="./img/burger_dec.png" />
<img src="./img/pizza_g.png" />
</div>
<div class="third-section-content">
<img
class="third-section-img"
src="./img/lanch_fries_brg_tt.png"
/>
<div class="third-section-content-description">
<h6>ABOUT OUR FOOD</h6>
<h1>WE MAKE THE BEST BURGER IN YOUR TOWN</h1>
<h8>
The mouth-watering aroma of sizzling burgers now fills the streets
of Birmingham thanks to the passionate pursuit of three brothers,
the British founders of Fazfood. After over 50 years of experience
in the culinary industry between them, they set out on a journey to
discover the ultimate burger.
</h8>
<div class="group-1">
<div class="card">
<img src="./img/burger_icon.svg" />
<h5>A NEW LOOK ON THE RIGHT FOOD!</h5>
</div>
<div class="card">
<img src="./img/box-check.svg" />
<h5>THE USE OF NATURAL BEST QUALITY PRODUCTS</h5>
</div>
<div class="card">
<img src="./img/scooter.svg" />
<h5>FASTEST ON YOUR DOOR STEP</h5>
</div>
</div>
</div>
</div>
</section>
<section class="fourth-section">
<div class="fourth-section-title">TODAY'S A STACKIN' DAY</div>
<div class="fourth-section-card-group">
<div>
<div class="card-bgr card-bgr-animate-1">
<div class="card-bgr-img">
<img src="./img/h2_cat-4.png" />
</div>
<div class="card-bgr-title">HOT PIZZA</div>
<div class="card-bgr-description">
Indulge in our mouth-watering Signature Stacks - each layer packed
with bold flavors and textures that will leave you craving for
more!
</div>
</div>
</div>
<div>
<div class="card-bgr card-bgr-animate-2">
<div class="card-bgr-img">
<img src="./img/h2_cat-3.png" />
</div>
<div class="card-bgr-title">BEEF BURGERS</div>
<div class="card-bgr-description">
Indulge in our mouth-watering Signature Stacks - each layer packed
with bold flavors and textures that will leave you craving for
more!
</div>
</div>
</div>
<div>
<div class="card-bgr card-bgr-animate-3">
<div class="card-bgr-img">
<img src="./img/h2_cat-5.png" />
</div>
<div class="card-bgr-title">BURRITO FOOD</div>
<div class="card-bgr-description">
Indulge in our mouth-watering Signature Stacks - each layer packed
with bold flavors and textures that will leave you craving for
more!
</div>
</div>
</div>
</div>
<div class="fourth-section-btn-mn">View our full MENU</div>
</section>
<section class="fifth-section">
<div class="fifth-section-title">POPULAR DISHES</div>
<div>
<div class="menu-buttons">
<div
class="button selected"
onclick="changeDishes('dishes1', this)"
>
<img
id="svg_bg_1"
src="./img/burger-icon-black.svg"
/>
BURGER
</div>
<div
class="button"
onclick="changeDishes('dishes2', this)"
>
<i class="bx bxs-pizza bx-rotate-270"></i>
PIZZA
</div>
<div class="button">
<i class="bx bxs-sushi"></i>
SUSHI
</div>
<div class="button">
<img
id="svg_burrito"
src="./img/burrito.svg"
/>
BURRITO
</div>
<div class="button">
<img
id="svg_fast_food"
src="./img/fast_food.svg"
/>
FAST FOOD
</div>
<div class="button">
<i class="bx bx-coffee"></i>
BEVERAGES
</div>
<div class="button">
<img
id="svg_salad"
src="./img/salad.svg"
/>
SALATS
</div>
</div>
<div
class="dishes"
id="dishes1"
>
<div class="card-dishe">
<div class="card-dishe-img">
<img src="./img/product_1.png" />
</div>
<div class="card-dishe-title">
<h6>DOUBLE-DOUBLE</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Indulge in our mouth-watering Signature Stacks - each layer packed
with bold flavors and textures that will leave you craving for
more!
</div>
<div class="card-dishe-footer">
<div class="price">9.58$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
<div class="card-dishe">
<div class="card-dishe-img">
<img src="./img/product_2.png" />
</div>
<div class="card-dishe-title">
<h6>SONIC BLAST</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Sunt autem aliquid mollitia et a. Et illum illo hic quisquam
voluptate. Facilis rem enim ducimus ad id. Harum quas…
</div>
<div class="card-dishe-footer">
<div class="price">7.28$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
<div class="card-dishe">
<div class="card-dishe-img">
<img src="./img/product_3.png" />
</div>
<div class="card-dishe-title">
<h6>WHOPPER BURGER KING</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Atque omnis nesciunt tempore et doloribus. Vel ut vel ut veniam
iusto excepturi omnis. Et velit omnis qui et sed.…
</div>
<div class="card-dishe-footer">
<div class="price">13.45$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
<div class="card-dishe">
<div class="card-dishe-img">
<img src="./img/product_4.png" />
</div>
<div class="card-dishe-title">
<h6>BIG MAC</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Velit voluptas consectetur omnis sed nihil aut. A quo officia et
alias omnis magni vel. Dolorum temporibus iure perspiciatis quo…
</div>
<div class="card-dishe-footer">
<div class="price">6.64$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
</div>
<div
class="dishes"
id="dishes2"
>
<div class="card-dishe">
<div class="card-dishe-img">
<img src="./img/h2_cat-4.png" />
</div>
<div class="card-dishe-title">
<h6>SPECIAL PIZZA</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
<div class="card-dishe-footer">
<div class="price">9.58$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
<div class="card-dishe">
<div class="card-dishe-img">
<img
src="./img/saahil-khatkhate-kfDsMDyX1K0-unsplash-removebg-preview.png"
/>
</div>
<div class="card-dishe-title">
<h6>PIZZA HUT</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Nunc scelerisque viverra mauris in aliquam. Tellus cras adipiscing
enim eu turpis egestas pretium. Nisl pretium fusce id velit ut.
Semper auctor neque vitae tempus quam.
</div>
<div class="card-dishe-footer">
<div class="price">7.28$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
<div class="card-dishe">
<div class="card-dishe-img">
<img
src="./img/fernando-andrade-_P76trHTWDE-unsplash-removebg-preview.png"
/>
</div>
<div class="card-dishe-title">
<h6>KING OF PIZZAS</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Consectetur purus ut faucibus pulvinar. Iaculis eu non diam
phasellus vestibulum lorem sed risus ultricies. Odio facilisis
mauris sit amet massa vitae.
</div>
<div class="card-dishe-footer">
<div class="price">13.45$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
<div class="card-dishe">
<div class="card-dishe-img">
<img
src="./img/foad-roshan-Y6OgisiGBjM-unsplash-removebg-preview.png"
/>
</div>
<div class="card-dishe-title">
<h6>BRAZILIAN PIZZA</h6>
<i
id="hear"
class="bx bx-heart"
onclick="liked(this)"
></i>
</div>
<div class="card-dishe-stars"></div>
<div class="card-dishe-description">
Morbi tincidunt augue interdum velit euismod in pellentesque massa
placerat.
<strong>Melhor Pizza da casa.</strong>
</div>
<div class="card-dishe-footer">
<div class="price">6.64$</div>
<div
class="shop-cart"
title="Adicionar ao carrinho"
>
<img
src="./img/shop-cart-icon.png"
alt="Carrinho de compras"
/>
</div>
</div>
</div>
</div>
</div>
<div class="fifth-section-btn-mn">view all</div>
</section>
<section class="sixth-section">
<div class="sixth-section-decor">
<div class="burrito">
<img
class="leaf-1"
src="./img/leaf_transparent.png"
/>
<img
class="burrito-bg"
src="./img/burrito_bg.png"
/>
<img
class="leaf-2"
src="./img/leaf.png"
/>
</div>
<img
class="pizza-dec"
src="./img/pizza_dec.png"
/>
</div>
<div class="sixth-section-content">
<h1>QUESADILLA WITH</h1>
<h2>TOMATOES</h2>
<h6>
Wheat Tortilla With Spicy Chicken Bites, Cheese Sauce, Tomatoes And
Soft Cheese
</h6>
<div id="actualHour"></div>
<div class="day-desc">
<span>DAYS</span>
<span>HOURS</span>
<span>MIN</span>
<span>SEC</span>
</div>
</div>
<div class="burrito-2">
<img src="./img/taco.png" />
<img
class="sale"
src="./img/sale.png"
/>
</div>
<img
class="tomato"
src="./img/tomato.png"
/>
<img
class="mushs"
src="./img/mushs.png"
/>
</section>
<section class="seven-section">
<div class="seven-section-title">MEET OUR EXPERT CHEFS</div>
<div class="seven-section-card-group">
<div class="card-chef">
<div class="card-chef-img">
<img src="./img/chef_1.png" />
<div class="overlay">
<div class="icons">
<i class="bx bxl-facebook"></i>
<i class="bx bxl-twitter"></i>
<i class="bx bxl-instagram"></i>
<i class="bx bxl-pinterest"></i>
</div>
</div>
</div>
<div class="card-chef-title">JOEY ALTMAN</div>
<div class="card-chef-prof">EXECUTIVE CHEF</div>
<div class="card-chef-description">
Indulge In Our Mouth-Watering Signature Stacks Each Layer Packed
With.
</div>
</div>
<div class="card-chef">
<div class="card-chef-img">
<img src="./img/chef_2.png" />
<div class="overlay">
<div class="icons">
<i class="bx bxl-facebook"></i>
<i class="bx bxl-twitter"></i>
<i class="bx bxl-instagram"></i>
<i class="bx bxl-pinterest"></i>
</div>
</div>
</div>
<div class="card-chef-title">PETRICK LIN</div>
<div class="card-chef-prof">HEAD CHEF</div>
<div class="card-chef-description">
Indulge In Our Mouth-Watering Signature Stacks Each Layer Packed
With.
</div>
</div>
<div class="card-chef">
<div class="card-chef-img">
<img src="./img/chef_3.png" />
<div class="overlay">
<div class="icons">
<i class="bx bxl-facebook"></i>
<i class="bx bxl-twitter"></i>
<i class="bx bxl-instagram"></i>
<i class="bx bxl-pinterest"></i>
</div>
</div>
</div>
<div class="card-chef-title">RACHEL ALIEN</div>
<div class="card-chef-prof">KITCHEN POERTER</div>
<div class="card-chef-description">
Indulge In Our Mouth-Watering Signature Stacks Each Layer Packed
With.
</div>
</div>
</div>
</section>
<footer>
<img
class="dec-footer-1"
src="./img/burger_dec.png"
/>
<img
class="dec-footer-2"
src="./img/pizza_g.png"
/>
<section>
<menu class="footer-contact">
<a href="/">
<img
class="navbar-logo"
src="./img/logo_burguer.png"
alt="Logo"
width="5"
height="5"
/>
</a>
<span>2972 Westheimer Rd. Santa Ana, Illinois 85486</span>
<a
title="Click to send email to developer of this site :)"
href="mailto:[email protected]"
>
<a
style="color: var(--red)"
href="tel:+(084) 456-0789"
>+(084) 456-0789</a
>
</menu>
</section>
<section>
<menu class="footer-menu">
<span class="menu-title">PRODUCTS</span>
<ul>
<li><a href="#">BURGERS</a></li>
<li><a href="#">KING DELIGHT PRODUCTS</a></li>
<li><a href="#">CRISPY FLAVORS</a></li>
<li><a href="#">BREAKFAST PRODUCTS</a></li>
</ul>
</menu>
</section>
<section>
<menu class="footer-menu">
<ul style="margin-top: 36px">
<li><a href="#">KIDS MENUS</a></li>
<li><a href="#">DESSERTS</a></li>
<li><a href="#">BEVERAGES</a></li>
<li><a href="#">SAUCES</a></li>
</ul>
</menu>
</section>
<section>
<menu class="footer-menu">
<span class="menu-title">QUICK LINKS</span>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">MENU</a></li>
<li><a href="#">ABOUT US</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
</menu>
</section>
<section>
<menu
style="margin-top: 2.5rem"
class="footer-menu"
>
<span class="menu-title">OPENING HOURS</span>
<div class="op-hours">MOUNDAY - FRIDAY: <span>8AM - 4PM</span></div>
<div class="op-hours">SATURDAY: <span>8AM - 12AM</span></div>
<div class="social-icons">
<i class="bx bxl-facebook-circle"></i>
<i class="bx bxl-twitter"></i>
<a
href="https://www.instagram.com/eduardoraleixo/"
target="_blank"
>
<i class="bx bxl-instagram-alt"></i>
</a>
<i class="bx bxl-pinterest"></i>
</div>
</menu>
</section>
</footer>
<section class="section-copyrigth">
<span class="copy"
>© 2024 EDUARDO ROCHA ALEIXO . ALL RIGTHS RESERVED</span
>
</section>
</body>
</html>