forked from Technigo/js-project-business-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
82 lines (71 loc) · 2.64 KB
/
menu.html
File metadata and controls
82 lines (71 loc) · 2.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="top"></div> <!-- Smooth scroll -->
<header>
<div class="navbar">
<div class="logo">
<a href="#top"><img src="img/juizy-burger-logo.png" alt="Juizy Burger"></a>
</div>
<div class="menu-toggle">☰</div>
<div class="navbar-right">
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<button id="dark-mode-toggle">🌙</button>
</div>
</div>
</header>
<main>
<h1 class="menu-header">Our Menu</h1>
<section class="menu">
<div class="menu-item">
<img src="img/juizy-classic.jpg" alt="Juizy Classic">
<h2>Juizy Classic</h2>
<p>Our classic burger made with 100% fresh beef, topped with cheese, lettuce, tomato, and our special sauce.</p>
<p class="price">€6.99</p>
</div>
<div class="menu-item">
<img src="img/gourmet-delight.jpg" alt="Gourmet Delight">
<h2>Gourmet Delight</h2>
<p>For those who crave something more, this burger is made with premium beef, bacon, avocado, and our signature sauce.</p>
<p class="price">€8.99</p>
</div>
<div class="menu-item">
<img src="img/vegetarian-bliss.jpg" alt="Vegetarian Bliss">
<h2>Vegetarian Bliss</h2>
<p>Our vegetarian burger is made with a plant-based patty, fresh lettuce, tomato, and melted cheese.</p>
<p class="price">€7.99</p>
</div>
<div class="menu-item">
<img src="img/family-favorites.jpg" alt="Family Favorites">
<h2>Family Favorites</h2>
<p>Perfect for sharing, this burger is made with 100% fresh beef, cheese, lettuce, tomato, and our special sauce.</p>
<p class="price">€12.99</p>
</div>
</section>
</main>
<footer>
<div class="footer">
<p>
Follow us on
<a href="https://facebook.com" target="_blank">Facebook</a>
<a href="https://instagram.com" target="_blank">Instagram</a>
and <a href="https://twitter.com" target="_blank">Twitter</a> |
<a href="contact.html">Contact Us</a> |
<a>Privacy Policy</a>
</p>
<p>© 2025 <strong>Juizy Burger</strong>. All Rights Reserved. | Developed & Designed by
<strong><a href="https://github.com/DevByRico" target="_blank">DevByRico</a></strong></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>