-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecipe.html
41 lines (41 loc) · 1.81 KB
/
Recipe.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
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Book App</title>
<link rel="stylesheet" href="Recipe.css">
</head>
<body>
<header><h1>Recipe Book App</h1></header>
<div class="container">
<ul id="recipe-list">
<!-- <li class="recipe-item">
<img class="flex1" src="https://spoonacular.com/recipeImages/12345-312x231.jpg" alt="Recipe 1">
<h2 class="flex1">Recipe 1</h2>
<p>
<strong class="flex1">Ingredients: <span>Ingredient 1, Ingredient 2,Ingredient 3</span></strong>
</p>
<a href="#" class="flex1">Veiw Recipe</a>
</li>
<li class="recipe-item">
<img class="flex1" src="https://spoonacular.com/recipeImages/12395-312x231.jpg" alt="Recipe 1">
<h2 class="flex1">Recipe 1</h2>
<p>
<strong class="flex1">Ingredients: <span>Ingredient 1, Ingredient 2,Ingredient 3</span></strong>
</p>
<a href="#" class="flex1">Veiw Recipe</a>
</li>
<li class="recipe-item">
<img class="flex1" src="https://spoonacular.com/recipeImages/12365-312x231.jpg" alt="Recipe 1">
<h2 class="flex1">Recipe 1</h2>
<p>
<strong class="flex1">Ingredients: <span>Ingredient 1, Ingredient 2,Ingredient 3</span></strong>
</p>
<a href="#" class="flex1">Veiw Recipe</a>
</li> -->
</ul>
</div>
</body>
<script src="Recipe.js"></script>
</html>