-
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.
Added index.html and recipes/lasasgna.html, slightly edited
- Loading branch information
Showing
2 changed files
with
38 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,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="CL"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Odin Recipes</title> | ||
</head> | ||
|
||
<body> | ||
<h1>Odin Recipes</h1> | ||
<ol> | ||
<li><a href="recipes/lasagna.html">Lasagna</a></li> | ||
</ol> | ||
|
||
</body> | ||
|
||
</html> |
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,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Recipe: Lasagna</title> | ||
</head> | ||
|
||
<body> | ||
<h1>Recipe: Lasagna</h1> | ||
<img src="https://www.allrecipes.com/thmb/9ErE7RrzzpeOQ3Engk2yWtnLlX4=/0x512/filters:no_upscale():max_bytes(150000):strip_icc()/23600-worlds-best-lasagna-DDMFS-4x3-1196-24c5401652934ffb96d3d94bc9fbe2d7.jpg" | ||
alt="A picture of lasagna"> | ||
|
||
<h2>This lasagna recipe takes a little work, but it is so satisfying and filling that it's worth it!</h2> | ||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Odit, porro aut iusto ducimus molestias, quod dolorem | ||
sunt quisquam vitae, rem accusamus! Mollitia ad odit dolor. Error officia sapiente beatae suscipit!</p> | ||
</body> | ||
|
||
</html> |