-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
18 lines (18 loc) · 937 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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="website-title">Odin Recipes</h1>
<ul class="menu">
<li>Looking for some protein in the morning? Maybe <a href="./recipes/chicken.html" class="menu-link">Baked-Lemon-Dill Chicken Breasts</a> is a good way to start your day.</li>
<li>Craving for some Italian breakfast? Perhaps this menu is what you are looking for <span class="menu-link"><a href="./recipes/pizza.html">Breakfast Sausage Pizza</a></span></li>
<li>Wanna taste something classic maybe <a href="./recipes/rolls.html" class="menu-link"> Classic Dinner Rolls</a> will be a good to have on your dessert table.</li>
</ul>
</body>
</html>