-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Odin Recipes</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="body-div">
<h1 class="header">My Recipes</h1>
<table>
<thead>
<tr>
<th>
<div>
<ul class="food-ul">
<li class="food-li"><a class="food" href="recipes/lasagna.html"> Lasagna</a></li>
<li class="food-li"><a class="food" href="recipes/sphagetti.html">Spaghetti</a></li>
<li class="food-li"><a class="food" href="recipes/hamburger.html">Hamburger</a></li>
</ul>
</div>
</th>
<th>
<img src="images/chef.png" alt="Chef" width="200px">
</th>
</tr>
</thead>
</table>
</div>
</body>
</html>