forked from rocketacademy/recipe-site-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 925 Bytes
/
index.html
File metadata and controls
35 lines (35 loc) · 925 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Noodles Recipes</title>
</head>
<body>
<img src="noodle-in-a-bowl.jpg" alt="Noodles in a bowl" />
<h1>Noodles Recipes</h1>
<br />
<br />
<h2>Chicken Noodles Recipes</h2>
<ul>
<a href="recipe1.html" target="_blank"> <li>Chicken Chow Mein</li></a>
<a href="recipe2.html" target="_blank"> <li>Mie Ayam</li></a>
</ul>
<br />
<br />
<h2>Onion Noodles Recipes</h2>
<ul>
<a href="recipe3.html" target="_blank">
<li>Cantonese soy sauce pan-fried noodles</li></a
>
<a href="recipe4.html" target="_blank">
<li>Caramelized onion pasta</li></a
>
</ul>
<br />
<br />
<h3>Browse by category:</h3>
<ul>
<a href="category-chicken.html" target="_blank"><li>Chicken</li></a>
<a href="category-onion.html" target="_blank"><li>Onion</li></a>
</ul>
</body>
</html>