-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.11 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
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Odin Recipes</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main">
<h1>Odin Recipes</h1>
<div class="intro">
<p>Welcome, I introduce three of my moste favorite recipes. You may try them at home, you have permission to experiment and change them as you like!</p>
<p id="introdepart">Enjoy and Bon Apetit</p></div>
<img src="https://is.gd/Vjy5P4" alt="cover of old cooking book">
<h2>The Recipes</h2>
<ul id="general-list-proporties">
<li>
<a href="recipes/lasagna.html">The Best Lasgna In The World!</a>
<img class='recipes-img' src="recipes/images/lasagna.webp" alt="">
</li>
<li>
<a href="recipes/cheese-sauce.html">Cheese Sauce</a>
<p>This is my cheese sauce</p>
<img class='recipes-img' src="recipes/images/cheese-sauce.webp" alt="cheese-sauce">
</li>
<li>
<a href="recipes/how-to-make-proper-tomato-sauce.html">How to make proper tomato sauce</a>
<img class='recipes-img' src="recipes/images/tomato-sauce.webp" alt="tomato-sauce">
</li>
</ul>
</div>
</body>
</html>