-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (107 loc) · 4.81 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
<!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>
<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=Figtree:ital,wght@0,300..900;1,300..900&family=Kalnia+Glaze:[email protected]&family=Outfit:[email protected]&family=Young+Serif:[email protected]&display=swap"
rel="stylesheet" />
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<div class="main">
<div class="container-recipe">
<img class="image-omelette" src="./assets/images/image-omelette.jpeg" alt="Image omelette" />
<div class="container-mobile">
<h1 class="title">Simple Omelette Recipe</h1>
<p class="introduction">
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 class="container-preparation">
<h3 class="title-preparation">Preparation time</h3>
<ul class="time-preparation">
<li><span>Total:</span> Approximately 10 minutes</li>
<li><span>Preparation:</span> 5 minutes</li>
<li><span>Cooking:</span> 5 minutes</li>
</ul>
</div>
<h2 class="title-ingredients">Ingredients</h2>
<ul class="ingredients">
<li>2-3 large eggs</li>
<li>Salt, to taste</li>
<li>Pepper, to taste</li>
<li>1 tablespoon of butter or oil</li>
<li>
Optional fillings: cheese, diced vegetables, cooked meats, herbs
</li>
</ul>
<hr />
<h2 class="title-section">Instructions</h2>
<ol class="instructions">
<li> <span>Beat the eggs:</span> In a bowl, beat the eggs with a pinch of salt and
Beat the eg 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.
</li>
<li> <span>Heat the pan:</span> Place a non-stick frying pan over medium heat and add
Place a non-stick frying pan over medium heat and add butter or oil.
</li>
<li> <span>Cook the omelette:</span> Once the butter is melted and bubbling, pour in
Once the butter is melted and bubbling, pour in the eggs. Tilt the pan to ensure the eggs evenly coat the
surface.
</li>
<li> <span>Add fillings (optional):</span> When the eggs begin to set at the edges but
When the eggs begin to set at the edges but are still slightly runny in the middle, sprinkle your chosen
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.
</li>
<li> <span>Fold and serve:</span> As the omelette continues to cook, carefully lift
As the omelette continues to cook, carefully lift one edge and fold it over the fillings. Let it cook for
another
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.
</li>
<li> <span>Enjoy:</span> Serve hot, with additional salt and pepper if needed.
</ol>
<hr color="white" />
<h2 class="title-section">Nutrition</h2>
<p class="table-information">
The table below shows nutritional values per serving without the
additional fillings.
</p>
<table class="nutrition">
<tr>
<td class="macronutrient">Calories</td>
<td class="serving">277kcal</td>
</tr>
<tr>
<td class="macronutrient">Carbs</td>
<td class="serving">0g</td>
</tr>
<tr>
<td class="macronutrient">Protein</td>
<td class="serving">20g</td>
</tr>
<tr>
<td class="macronutrient last-td">Fat</td>
<td class="serving last-td">22g</td>
</tr>
</table>
</div>
</div>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a
href="https://github.com/0xblu">0xblu</a>.
</div>
</div>
</body>
</html>