-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 1.01 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
<!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">
<link rel ="stylesheet" href= "./external-css.css">
<title>Recipes</title>
</head>
<body>
<h1 id="heading">Odin Recipes</h1>
<!--All the photos have been taken from unsplash. The credit goes to all the photographers-->
<img src = "https://images.unsplash.com/photo-1577106263724-2c8e03bfe9cf?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8Y2hlZnxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=700&q=60" alt="Photo of a chef">
<ul class="dishes">
<li class= "webpages">
<a href = "./burger.html">Homemade Classic Burger</a>
</li>
<li class="webpages">
<a href = "./salad.html">Basic Tossed Salad</a>
</li>
<li class = "webpages">
<a href = "./pasta.html">Pasta e fagioli</a>
</li>
</ul>
</body>
</html>