-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (82 loc) · 3.33 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
<!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>Foodie Hamburger</title>
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<div class="main-content">
<header>
<div class="header-content">
<div class="logo">
<img src="./IMG/logo.svg" alt="logo" />
</div>
<div class="hamburger-menu-container">
<div class="hamburger-menu">
<span class="hamburger-icon">☰</span>
</div>
</div>
<nav>
<span class="close-icon">×</span>
<!-- × it create x cross sign -->
<a href="#top-picks">Top Picks</a>
<a href="#whooper">Whopper</a>
<a href="#stunner-menu">Stunner Menu</a>
<a href="#new-foodie-collection">New Foodie Collection</a>
<a href="#deal-of-the-day">Deal of the Day</a>
</nav>
</div>
</header>
<main>
<section class="hero-section">
<div class="img-container">
<img src="https://t4.ftcdn.net/jpg/02/84/46/89/360_F_284468940_1bg6BwgOfjCnE3W0wkMVMVqddJgtMynE.jpg" alt="hero-image" />
</div>
<p>Well, You can’t resist anymore!</p>
</section>
<section id="top-picks" class="section">
<h2>Top Picks</h2>
<div class="img-container">
<img src="https://www.shutterstock.com/image-photo/indian-tandoori-chicken-items-best-260nw-2189792441.jpg" alt="burger-1" />
</div>
</section>
<section id="whooper" class="section">
<h2>Whopper</h2>
<div class="img-container">
<img src="https://e0.pxfuel.com/wallpapers/206/969/desktop-wallpaper-chicken-biryani-in-greater-noida-hyderabadi-chicken.jpg" alt="burger-2" />
</div>
</section>
<section id="stunner-menu" class="section">
<h2>Stunner Menu</h2>
<div class="img-container">
<img src="https://c1.wallpaperflare.com/preview/973/361/77/barbecue-meat-grill-grilled-meats.jpg" alt="burger-3" />
</div>
</section>
<section id="new-foodie-collection" class="section">
<h2>New Foodie Collection</h2>
<div class="img-container">
<img src="https://w0.peakpx.com/wallpaper/574/926/HD-wallpaper-food-indian-food-chicken-soup.jpg" alt="burger-5" />
</div>
</section>
<section id="deal-of-the-day" class="section">
<h2>Deal of the Day</h2>
<div class="img-container">
<img src="https://st2.depositphotos.com/4513173/6656/i/950/depositphotos_66568599-stock-photo-delicious-tandoori-chicken-legs.jpg" alt="burger-5" />
</div>
</section>
<footer>
<h3 class="go-to-top"><a href="#">Go to Top </a></h3>
<p class="footer-text">Made with ❤️ by Varsha </p>
</footer>
</main>
</div>
</body>
</html>