-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
55 lines (55 loc) · 3.25 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
52
53
54
55
<!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="styles.css">
</head>
<body>
<div id="menubg">
<div class="container">
<h2>Our Menu</h2>
<div class="menu-item">
<h3>Chole Bhature</h3>
<img src="Media/chole-bhature-recipe.jpg" style="border-radius: 10px;" alt="Chole Bhature">
<p>Chole Bhature is a popular North Indian dish that consists of spicy chickpea curry (chole) served with deep-fried bread (bhature). It's a hearty and flavorful meal that's often enjoyed as a breakfast or lunch treat.</p>
<button>Add to Order</button>
<button>Remove Order</button>
</div>
<div class="menu-item">
<h3>Malai Chaap</h3>
<img src="Media/mchaap.jpg" style="border-radius: 10px;" alt="Malai Chaap">
<p>Malai Chaap is a delectable North Indian vegetarian delight, made from marinated soya chunks that are grilled to perfection and slathered in a rich, creamy sauce. This succulent dish is known for its melt-in-the-mouth texture and mildly spiced, creamy flavor profile.</p>
<button>Add to Order</button>
<button>Remove Order</button>
</div>
<div class="menu-item">
<h3>Baati Chokha</h3>
<img src="Media/53188495.webp" style="border-radius: 10px;" alt="Baati Chokha">
<p>Baati Chokha is a traditional dish from the Indian state of Bihar, featuring baked wheat flour dumplings (baati) paired with a savory mashed vegetable mix (chokha) made from roasted eggplant, tomatoes, and potatoes. This hearty meal is a rustic delight, known for its earthy flavors and wholesome ingredients.</p>
<button>Add to Order</button>
<button>Remove Order</button>
</div>
<div class="menu-item">
<h3>Thaali</h3>
<img src="Media/e1dad5315972c8a9db86fb01d69c7ecb.jpg" style="border-radius: 10px;" alt="Thaali">
<p>An Indian Thali is a vibrant, platter-style meal featuring an assortment of dishes including rice, bread, curries, dals, chutneys, and sweets, offering a complete and balanced dining experience.</p>
<button>Add to Order</button>
<button>Remove Order</button>
</div>
<div class="menu-item">
<h3>Dosa</h3>
<img src="Media/Plain-Dosa.webp" style="border-radius: 10px;" alt="Dosa">
<p>Dosa is a beloved South Indian dish, made from a fermented batter of rice and lentils, cooked into a thin, crispy pancake. It's typically served with a variety of chutneys and sambar, offering a delightful combination of flavors and textures.</p>
<button>Add to Order</button>
<button>Remove Order</button>
</div>
<div class="nav-buttons">
<a href="order.html">Order Summary</a>
<a href="index.html">Home</a>
</div>
</div>
</div>
</body>
</html>