-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe.html
39 lines (36 loc) · 1.76 KB
/
recipe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Book Page</title>
<style>
td{
background-color: antiquewhite;
}
</style>
</head>
<body style="padding: 10%;">
<center><h1>Recipe Book</h1>
<div>
<table>
<tr style="background-color: aquamarine;">
<th>Recipe</th>
<th>Ingredients</th>
<th>Methods</th>
</tr>
<tr>
<th style="background-color: rgb(247, 144, 179);">Rice</th>
<td>1-Rice(100g)<br>2-Water(250ml) <br>3-Salt(if needed)</td>
<td>Clean the rice with fresh water then pour the water in cooker the add the rice and add water to it then close the lis and put the cooker on high flame till the 1st wisel comes then turn off the flame and wait for cooker to cool-down and serve it..</td>
</tr>
<tr>
<th style="background-color: rgb(247, 144, 179);">Spicy Maggie</th>
<td>1-A pack of maggie<br>2-Ginger paste<br>3-Chopped Garlic<br>4-Chilli Powder <br>5-Salt <br>6-Water</td>
<td>Put the pan on stove and pour 10ml of oil as it heats up put 1 spoon of Ginger paste and chopped garlic, stare it till it appears golden, then gentally pour 150ml water to it and then put maggie masala,1/4 spoon of Chilli powder and salt(tastewise) then put maggie noodles to it as cook it at low flame stare it few times in-between till the water wanished then serve it hot hot.. </td>
</tr>
</table>
</div>
</center>
</body>
</html>