forked from hack4impact-calpoly/bootcamp-project-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gkh.html
74 lines (74 loc) · 3.36 KB
/
gkh.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
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="top-panel-recipe">
<h1>Swayam's Recipes</h1>
<div class="top-left-panel">
<h2 class="panel-button"><a href="index.html">Home</a></h2>
<h2 class="panel-button"><a href="about.html">About Me</a></h2>
</div>
</div>
<div class="recipe-box">
<div>
<h1>Gajar Ka Halwa</h1>
<h2>Ingredients</h2>
<div class="ingredients">
<ul>
<li class="ingredient"><label class="container">1 Kg Carrot
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
<li class="ingredient"><label class="container">1 1/2 litre Milk
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
<li class="ingredient"><label class="container">8 Green cardamoms
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
<li class="ingredient"><label class="container">5-7 tbsp Ghee
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
<li class="ingredient"><label class="container">2 tbsp Raisins
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
<li class="ingredient"><label class="container">1 tbsp Almonds, shredded
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
<li class="ingredient"><label class="container">2 tbsp Dates, chopped
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
<li class="ingredient"><label class="container">5-7 tbsp Sugar
<input type="checkbox">
<span class="checkmark"></span>
</label></li>
</div>
<h2>Instructions</h2>
<div class="instructions">
<ol>
<li>Peel and grate the carrots.</li>
<li>Simmer in milk with the cardamom until liquid evaporates.</li>
<li>Heat ghee in a heavy pan and add the carrot mixture.</li>
<li>Cook over a gentle flame for 10-15 minutes.</li>
<li>Stir in sugar and continue cooking until the halwa turns deep reddish color.</li>
<li>Stir in dried fruit and serve.</li>
</ol>
</div>
</div>
<div>
<img class="thumbnail-large" alt="Gajar Ka Halwa" src="https://www.cubesnjuliennes.com/wp-content/uploads/2020/06/Instant-Pot-Gajar-Halwa-With-Condensed-Milk.jpg"/>
</div>
</div>
</body>
</html>