-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvada.html
More file actions
66 lines (60 loc) · 1.77 KB
/
vada.html
File metadata and controls
66 lines (60 loc) · 1.77 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
<html >
<head>
<title>Vada Recipe</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: lightgreen;
}
.recipe-detail {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 8px black;
}
h1 {
color: green;
text-align: center;
text-shadow: 2px 2px 4px white;
}
img {
width: 50%;
border-radius: 10px;
margin: 10px 0;
height:30%
}
.nutrition {
background: lightyellow;
padding: 15px;
border-radius: 8px;
margin: 10px 0;
}
</style>
</head>
<body>
<div class="recipe-detail">
<h1>Vada</h1>
<p align=center>
<img src="vada.jpg"> </p>
<div class="nutrition">
<h2>🍩 Nutrition Facts</h2>
<p>Calories: 150 per piece | Protein: 5g | Fiber: 2g</p>
</div>
<h2>Health Benefits</h2>
<p>Vada is rich in protein and fiber, making it a filling and nutritious snack.</p>
<h2>Instructions</h2>
<ol>
<li>Soak urad dal for 2-3 hours.</li>
<li>Grind it into a smooth batter.</li>
<li>Add chopped ginger, green chilies, and curry leaves.</li>
<li>Shape the batter into small rounds with a hole in the center.</li>
<li>Deep fry until golden brown and crispy.</li>
<li>Serve hot with coconut chutney.</li>
</ol>
</div>
</body>
</html>