-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasics.html
53 lines (40 loc) · 1.24 KB
/
basics.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
<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="basics">
<img src="images/thebasics.png" align="center">
</header>
<!-- aside and article -->
<section id="main-basics">
<h2>The basics</h2>
<p>These are how-to for sauces, pastry, dough, anything that constitutes part of the recipes.</p>
<ul>
<li>Tomatoe sauce</li>
<li>Sauce blanche</li>
<li>Riz pilaf</li>
<li>Semoulina/couscous</li>
<li>Pastry for savoury tarts</li>
<li>Pastry for sweet tarts</li>
<li>Pizza dough</li>
</ul>
</section>
<!-- footer -->
<footer class="clearfix"> © Copyright 2019</footer>
</div>
</body>
</html>