-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
31 lines (28 loc) · 1020 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
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css"/>
<title>Recipes</title>
<meta charset="utf-8">
</head>
<body>
<div>
<a href="index.html"><img id="logo" class="center" src="recipes-images/logo2.png"></a>
</div>
<h1 class="heading">Odin Recipes</h1>
<div class="content">
<div class="item">
<a href="recipes/pasta.html"><img src="recipes-images/Vegan-Mushroom-Pasta.jpg"></a>
<p>One-Pot Creamy Mushroom Vegan Pasta</p>
</div>
<div class="item">
<a href="recipes/Chickpea-Curry.html"> <img src="recipes-images/Coconut-Chickpea-Curry-27.jpg"></a>
<p>Coconut Chickpea Curry</p>
</div>
<div class="item">
<a href="recipes/Pizza.html"><img src="recipes-images/Pizza.jpg"></a>
<p> Vegan Pizza </p>
</div>
</div>
</body>
</html>