-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtr.html
More file actions
65 lines (60 loc) · 1.82 KB
/
tr.html
File metadata and controls
65 lines (60 loc) · 1.82 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>Tomato Rice 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>Tomato Rice</h1>
<p align=center>
<img src="tr.jpg" alt="Tomato Rice"></p>
<div class="nutrition">
<h2>🍅 Nutrition Facts</h2>
<p>Calories: 300 per serving | Protein: 6g | Fiber: 4g</p>
</div>
<h2>Health Benefits</h2>
<p>Tomato rice is rich in antioxidants and vitamins from tomatoes and spices.</p>
<h2>Instructions</h2>
<ol>
<li>Cook rice and set aside.</li>
<li>Heat oil in a pan and add mustard seeds, curry leaves, and chopped onions.</li>
<li>Add chopped tomatoes, turmeric, and chili powder.</li>
<li>Cook until tomatoes are soft and mushy.</li>
<li>Mix in the cooked rice and garnish with coriander leaves.</li>
<li>Serve hot with raita or papad.</li>
</ol>
</div>
</body>
</html>