-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.5 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
35
36
37
38
<!-- Daniel Fletcher -->
<!-- The Odin Project [Foundations] -->
<!-- Project: Recipes -->
<!-- --- index.html --- -->
<!-- Landing page for recipes website -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Link Google Fonts and custom CSS -->
<link rel="stylesheet" href="./styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!-- Title and metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project: Recipes</title>
</head>
<body>
<div class="main-title">
<h1>Recipes from Hyrule</h1>
<h3>A selection of recipes from <a class="citation" href="https://zelda.nintendo.com/tears-of-the-kingdom/" target="_blank">The Legend of Zelda: Tears of the Kingdom</a></h3>
</div>
<ul class="list-of-links">
<li><a class="link index-link" href="./recipes/curry.html">Gourmet Meat Curry</a></li>
<li><a class="link index-link" href="./recipes/greens.html">Sunny Fried Wild Greens</a></li>
<li><a class="link index-link" href="./recipes/omelet.html">Crab Omelet with Rice</a></li>
</ul>
<div class="bottom-image-wrapper">
<img alt="Link activates his Ultrahand ability" class="bottom-image" src="https://zelda.nintendo.com/tears-of-the-kingdom/_images/features/link.png">
</div>
</body>
</html>