-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<title>Odin Recipes | Home</title>
<link rel="icon" href="./images/favicon.ico">
</head>
<body>
<header>
<h1 style="text-align:center;">Odin Recipes</h1>
</header>
<main id="content">
<div id="content-left" style="width: 600px; float: left;">
<img src="./images/magic_cookbook.jpeg" alt="Cookbook image" height="600" width="600">
</div>
<div id="content-right-top" style="height: 150px; width: 1000px; float: right;"></div>
<div id="content-right-middle" style="width: 900px; float: right;">
<ul>
<li><h3><a href="./recipes/ice-cream.html">Ice-Cream</a></h3></li>
<li><h3><a href="./recipes/cake.html">Cake</a></h3></li>
<li><h3><a href="./recipes/chocolate-pudding.html">Chocolate Pudding</a></h3></li>
<li><h3><a href="./recipes/turkish-sutlac.html">Turkish Sutlac</a></h3></li>
</ul>
</div>
</main>
</body>
</html>