-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.19 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
<!DOCTYPE html>
<html kang="en">
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet">
<title>Odin Recipes</title>
</head>
<body>
<div class="container">
<h1 class="heading">Odin Recipes</h1>
<div class="img_con">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcREbj6jdsx2kXyaTGmgRlQv1p2KOiSqfOQl71SMgn8xQIpUGt_hLHHePxrEK0CPAM0wXS0&usqp=CAU" alt="Recipe Drawing Illustration" width="450 px" height="450 px">
<h3>Come let's cook some Nigerian Delicacies</h3>
</div>
<div class="menu">
<ul>
<li><a href="./recipes/afang.html">Afang Soup Recipe</a></li>
<li><a href="./recipes/egusi.html">Egusi Soup Recipe</a></li>
<li><a href="./recipes/oha.html">Oha Soup Recipe</a></li>
<li><a href="./recipes/okra.html">Okra Soup Recipe</a></li>
</ul>
</div>
<p class="foot">A project for <a href="https://www.theodinproject.com/lessons/foundations-block-and-inline">TOP</a></p>
</div>
</body>
</html>