-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipes.html
45 lines (42 loc) · 1.39 KB
/
recipes.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
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipes</title>
</head>
<body>
<a href = "">Skip to Main Content</a>
<header>
<nav>
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href = "pets.html">Pets</a></li>
<li><a href = "travel.html">Travel</a></li>
<li><a href = "recipes.html">Recipes</a></li>
</ul>
</nav>
</header>
<main>
<h1>Recipes</h1>
<div>
<h2>Yangzhou Fried Rice</h2>
<img src="images/yangzhou_fried_rice.jpeg" width = "400" alt="This is the Yangzhou Fried Rice">
<p>This is what the Yangzhou Fried Rice looks like!</p>
</div>
<div>
<h2>Fried Chicken</h2>
<img src="images/fried_chicken.jpeg" width = "400" alt="This is the Fried Chicken">
<p>
I love fried chickens so I am gonna put it here
</p></div>
<div>
<h2>Banana Milkshake</h2>
<img src="images/banana_milkshake.jpeg" width = "400" alt="This is the Banana Milkshake">
<p>If you like making milkshakes, here is a great recipe for banana milkshake!</p>
</div>
<div></div>
<div></div>
</main>
</body>
</html>