-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
19 lines (19 loc) · 953 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<header>
<meta charset="utf-8">
<title>Recipe Book</title>
<link rel="stylesheet" href="styles.css">
</header>
<body class="homepage">
<h1 class="hometitle">Odin Recipes</h1>
<img src="img/chef.jpg" class="chef" alt="A silly chef next to a small cooking pot">
<ul class="masterlist">
<li><a class="recipebullet" href="recipes/cheeseburger.html">Cheeseburger</a></li>
<li><a class="recipebullet" href="recipes/jalapeno-popper-dip.html">Jalapeno Popper Dip</a></li>
<li><a class="recipebullet" href="recipes/texas-sheet-cake.html">Texas Sheet Cake</a></li>
<li><a class="recipebullet" href="recipes/grandma-peggys-baked-spaghetti.html">Grandma Peggy's Baked Spaghetti</a></li>
<li><a class="recipebullet" href="recipes/grandma-bettes-potato-soup.html">Grandma Bette's Potato Soup</a></li>
</ul>
</body>
</html>