-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
132 lines (125 loc) · 4.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>
<style>
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
</style>
</head>
<body>
<div class="main1">
<div class="style1">
<div>
<img src="assets\images\image-omelette.jpeg">
</div>
<h2 class="style2">
Sample omelette Recipe
</h2>
<div class="style3">
<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, vegitable or meats</p>
<br>
</div>
<div class="style4">
<div>
<p class="pstyle"><b>Preparation time</b></p>
<br>
<ul class="lipad">
<li>Total: <span class="normal">Approximatley 10 minutes</span></li>
<li>Preparation:<span class="normal">5 minutes</span></li>
<li>Cooking:<span class="normal">5 minutes</span> </li>
</ul>
</div>
</div>
<div>
<br>
<h2 class="styleh22">Ingredients</h2>
</div>
<div class="ingredients">
<ul class="style5">
<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 vegitables, cooked meats, herbs</li>
</ul>
</div>
<br>
<hr>
<div>
<h2 class="styleh22">Instructions</h2>
<br>
<ol class="style6">
<li><b>Beat the eggs:</b> In a bowl, beat the eggs with a pinch of salt and pepper
untill they are well mixed.
You
can add a tablespoon of water or milk for a fluffer 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 meltedand 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 choosen fillings over one half of the omelette.</li>
<li><b>Fold and serve:</b>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><b>Enjoy:</b>Serve hot, with additional salt and pepper if needed</li>
</ol>
<br>
</div>
<br>
<hr>
<div>
<br>
<h2 class="styleh22">Nutrition</h2>
<br>
<p class="style3">The table below shows nutritional values per serving without the additional fillings.
</p>
<br>
</div>
<div class="tablecontainer">
<div class="pstyle1">
<p class="new1">Calories</p>
</div>
<div>
<p class="new2">277kcal</p>
</div>
</div>
<hr>
<div class="tablecontainer">
<div class="pstyle1">
<p class="new1">Carbs</p>
</div>
<div>
<p class="new2">0g</p>
</div>
</div>
<hr>
<div class="tablecontainer">
<div class="pstyle1">
<p class="new1">Protein</p>
</div>
<div>
<p class="new2">20g</p>
</div>
</div>
<hr>
<div class="tablecontainer">
<div class="pstyle1">
<p class="new1">Fat</p>
</div>
<div>
<p class="new2">22g</p>
</div>
</div>
</div>
</div>
</body>
</html>