-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.15 KB
/
index.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">
<link rel="stylesheet" href="style.css">
<title>Odin Recipes</title>
</head>
<body>
<div class="heading">
<h1 class="title-heading">Odin Recipes</h1>
</div>
<!--
<img src="https://www.theodinproject.com/assets/og-logo-022832d4cefeec1d5266237be260192f5980f9bcbf1c9ca151b358f0ce1fd2df.png" alt="">
-->
<div class="content">
<ul>
<li class="category">
<strong>Main Dish Recipes</strong>
<ul>
<li><a href="./recipes/main-dishes/macaroni-and-cheese.html">Macaroni and Cheese Recipe</a></li>
</ul>
</li>
<li class="category">
<strong>Side Dish Recipes</strong>
<ul>
<li><a href="./recipes/side-dishes/bodacious-broccoli-salad.html">Broccoli Side Dish Recipe</a></li>
</ul>
</li>
<li class="category">
<strong>Desserts Recipes</strong>
<ul>
<li><a href="./recipes/desserts/chocolate-cup-cake.html">Cup Cake Recipe</a></li>
</ul>
</li>
</ul>
</div>
</body>
</html>