sugar-cookies.html. Edited index.html to reflect new changes. Added an image for each recipe. Modified title on cheese-rollup.html
18 lines
541 B
HTML
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> |