-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (29 loc) · 925 Bytes
/
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
42
43
<html>
<head>
<title>Recipes for the petit commis</title>
<link rel="stylesheet" type="text/css" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1" lang="eng">
</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>
<!-- center -->
<div id="main">
<h3>What to have in the fridge.<br>
What to keep in the pantry.<br>
How to make those recipes.
</h3>
</div>
<!-- footer -->
<footer class="clearfix"> © Copyright 2019</footer>
</div>
</body>
</html>