-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (29 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<title>Odin Recipes</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles-index.css">
</head>
<body>
<div class="main">
<div class="space"></div>
<h1 class="header_one">Odin Recipes</h1>
<div class="space"></div>
<img src="images/cover.jpg" alt="Cover showing variety of Food">
<div class="space image"></div>
</div>
<div class="list">
<ul class="list">
<li><button><a href="recipes/lasagna.html">Lasagna Recipe</a></button></li>
<li><button><a href="recipes/golden-sweet-cornbread.html">Golden Sweet Cornbread Recipe</a></button></li>
<li><button><a href="recipes/mac-and-cheese.html">Mac and Cheese Recipe</a></button></li>
<li><button><a href="recipes/pumpkin-pie.html">Pumpkin Pie Recipe</a></button></li>
</ul>
</div>
<div class="anchor space"></div>
<div class="anchor last">
<a class="anchor last" href="https://www.theodinproject.com"><em>Visit The Odin Project!</em></a>
</div>
</body>
</html>