-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (82 loc) · 3.65 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
<!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">
<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=Outfit:wght@100..900&family=Young+Serif&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<section class="card container">
<div clas="img_imagen">
<img class="img" src="assets/images/image-omelette.jpeg" alt="">
</div>
<header class="header">
<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>
</header>
<section class="preparation_time">
<h3>Preparation time</h3>
<ul class="list">
<li>Total: <b>Approximately 10 minutes</b></li>
<li>Preparation: <b>5 minutes</b></li>
<li>Cooking: <b>5 minutes</b></li>
</ul>
</section>
<section class="ingredients">
<h2>Ingredients</h2>
<ul class="list_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>
</section>
<section class="instructions">
<h2>Instructions</h2>
<ol class="instruction_lista">
<li><b>Beat the eggs:</b> 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><b>Heat the pan:</b> Place a non-stick frying pan over medium heat and add butter or oil.</li>
<li><b>Cook the omelette:</b> Once the butter is melted and bubbling, pour in the eggs. Tilt the pan to ensure the eggs evenly coat the surface.</li>
<li><b>Add fillings (optional):</b> 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><b>Fold and serve:</b> As the omelette continues to cook, carefully lift one</li>
<li><b>Enjoy:</b> Serve hot, with additional salt and pepper if needed.</li>
</ol>
</section>
<section class="nutrition">
<h2>Nutrition</h2>
<p class="nutrition_description">The table below shows nutritional values per serving without the additional fillings.</p>
<div>
<div class="nutrition_table">
<p>Calories</p>
<p class="nutrition_date">277kcal</p>
</div>
<div class="nutrition_table">
<p>Carbs</p>
<p class="nutrition_date">0g</p>
</div>
<div class="nutrition_table">
<p>Protein</p>
<p class="nutrition_date">20g</p>
</div>
<div class="nutrition_table">
<p>Fats</p>
<p class="nutrition_date">22g</p>
</div>
</div>
</section>
<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/Grymbo">Javier Gonzalez - Grymbo</a>.
</div>
</section>
</body>
</html>