-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.62 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
37
38
39
40
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/index.css">
<title>Odin's Recipes</title>
</head>
<body>
<h1 class="titlo">Odin Recipes</h1>
<div class="recipe_list">
<div class="recipe1">
<img src="images/chicken.jpg" height="200" width="200" alt="Grilled Chicken Alfredo Flatbread Pizza">
<span class="caption">
<a href="recipes/chicken_alfredo.html">Chicken Alfredo</a>
<!--https://www.allrecipes.com/recipe/256637/grilled-chicken-alfredo-flatbread-pizzas/-->
</span>
</div>
<div class="recipe2">
<img src="images/chicken_quesadilla.webp" height="200" width ="200" alt="Yummy Chicken Quesadilla">
<span class="caption">
<a href="recipes/chicken_quesadilla.html">Chicken Quesadilla</a>
<!--https://www.budgetbytes.com/category/recipes/meat/chicken/chicken-wings/-->
</span>
</div>
<div class="recipe3">
<img src="images/chicken_yakitori.jpeg" height="200" width ="200" alt="Chicken Yakitori with rice and green beans">
<span class="caption">
<a href="recipes/chicken_yakitori.html">Chicken Yakitori</a>
<!--https://www.foodnetwork.com/recipes/rachael-ray/chicken-yakitori-and-rice-7836455-->
</span>
</div>
</div>
<h1 class="titlo">Odin Recipes</h1>
</body>
</html>