-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
51 lines (47 loc) · 1.81 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="wishlist.html">Wishlist</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
</nav>
</header>
<h1>Our Menu</h1>
<table border="1" width="100%" cellpadding="10">
<tr>
<th>Image</th>
<th>Dish Name</th>
<th>Description</th>
</tr>
<tr>
<td><img src="./img/mashroom.jpg" alt="mashroom" width="150"></td>
<td>Mashroom</td>
<td>A juicy beef patty topped with sautéed mushrooms, often paired with melted Swiss cheese for a rich, umami-packed flavor. It’s served on a toasted bun with fresh toppings and sometimes a creamy garlic aioli.
</td>
</tr>
<tr>
<td><img src="./img/bacon.jpg" alt="bacon" width="150"></td>
<td>bacon</td>
<td>zesty burger infused with Mexican spices, topped with ingredients like avocado, jalapeños, and melted cheese. It offers a flavorful kick with a mix of heat, creaminess, and crunch.</td>
</tr>
<tr>
<td><img src="./img/maxican.jpg" alt="maxican" width="150"></td>
<td>maxican</td>
<td>A classic burger featuring a beef patty topped with crispy bacon strips and melted cheese, adding a smoky, savory flavor. Often served with lettuce, tomato, and a tangy sauce for balance</td>
</tr>
</table>
<footer>
<p>© 2024 Our Restaurant</p>
</footer>
</body>
</html>