-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (74 loc) · 2.67 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
<!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>
<div class="container">
<img src="assets/images/image-omelette.jpeg" alt="">
<div class="overview">
<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>
</div>
<div class="prep_time">
<h4>Preparation time</h4>
<ul>
<li>Total: Approximately 10 minutes</li>
<li>Preparation: 5 minutes</li>
<li>Cooking: 5 minutes</li>
</ul>
</div>
<div class="ingrediants">
<h3>Ingredients</h3>
<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>
</div>
<div class="instruction">
<h3>Instructions</h3>
<ol>
<li>Beat the eggs: 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>Heat the pan: Place a non-stick frying pan over medium heat and add butter or oil.</li>
<li>Cook the omelette: Once the butter is melted and bubbling, pour in the eggs. Tilt the pan to ensure
the eggs evenly coat the surface.</li>
<li>Add fillings (optional): 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>Fold and serve: 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>Enjoy: Serve hot, with additional salt and pepper if needed.</li>
</ol>
</div>
<div class="nutrition_box">
<h2>Nutrition</h2>
<table>
<tr>
<td>Calories</td>
<td>277kcal</td>
</tr>
<tr>
<td>Carbs</td>
<td>0g</td>
</tr>
<tr>
<td>Protein</td>
<td>20g</td>
</tr>
<tr>
<td>Fat</td>
<td>22g</td>
</tr>
</table>
</div>
</div>
</body>
</html>