forked from SCE-Development/git-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (57 loc) · 1.28 KB
/
index.html
File metadata and controls
61 lines (57 loc) · 1.28 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>COOL RECIPES</title>
</head>
<body>
<h1>Recipes that have a special place in my heart</h1>
<ul>
<li>
<a href="recipe/cereal.html">Cereal</a>
</li>
<li>
<a href="recipe/epic.html">A snack (toast) to remember</a>
</li>
<li>
<a href="recipe/banhmi.html">PEAK BANHMI</a>
</li>
<li>
<a href="recipe/egg.html">Egg city, I am the mayor</a>
</li>
<li>
<a href="recipe/greatestsandwichofalltime.html">Peanut Butter Banana Sandwich</a>
</li>
<li>
<a href="recipe/pasta.html">One-Pot Pasta</a>
</li>
<li>
<a href="recipe/quesadillas.html">Quesadillas</a>
</li>
<li>
<a href="recipe/pizza.html">Pizza</a>
</li>
<li>
<a href="recipe/waffle.html">Protein Waffles</a>
</li>
<li>
<a href="recipe/burger.html">Burger</a>
</li>
<li>
<a href="recipe/lemonade.html">Lemonade</a>
</li>
<li>
<a href="recipe/tarte_tatin.html">Tarte Tatin</a>
</li>
<li>
<a href="recipe/coffee.html">Coffee</a>
</li>
<li>
<a href="hydratedwater.html">Hydrated Water</a>
</li>
<li>
<a href="recipe/bimbibap.html">Bibimbap</a>
</li>
</ul>
</body>
</html>