-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (145 loc) · 5.3 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
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon-32x32.png"
/>
<title>Simple Omelette Recipe | Frontend Mentor</title>
<meta
name="description"
content="Learn how to make a simple and delicious omelette in just 10 minutes with this easy-to-follow recipe. Perfect for any meal."
/>
</head>
<body>
<main class="container">
<article
class="card mx-sm-auto mt-sm-4 p-sm-4 border-0 rounded-4 m-0"
style="max-width: 42rem"
>
<figure>
<img
src="assets/images/image-omelette.jpeg"
class="card-img-top rounded-4 p-sm-1"
alt="Simple Omelette"
/>
</figure>
<div class="card-body px-sm-2 pb-sm-0 px-4 pb-5">
<h1>Simple Omelette Recipe</h1>
<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>
<section class="preparation rounded-3">
<h2 class="preparation-title">Preparation Time</h2>
<ul>
<li><strong>Total:</strong> Approximately 10 minutes</li>
<li><strong>Preparation:</strong> 5 minutes</li>
<li><strong>Cooking:</strong> 5 minutes</li>
</ul>
</section>
<section class="preparation-ingredientes">
<h2>Ingredients</h2>
<ul>
<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>
</section>
<section class="preparation-instructions">
<h2>Instructions</h2>
<ol>
<li>
<strong>Beat the eggs:</strong> 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>
<strong>Heat the pan:</strong> Place a non-stick frying pan over
medium heat and add butter or oil.
</li>
<li>
<strong>Cook the omelette:</strong> Once the butter is melted
and bubbling, pour in the eggs. Tilt the pan to ensure the eggs
evenly coat the surface.
</li>
<li>
<strong>Add fillings (optional):</strong> 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>
<strong>Fold and serve:</strong> 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>
<strong>Enjoy:</strong> Serve hot, with additional salt and
pepper if needed.
</li>
</ol>
</section>
<section>
<h2>Nutrition</h2>
<p>
The table below shows nutritional values per serving without the
additional fillings.
</p>
<table class="table">
<tbody>
<tr class="first-row">
<td class="nutrient">Calories</td>
<td class="value">277kcal</td>
</tr>
<tr>
<td class="nutrient">Carbs</td>
<td class="value">0g</td>
</tr>
<tr>
<td class="nutrient">Protein</td>
<td class="value">20g</td>
</tr>
<tr class="last-row">
<td class="nutrient">Fat</td>
<td class="value">22g</td>
</tr>
</tbody>
</table>
</section>
</div>
</article>
</main>
<footer class="text-center my-4 d-sm-grid d-none">
<p class="attribution">
Challenge by
<a
href="https://www.frontendmentor.io/solutions/recipe-page-7k_7AJxq-q"
target="_blank"
>Frontend Mentor</a
>. Coded by
<a href="https://github.com/deusdeteneto" target="_blank">Neto</a>.
</p>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>