-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (19 loc) · 863 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odin Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="center">Odin Recipes</h1>
<ul>
<li><a target="_blank" rel="noopener noreferrer" href="recipes/lasagna.html">Lasagna</a></li>
<li><a target="_blank" rel="noopener noreferrer" href="recipes/strawbery-pie.html">Strawberry Pie</a></li>
<li><a target="_blank" rel="noopener noreferrer" href="recipes/pizza.html">Pizza</a></li>
</ul>
<b>If you want to read other recipes check this website <a target="_blank" rel="noopener noreferrer" href="https://www.allrecipes.com/" class="links">allrecipes.</a></b>
</body>
</html>