-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 850 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Website</title>
</head>
<body class="home">
<div>
<h1 class="header">Odin Recipes</h1>
<div>
<ul style="text-align: left;">
<li><a href="recipes/pancake.html">Pancake Recipe</a></li>
<li><a href="recipes/teriyaki-chicken.html">Teriyaki Chicken Recipe</a></li>
<li><a href="recipes/tomato-mozzarella-and-basil-risotto-recipe.html">Tomato, Mozzarella & Basil Recipe</a></li>
</ul>
<footer>
<p>Recipes from <a href="https://bbcgoodfood.com">BBC Goodfood</a></p>
</footer>
</div>
</div>
</body>
</html>