-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 1.02 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
<!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>
</head>
<body>
<h1 class="title">Odin Recipes</h1>
<img src="./images/womancooking.jpg" alt="A Nigerian queen cooking up a storm!">
<p class="text">Hello fine bobo, and <em>welcome</em> to the cooking experience you so desire. Today we will be teaching you how to make food
to <strong>rival the likes of your own <em>iya!</em></strong> #NoMoreStealingFromThePot</p>
<p><h3>List of Recipes:</h3></p>
<ul class="list">
<li class="list item"><a href="recipes/jollofrice.html">Jollof Rice</a></li>
<li class="list item"><a href="recipes/suya.html">Suya</a></li>
<li class="list item"><a href="recipes/poundedyam.html">Pounded Yam & Egusi</a></li>
</ul>
<p><a href="#header">Back to the top!</a></p>
</body>
</html>