-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.31 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
39
40
41
42
43
44
45
46
<!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="./styles.css" />
<title>Odin Recipes</title>
<link rel="icon" href="./imgs/odin.png" />
</head>
<body>
<div class="container">
<header class="content">
<img id="mascot" src="./imgs/odin.png" alt="odin projects mascot" />
<h1>Odin Recipes</h1>
</header>
<main class="content main-content">
<div class="menu-content">
<p id="welcome">
Welcome To <br />
My Recipes Page
</p>
<ul class="menu-container">
<li class="menu-item">
<a href="./recipes/capirotada.html">Capirotada</a>
</li>
<li class="menu-item">
<a href="./recipes/gyros.html">Gyros</a>
</li>
<li class="menu-item">
<a href="./recipes/jagerschnitzel.html">Jagerschnitzel</a>
</li>
</ul>
</div>
<img id="chef" src="./imgs/chef.png" alt="chef image" />
</main>
<footer class="content">
<p id="quote">
"These recipes are excellent. I ate various dishes for an impressive
time and did not suspect the existence of such yummy."
</p>
<p id="quote-author">- Raman</p>
</footer>
</div>
</body>
</html>