forked from rocketacademy/recipe-site-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.html
More file actions
36 lines (36 loc) · 837 Bytes
/
Main.html
File metadata and controls
36 lines (36 loc) · 837 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
36
<!DOCTYPE html>
<html>
<head>
<title>Noodles!</title>
</head>
<body>
<div>
<h1>Noodle Recipes</h1>
</div>
<div>
<h2>Onion Noodle Recipes</h2>
<ul>
<li><a href="./Onion1.html">Sesame Soba Noodles</a></li>
<li>
<a href="./Onion2.html">Panda Express Chow Mian Copycat</a>
</li>
</ul>
</div>
<div>
<h2>Chicken Noodle Recipes</h2>
<ul>
<li><a href="./Chicken1.html">Teriyaki Chicken Noodles</a></li>
<li>
<a href="./Chicken2.html">Quick Chicken and Broccoli Noodles</a>
</li>
</ul>
</div>
<div>
<h2>Recipes by Category</h2>
</div>
<ul>
<li><a href="./OnionCategory.html">Onion</a></li>
<li><a href="./ChickenCategory.html">Chicken</a></li>
</ul>
</body>
</html>