-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpr.html
More file actions
65 lines (59 loc) · 1.72 KB
/
pr.html
File metadata and controls
65 lines (59 loc) · 1.72 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
<html>
<head>
<title>Paneer Roti Recipe</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: lightpink;
}
.recipe-detail {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 8px black;
}
h1 {
color: purple;
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>Paneer Roti</h1>
<p align=center>
<img src=pr.jpg></p>
<div class="nutrition">
<h2>🧀 Nutrition Facts</h2>
<p>Calories: 200 per roti | Protein: 8g | Fiber: 2g</p>
</div>
<h2>Health Benefits</h2>
<p>Paneer roti is rich in protein and calcium, making it a healthy dinner option.</p>
<h2>Instructions</h2>
<ol>
<li>Knead wheat flour into a soft dough.</li>
<li>Mix crumbled paneer with spices and herbs.</li>
<li>Stuff the paneer mixture into the dough and roll into rotis.</li>
<li>Cook on a hot tawa until golden brown.</li>
<li>Serve hot with pickle or yogurt.</li>
</ol>
</div>
</body>
</html>