-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (72 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="box">
<img src="images/image-omelette.jpeg" alt="Recipe image">
<h1>Simple Omelette Recipe</h1>
<p>An easy and quick dish,perfect for any meal.This classic omelette combine beaten eggs <br>
cooked to perfection,optinally filed withyour choice of cheese,vegitables,or meats.
</p>
<div class="unorder">
<h3>Preparation Time</h3>
<ul>
<li><Strong>Total:</Strong>
Approximately 10 minutes</li>
<li><Strong>Preparation:</Strong>
5 minutes</li>
<li><Strong>Cookked:</Strong>
5 minutes</li>
</ul>
</div>
<div class="ingre">
<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,dicide vegetables,cooked meats,herbs</li>
</ul>
</div>
<hr>
<div class="ins">
<h2>Instructions</h2>
<ol>
<li><strong>Beat the eggs:</strong> In a bowl,beat the egg with a pinch of salt and pepper until they are <br> well mixed.You can add a tablespoon of water or milk for a fluffier texture</li>
<li><strong>Heat the pan:</strong> Placea non-stick frying pan over medium heat add butter or oil</li>
<li><strong>Cook the omellete:</strong>Once the butter is melted and bubbing,pour in the eggs.Tilt the <br> pan to ensure the egg evenly coat the surface. </li>
<li><strong>Add fillings(optional):</strong>When the egg begin to set the edges but as still slighty <br> runny in the middel,sprinkle your chosen fillings over once half of the omelette</li>
<li><strong>Fold and serve:</strong>As the ommilate continue to cook,carefully lift one edge and fold it br over filings.let it cook for another minute,then slide it on to a palate</li>
<li><strong>Enjoy:</strong>Serve hot,with additional salt and pepper if needed</li>
</ol>
</div>
<hr>
<div class="nutrition">
<h2>Nutrition</h2>
<span>The table below shows nutritonal value per serving without the additional fillings</span>
<table>
<tr>
<th>Calories </th>
<td>227kcal</td>
</tr>
<tr>
<th>Carbs </th>
<td>0g</td>
</tr>
<tr>
<th>Protein </th>
<td>20g</td>
</tr>
<tr>
<th>Fat </th>
<td>22g</td>
</table>
</div>
</div>
</body>