-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (150 loc) · 4.89 KB
/
index.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon-32x32.png"
/>
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Recipe page</title>
</head>
<body>
<main role="main">
<header>
<img src="assets/images/image-omelette.jpeg" alt="omelette image" />
</header>
<section>
<div class="description">
<p>Simple Omelette Recipe</p>
<p>
An easy and quick dish, perfect for any meal. This classic omelette
combines beaten eggs cooked to perfection, optionally filled with
your choice of cheese, vegetables, or meats.
</p>
</div>
<div class="seconde-section">
<p>Preparation time</p>
<ul>
<li>
<span> Total:</span>
<span class="description-list">Approximately 10 minutes</span>
</li>
<li>
<span> Preparation:</span>
<span class="description-list">5 minutes</span>
</li>
<li>
<span> Cooking:</span>
<span class="description-list">5 minutes</span>
</li>
</ul>
</div>
<div class="three-section">
<p>Ingredients</p>
<ul>
<li><span class="description-list"> 2-3 large eggs </span></li>
<li><span class="description-list">Salt, to taste</span></li>
<li><span class="description-list">Pepper, to taste</span></li>
<li>
<span class="description-list"
>1 tablespoon of butter or oil</span
>
</li>
<li>
<span class="description-list">
Optional fillings: cheese, diced vegetables, cooked meats, herbs
</span>
</li>
</ul>
</div>
<div class="three-section">
<p>Instructions</p>
<ol>
<li>
<span>Beat the eggs</span
><span class="description-list">
In a bowl, beat the eggs with a pinch of salt and pepper until
they are well mixed. You can add a tablespoon of water or milk
for a fluffier texture.
</span>
</li>
<li>
<span>Heat the pan:</span
><span class="description-list">
Place a non-stick frying pan over medium heat and add butter or
oil.
</span>
</li>
<li>
<span>Cook the omelette:</span
><span class="description-list">
Once the butter is melted and bubbling, pour in the eggs.
</span>
</li>
<li>
<span> Add fillings (optional):</span
><span class="description-list">
When the eggs begin to set at the edges but are still slightly
runny in the middle, sprinkle your chosen fillings over one half
of the omelette.
</span>
</li>
<li>
<span> Fold and serve:</span
><span class="description-list">
As the omelette continues to cook, carefully lift one edge and
fold it over the fillings.
</span>
</li>
<li>
<span> Enjoy:</span
><span class="description-list">
Serve hot, with additional salt and pepper if needed.
</span>
</li>
</ol>
</div>
<div class="three-section the-last">
<p>Nutrition</p>
<p>
The table below shows nutritional values per serving without the
additional fillings.
</p>
<div class="info">
<p>
<span class="description-list last">Calories</span>
<span>277kcal</span>
</p>
<p>
<span class="description-list last">Carbs</span>
<span>0g</span>
</p>
<p>
<span class="description-list last">Protein</span>
<span>20g</span>
</p>
<p>
<span class="description-list last">Fat</span>
<span>22g</span>
</p>
</div>
</div>
</section>
</main>
<div class="attribution">
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a
href="https://www.frontendmentor.io/profile/Marcellino9"
target="_blank"
>Marcellino</a
>.
</div>
</body>
</html>