-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Odin Recipes Website</title>
</head>
<body>
<div class="homepage hero">
<h1>Odin Recipes</h1>
<p>Needing some inspiration for tonight's dinner? Try some of the suggestions below...</p>
</div>
<div class="homepage recipe-list">
<div class="recipe-card">
<img class="card-image" src="./images/lasagna-recipe.png">
<a class="btn" href="./recipes/lasagna.html">Lasagna Recipe</a>
</div>
<div class="recipe-card">
<img class="card-image" src="./images/chicken-parm.webp">
<a class="btn" href="./recipes/chicken-parmesan.html">Chicken Parmesan Recipe</a></li>
</div>
<div class="recipe-card">
<img class="card-image" src="./images/meatloaf.jpeg">
<a class="btn" href="./recipes/meatloaf.html">Italian Meatloaf Recipe</a>
</div>
</div>
</body>
</html>