-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcb.html
More file actions
66 lines (60 loc) · 1.79 KB
/
cb.html
File metadata and controls
66 lines (60 loc) · 1.79 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>Chicken Biryani Recipe</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: lightblue;
}
.recipe-detail {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 8px black;
}
h1 {
color: blue;
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>Chicken Biryani</h1>
<p align=center>
<img src="cb.jpg" ></p>
<div class="nutrition">
<h2>🍗 Nutrition Facts</h2>
<p>Calories: 500 per serving | Protein: 25g | Fiber: 3g</p>
</div>
<h2>Health Benefits</h2>
<p>Chicken biryani is a protein-rich dish with aromatic spices that aid digestion.</p>
<h2>Instructions</h2>
<ol>
<li>Marinate chicken with yogurt and spices for 1 hour.</li>
<li>Cook basmati rice until 70% done.</li>
<li>Layer the marinated chicken and rice in a pot.</li>
<li>Add fried onions, mint, and coriander leaves.</li>
<li>Cook on low heat for 20-25 minutes (dum cooking).</li>
<li>Serve hot with raita.</li>
</ol>
</div>
</body>
</html>