Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<body>
<h1>Recipes that have a special place in my heart</h1>
<ul>
<li>
<a href="recipe/epic.html">A snack (toast) to remember</a>
</li>
<li>
<a href="recipe/egg.html">Egg city, I am the mayor</a>
</li>
Expand Down
25 changes: 25 additions & 0 deletions recipe/epic.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Butter Toast</title>
</head>

<body>
<a href="../index.html">home</a>
<h1>Butter Toast</h1>
<h2>Ingredients</h2>
<ul>
<li>2 slices of bread</li>
<li>Butter</li>
</ul>
<h2>Steps</h2>
<ol>
<li>Toast the bread until golden brown.</li>
<li>Spread butter on the warm toast.</li>
<li>Serve immediately.</li>
</ol>
</body>

</html>