-
Notifications
You must be signed in to change notification settings - Fork 1
/
solution.html
105 lines (87 loc) · 4.56 KB
/
solution.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="icon" href="mon.jpg" type="image/jpg">
<link rel="stylesheet" href="sol.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Hanunoo&family=Oxygen:wght@300;400;700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<img src="food1.jpg">
<h1 id="head">Simple Spaghetti Recipe</h1>
<div class="para">
<p> Indulge in a classic Italian culinary experience with our easy-to-follow spaghetti recipe, perfect for a comforting and flavorful meal that brings the taste of Italy to your kitchen.</p>
</div>
<div class="subcontainer">
<h1 id="time">Preparation Time</h1>
<ul id="list" >
<li>Total time: 30 minutes</li>
<li>Total time: 30 minutes</li>
<li>Cooking time: 20 minutes</li>
</ul>
</div>
<div class="ingredient">
<h1 id="ingredients">Ingredients</h1>
<ul id="ing_items" class="marker">
<li>200 grams of spaghetti</li>
<li>2 tablespoons of olive oil</li>
<li>3 cloves of garlic, minced</li>
<li>1 onion, finely chopped</li>
<li>400 grams of canned tomatoes, crushed</li>
<li>2 tablespoons of tomato paste</li>
<li>1 teaspoon of dried oregano</li>
<li>1 teaspoon of dried basil</li>
<li>Salt and pepper to taste</li>
<li>Fresh basil leaves for garnish</li>
<li>Grated Parmesan cheese (optional)</li>
</ul>
</div>
<div class="instruction" >
<h1 id="instructions">Instruction</h1>
<ol id="ins_items" class="marker">
<li><b>Fill a large pot with water</b> and bring it to a boil.</li>
<li><b>Add salt to the boiling water</b> and then add the spaghetti.</li>
<li><b>Cook the spaghetti</b> according to the package instructions until it's al dente.</li>
<li><b>While the spaghetti is cooking</b>, heat olive oil in a skillet over medium heat.</li>
<li><b>Add minced garlic and chopped onion</b> to the skillet, and cook until softened and fragrant.</li>
<li><b>Stir in crushed canned tomatoes, tomato paste, dried oregano, and dried basil</b> into the skillet.</li>
<li><b>Season the sauce</b> with salt and pepper to taste.</li>
<li><b>Once the spaghetti is cooked</b>, drain it and add it to the skillet with the sauce.</li>
<li><b>Toss the spaghetti</b> in the sauce until it's well coated.</li>
<li><b>Serve the spaghetti</b> hot, garnished with fresh basil leaves and grated Parmesan cheese if desired.</li>
</ol>
</div>
<div class="table_div">
<h1 class="nutrition" >Nutrition</h1>
<p id="nut_para">The nutritional values of cooked spaghetti per 100 grams are approximately as follows:</p>
<table id="table_body">
<tbody>
<tr id="row" class="one">
<td id="cal">Calories</td>
<td id="num">158 kcal</td>
</tr>
<tr id="row" class="two">
<td id="cal">Carbohydrates</td>
<td id="num">31 grams</td>
</tr>
<tr id="row" >
<td id="cal">Protein</td>
<td id="num">5.8 grams</td>
</tr>
<tr id="row">
<td id="cal">Fat</td>
<td id="num">0.9 grams</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>