-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfrontend.html
More file actions
82 lines (74 loc) · 2.53 KB
/
frontend.html
File metadata and controls
82 lines (74 loc) · 2.53 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Restaurant Menu</title>
<link rel="stylesheet" href="Front.css">
</head>
<body>
<!-- Header -->
<header>
<h1>Welcome to Foodie's Paradise</h1>
<p>Explore our delicious menu below</p>
</header>
<!-- Menu Sections -->
<section id="menu">
<h2>Our Menu</h2>
<!-- Appetizers -->
<div class="menu-section">
<h3>Appetizers</h3>
<div class="menu-item">
<h4>Bruschetta</h4>
<p>Grilled bread with tomato, garlic, and basil</p>
<span class="price">$8.00</span>
</div>
<div class="menu-item">
<h4>Stuffed Mushrooms</h4>
<p>Mushrooms filled with cheese and garlic</p>
<span class="price">$9.00</span>
</div>
</div>
<div class="image-container">
<img src="Samosa.jpg" alt="Responsive Image">
</div>
<div class="image-containers"></div>
<!-- <img src="idli.jpeg" alt="Responsive Image"> -->
</div>
<!-- Mains -->
<div class="menu-section">
<h3>Main Courses</h3>
<div class="menu-item">
<h4>Grilled Salmon</h4>
<p>Served with a lemon butter sauce and vegetables</p>
<span class="price">$18.00</span>
</div>
<div class="menu-item">
<h4>Steak</h4>
<p>Chargrilled steak served with fries</p>
<span class="price">$20.00</span>
</div>
</div>
<!-- Desserts -->
<div class="menu-section">
<h3>Desserts</h3>
<div class="menu-item">
<h4>Chocolate Lava Cake</h4>
<p>Rich chocolate cake with a gooey center</p>
<span class="price">$7.00</span>
</div>
<div class="menu-item">
<h4>Cheesecake</h4>
<p>Classic cheesecake with strawberry topping</p>
<span class="price">$6.00</span>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Foodie's Paradise. All Rights Reserved.</p>
</footer>
<script src="JAVA.js"></script>
</body>
</html>