-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 970 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
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My top 3 Food Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>My top 3 Food Recipes</h1>
<section>
<div class="bean-soup">
<a href="recipes/bean-soup.html">Greek bean soup</a>
<img src="https://astelus.com/wp-content/viajes/Receta-de-fasolada-paso-a-paso.jpg" alt="bean-soup">
</div>
<div class="tuna-pasta">
<a href="recipes/tuna-pasta.html">Tuna Penne Pasta</a>
<img src="https://img.taste.com.au/RLuqmxwy/taste/2017/06/tuna-putanseca-127559-1.jpg" alt="tuna-pasta">
</div>
<div class="burger">
<a href="recipes/burger.html">Burger</a>
<img src="https://silveroak.com/wp-content/uploads/2020/03/Recipe-Wagyu-Burger.jpg" alt="burger">
</div>
</section>
</main>
</body>
</html>