-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe_template.html
50 lines (39 loc) · 1.01 KB
/
recipe_template.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
<!DOCTYPE html>
<html>
<head>
<title>Recipe template</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 -->
<h1>Recipe name</h1>
<p>Line of introduction.</p>
<p><b>Preparation</b>: ## minutes</p>
<p><b>Cooking</b>: 1 hour and a half at 350 deg. F (180 deg. C)</p>
<h2>Ingredients</h2>
<ul>
<li>aaaaaa</li>
<li>bbbbbb</li>
<li>bbbbbb</li>
<li>bbbbbb</li>
<li>bbbbbb</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>Do this</li>
<li>Do that</li>
</ol>
</div>
</body>
</html>