odin-recipes/index.html
cheeks b0cb3e465d Completed adding pbfudge.html, fruitdip.html, and
sugar-cookies.html. Edited index.html to
reflect new changes. Added an image for each recipe.
Modified title on cheese-rollup.html
2024-06-23 19:56:32 -04:00

18 lines
541 B
HTML

<!DOCTYPE html>
<html lang="en">
<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/cheese-rollup.html">Cheese-Rollup</a></li>
<li><a href="./recipes/sugar-cookies.html">Sugar Cookies</a></li>
<li><a href="./recipes/fruitdip.html">Fruit Dip</a></li>
<li><a href="./recipes/pbfudge.html">Peanut Butter Fudge</a></li>
</ol>
</body>
</html>