-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes.html
64 lines (51 loc) · 1.54 KB
/
recipes.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<title>Basics</title>
<link rel="stylesheet" type="text/css" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1" lang="en-us">
</head>
<body>
<div id="wrapper">
<!-- nav -->
<nav class="clearfix">
<!-- <img src="images/ofic_logo.png" id="logo"> -->
<span id="logo"><img src="images/logo.png"></span>
<a href="index.html" class="nav_header">Home</a>
<a href="budget.html" class="nav_header" target="_blank">Budget</a>
<a href="basics.html" class="nav_header">Basics</a>
<a href="recipes.html" class="nav_header">Recipes</a>
</nav>
<!-- header -->
<header id="recipes">
<img src="images/therecipes.png" align="center">
</header>
<!-- aside and article -->
<section id="main-basics">
<h2>List of recipes</h2>
<p>From main dish to desert, sweet and sour, spicy or blend, make your pick in the list. Anything you can't find? ask for it!</p>
<h3>Main</h3>
<ul>
<li><a href="recipes/oven-baked-chicken.html">Oven-baked chicken breast</a></li>
<li>Spaghetti bolognese</li>
<li>Spaghetti carbonara</li>
<li>Blanquette</li>
<li>Couscous</li>
<li>Leek tart</li>
<li>Pizza</li>
<li>Carrot soup</li>
<li>Tuna bread</li>
</ul>
<h3>Desert</h3>
<ul>
<li>Chocolate mousse</li>
<li>Lemon tart</li>
<li>Cookies</li>
<li>Apple pie</li>
<li>Chocolate brownies</li>
</ul>
</section>
<!-- footer -->
<footer class="clearfix"> © Copyright 2019</footer>
</div>
</body>
</html>