-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc67d49
commit 7e128eb
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Odin</title> | ||
</head> | ||
<body> | ||
<h1>Odin Recipes</h1> | ||
<ul> | ||
<li><a href="./recipe/lasagna.html">Lasagna</a></li> | ||
</ul> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<h1>Lasagna</h1> | ||
<img src="/lasagna.jpg" alt="Lasagna" height="480" width="640"/> | ||
<h2>Description</h2> | ||
<p> | ||
Lasagna is a wide,flat sheet of pasta. | ||
Lasagna can refer to either the type of noodle or to the | ||
typical lasagna dish which is a dish made with several | ||
layers of lasagna sheets with sauce and other ingredients, | ||
such as meats and cheese,between the lasagna noodles. | ||
</p> | ||
|
||
<h2> | ||
Ingredients | ||
</h2> | ||
<ul> | ||
<li>Meat</li> | ||
<li>Sausage</li> | ||
<li>Red Wine</li> | ||
<li>Ricotta cheese</li> | ||
<li>Noodles</li> | ||
<li>Onion</li> | ||
<li>Garlic</li> | ||
<li>Tomato sauce</li> | ||
</ul> | ||
<h2> | ||
Steps | ||
</h2> | ||
<ol> | ||
<li>Cook the meat</li> | ||
<li>Cook the noodles</li> | ||
<li>Make the cheese layers</li> | ||
<li>Assemble the lasagna</li> | ||
<li>Bake the lasagna</li> | ||
</ol> | ||
|
||
</body> | ||
</html> |