-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpasta.html
More file actions
64 lines (58 loc) · 1.71 KB
/
pasta.html
File metadata and controls
64 lines (58 loc) · 1.71 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
<html>
<head>
<title>Pasta 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>Pasta</h1><p align=center>
<img src="pasta.jpg" alt="Pasta"></p>
<div class="nutrition">
<h2>🍝 Nutrition Facts</h2>
<p>Calories: 400 per serving | Protein: 10g | Fiber: 3g</p>
</div>
<h2>Health Benefits</h2>
<p>Pasta is a good source of carbohydrates and can be made healthier with veggies.</p>
<h2>Instructions</h2>
<ol>
<li>Boil pasta until al dente.</li>
<li>Heat olive oil in a pan and sauté garlic and onions.</li>
<li>Add chopped tomatoes, basil, and oregano.</li>
<li>Mix in the cooked pasta and grated cheese.</li>
<li>Serve hot with garlic bread.</li>
</ol>
</div>
</body>
</html>