-
Notifications
You must be signed in to change notification settings - Fork 5
/
dinner.html
62 lines (58 loc) · 2.1 KB
/
dinner.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="dinner.css">
<title>Exotic Dinner Menu</title>
</head>
<body>
<header>
<h1>Exotica Dinner Menu</h1>
</header>
<main>
<div class="menu">
<!-- Dish 1 -->
<div class="dish">
<img src="dish1.jpg" alt="Dish 1">
<h2>Green Sushi</h2>
<p>sorted Vegetables with Masha Masala covered in Rice </p>
<span class="price">$10</span>
</div>
<div class="dish">
<img src="dish2.jpg" alt="Dish 1">
<h2>Dum Biryani</h2>
<p>Made with exotic Indian Spices,Steamed Rice with Chicken</p>
<span class="price">$11</span>
</div>
<div class="dish">
<img src="dish3.jpg" alt="Dish 1">
<h2>Caviar</h2>
<p>Fresh Caught Caviar steamed to Perfection Complimented with Tuna and Pepper </p>
<span class="price">$12</span>
</div>
<div class="dish">
<img src="dish4.jpg" alt="Dish 1">
<h2>Camarao No Leite De Coco</h2>
<p>One Pot Shrimp in Coconut Sauce</p>
<span class="price">$19</span>
</div>
<div class="dish">
<img src="dish5.jpg" alt="Dish 1">
<h2>Kashmiri Gushtaba</h2>
<p>Meatball Delicacy Made From Mutton Minced With Spices</p>
<span class="price">$4</span>
</div>
<div class="dish">
<img src="dish6.jpg" alt="Dish 1">
<h2>Gajar Halwa</h2>
<p>Grated Red Delhi Carrots Mixed with Sugar, Khoya and Nuts. </p>
<span class="price">$100</span>
</div>
<!-- Add more dishes here -->
<!-- Dish 2, Dish 3, ... -->
</div>
</main>
<script src="dinner.js"></script>
</body>
</html>