-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (133 loc) · 5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A simple and quick omelette recipe that's perfect for any meal. Learn how to make a classic omelette with options for fillings like cheese, vegetables, and meats."
/>
<meta
name="keywords"
content="omelette, recipe, easy recipe, cooking, eggs, breakfast"
/>
<meta name="author" content="Styn1s" />
<link rel="preload" href="styles.css" as="style" />
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap"
/>
<title>Omelette Recipe</title>
</head>
<body>
<main class="recipe">
<article class="recipe__content" aria-label="Omelette recipe article">
<img
class="recipe__image"
src="./images/image-omelette.png"
alt="A delicious omelette on a plate"
loading="lazy"
/>
<h1 class="recipe__title">Simple Omelette Recipe</h1>
<section class="recipe__description" aria-label="Recipe description section">
<p class="recipe__text">
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>
</section>
<section class="recipe__time" aria-labelledby="prep-time-heading">
<h2 class="time__title" id="prep-time-heading">Preparation time</h2>
<ul class="time__list">
<li class="time__item"><span class="time__label">Total:</span> Approximately 10 minutes</li>
<li class="time__item"><span class="time__label">Preparation:</span> 5 minutes</li>
<li class="time__item"><span class="time__label">Cooking:</span> 5 minutes</li>
</ul>
</section>
<section class="recipe__ingredients" aria-labelledby="ingredients-heading">
<h2 class="ingredients__title" id="ingredients-heading">Ingredients</h2>
<ul class="ingredients__list">
<li class="ingredients__item">2-3 large eggs</li>
<li class="ingredients__item">Salt, to taste</li>
<li class="ingredients__item">Pepper, to taste</li>
<li class="ingredients__item">1 tablespoon of butter or oil</li>
<li class="ingredients__item">
Optional fillings: cheese, diced vegetables, cooked meats, herbs
</li>
</ul>
</section>
<hr class="recipe__divider"/>
<section class="recipe__instructions" aria-labelledby="instructions__title">
<h2 class="instructions__title" id="instructions__title">Instructions</h2>
<ol class="instructions__list">
<li class="instructions__item">
Beat the eggs:<span class="instructions__item-description">
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 class="instructions__item">
Heat the pan:<span class="instructions__item-description">
Place a non-stick frying pan over medium heat and add butter or
oil.</span
>
</li>
<li class="instructions__item">
Cook the omelette:<span class="instructions__item-description">
Once the butter is melted and bubbling, pour in the eggs. Tilt
the pan to ensure the eggs evenly coat the surface.</span
>
</li>
<li class="instructions__item">
Add fillings (optional):<span class="instructions__item-description">
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 class="instructions__item">
Fold and serve:<span class="instructions__item-description">
As the omelette continues to cook, carefully lift one edge and
fold it over the fillings. Let it cook for another minute, then
slide it onto a plate.</span
>
</li>
<li class="instructions__item">
Enjoy:<span class="instructions__item-description">
Serve hot, with additional salt and pepper if needed.</span
>
</li>
</ol>
</section>
<hr class="recipe__divider"/>
<section class="recipe__nutrition" aria-labelledby="nutrition-heading">
<h2 class="nutrition__title" id="nutrition-heading">Nutrition</h2>
<p class="nutrition__text">
The table below shows nutritional values per serving without the
additional fillings.
</p>
<table class="nutrition__table">
<tr class="nutrition__row">
<td class="nutrition__name">Calories</td>
<td class="nutrition__value">277kcal</td>
</tr>
<tr class="nutrition__row">
<td class="nutrition__name">Carbs</td>
<td class="nutrition__value">0g</td>
</tr>
<tr class="nutrition__row">
<td class="nutrition__name">Protein</td>
<td class="nutrition__value">20g</td>
</tr>
<tr class="nutrition__row" id="last-row">
<td class="nutrition__name" id="fat">Fat</td>
<td class="nutrition__value" id="weight">22g</td>
</tr>
</table>
</section>
</article>
</main>
</body>
</html>