-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 833 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
h1{
color:darkred;
}
.link{
color: red;
}
body{
background-color: black;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Odin Recipes</h1>
<div class="link">
<ul>
<li><a class="link" href="./recipes/Cheesecake.html">Recipe Title 1 No-Bake Cheesecake Flag Cake</a></li>
<li><a class="link" href="./recipes/Magnificent Macaroni Salad Recipe.html">Recipe Title 2 Magnificent Macaroni Salad Recipe</a></li>
<li><a class="link" href="./recipes/American Potato Salad.html">Recipe Title 3 American Potato Salad
</a></li>
</ul>
</div>
</body>
</html>