forked from vishal02527/My-Strength-Shree-Krishna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prasadam.html
129 lines (125 loc) · 5.59 KB
/
prasadam.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prasadam Section</title>
<link rel="stylesheet" href="prasadam.css">
</head>
<body>
<header>
<div class="heading">
<h1>Prasadam Recipes for Lord Krishna</h1>
</div>
</header>
<main>
<!-- Prasadam Section -->
<section class="prasadam-section">
<div class="recipe-container">
<div class="recipe-card">
<img src="./images/Kheer.jpg"/>
<h3>Kheer</h3>
<p>A delicious sweet rice pudding offered to Lord Krishna.</p>
</div>
<div class="recipe-card">
<img src="./images/Puri.jpg"/>
<h3>Puri</h3>
<p>Deep-fried golden bread offered as a bhog.</p>
</div>
<div class="recipe-card">
<img src="./images/halwa.jpg"/>
<h3>Halwa</h3>
<p>A rich, sweet dish made from semolina and sugar.</p>
</div>
<div class="recipe-card">
<img src="./images/Ladoo.jpg"/>
<h3>Ladoo</h3>
<p>Traditional Indian sweet, made from flour, ghee, and sugar.</p>
</div>
<div class="recipe-card">
<img src="./images/56bhog.jpg"/>
<h3>Chappan Bhog</h3>
<p>A grand feast consisting of 56 varieties of food items offered to Lord Krishna.</p>
</div>
<div class="recipe-card">
<img src="./images/panchamrit.jpg"/>
<h3>Panchamrit</h3>
<p>A holy mixture of five sacred ingredients used in offerings.</p>
</div>
<div class="recipe-card">
<img src="./images/makhanmishri.jpg"/>
<h3>Makhan Mishri</h3>
<p>Sweet butter and sugar offering, Lord Krishna's favorite.</p>
</div>
<div class="recipe-card">
<img src="./images/rajgiraladoo.jpg"/>
<h3>Rajgira Ladoo</h3>
<p>Puffed amaranth seeds bound with jaggery, a healthy prasadam choice.</p>
</div>
<div class="recipe-card">
<img src="./images/Dahi.jpg"/>
<h3>Dahi Bhalla</h3>
<p>A savory yogurt-based dish, offered as a cooling prasadam.</p>
</div>
<div class="recipe-card">
<img src="./images/chanamrit.jpg"/>
<h3>Charnamrit</h3>
<p>A sacred mixture of water, milk, ghee, honey, and yogurt, offered to the deity.</p>
</div>
<div class="recipe-card">
<img src="./images/sabudana.jpg"/>
<h3>Sabudana Khichdi</h3>
<p>A light, savory dish made with sago (tapioca pearls), peanuts, and spices.</p>
</div>
<div class="recipe-card">
<img src="./images/shrikhand.jpg"/>
<h3>Shrikhand</h3>
<p>A creamy and sweet yogurt-based dish flavored with saffron and cardamom.</p>
</div>
<div class="recipe-card">
<img src="./images/mohanbhog.jpg"/>
<h3>Mohan Bhog</h3>
<p>A fragrant wheat flour pudding offered to Lord Krishna.</p>
</div>
<div class="recipe-card">
<img src="./images/thekua.jpg"/>
<h3>Thekua</h3>
<p>A crunchy, deep-fried sweet made from wheat flour, sugar, and ghee.</p>
</div>
<div class="recipe-card">
<img src="./images/besanbarfi.jpg"/>
<h3>Besan Barfi</h3>
<p>A sweet dish made from gram flour, ghee, and sugar.</p>
</div>
<div class="recipe-card">
<img src="./images/tilgul.jpg"/>
<h3>Tilgul</h3>
<p>A traditional sweet made from sesame seeds and jaggery, offered during Makar Sankranti.</p>
</div>
<div class="recipe-card">
<img src="./images/peda.jpg"/>
<h3>Peda</h3>
<p>Small, soft milk-based sweets, flavored with cardamom and sometimes garnished with pistachios.</p>
</div>
<div class="recipe-card">
<img src="./images/bananachips.jpg"/>
<h3>Banana Chips</h3>
<p>Crispy fried banana slices offered as a savory prasadam.</p>
</div>
<div class="recipe-card">
<img src="./images/malpua.jpg"/>
<h3>Malpua</h3>
<p>A sweet, deep-fried pancake made from flour and milk, soaked in sugar syrup.</p>
</div>
<div class="recipe-card">
<img src="./images/badamhalwa.jpg"/>
<h3>Badam Halwa</h3>
<p>A rich halwa made from ground almonds, ghee, and sugar.</p>
</div>
</div>
<button id="homeBtn" onclick="goHome()">Home</button>
</section>
</main>
<script src="prasadam.js"></script>
</body>
</html>