-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Odin Recipes</title>
</head>
<body>
<h1>Odin Recipes</h1>
<a href="./recipes/lasagna.html">Lasagna</a>
<img src="./images/lasagna.jpeg">
<h2>Lasagna</h2>
<p>Making lasagna can be time-consuming, but the results are
well worth the wait. You'll find a detailed ingredient
list and step-by-step instructions in the recipe below,
but let's go over the basics:</p>
<h4>Ingredients</h4>
<ul>
<li>Meat</li>
<li>Onions and Garlic</li>
<li>Tomato Products</li>
<li>Sugar</li>
<li>Spices and Seasonings</li>
<li>Lasagna Noodles</li>
<li>Cheeses</li>
<li>Egg</li>
</ul>
<h4>Steps</h4>
<ol>
<li>Make the meat sauce</li>
<li>Cook the noodles</li>
<li>Make the ricotta mixture</li>
<li>Layer the lasagna according to recipe instructions</li>
<li>Cover with foil and bake</li>
<li>Let the lasagna rest before serving</li>
</ol>
</body>
</html>