-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odin Recipes</title>
<link rel="stylesheet" href="./styles.css"/>
</head>
<body>
<h1 class="centered">Odin Recipes</h1>
<ul class="centered no-bullets large-list">
<li>
<div class="main-list-item"><a href="./recipes/lasagna.html">Lasagna</a></div>
</li>
<li>
<div class="main-list-item"><a href="./recipes/pizza.html">Pizza</a></div>
</li>
<li>
<div class="main-list-item"><a href="./recipes/salad.html">Salad</a></div>
</li>
<li>
<div class="main-list-item"><a href="./recipes/spaghetti.html">Spaghetti</div>
</a></li>
<li>
<div class="main-list-item"><a href="./recipes/soup.html">Soup</a></div>
</li>
</ul>
</body>
</html>