-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 940 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
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Odin Recipes</title>
</head>
<body>
<header class="header">
<h1 class="title">Odin Recipes</h1>
<nav class="navigation">
<ul class="links-list">
<li class="links">
<a href="./recipes/italian-potato-salad.html">Italian Potato Salad</a>
</li>
<li class="links">
<a href="./recipes/awesome-pasta-salad.html">Awesome Pasta Salad</a>
</li>
<li class="links">
<a href="./recipes/vintage-lemonade.html">Vintage Lemonade</a>
</li>
</ul>
</nav>
</header>
<p>this is a test paragraph to see if the css is applied</p>
</body>
</html>