-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
72 lines (62 loc) · 1.52 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
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
65
66
67
68
69
70
71
72
<!doctype html>
<html>
<head>
<title>My Recipes :: Panna Cotta</title>
<link rel="stylesheet" href="./styles/layout.css"/>
<style>
</style>
</head>
<body>
<!-- jsfiddle goes here -->
<div id="wrapper">
<header class="main">
<h1>My Recipe Site</h1>
</header>
<nav>
<h2>Site Nav</h2>
<ul>
<li>Home</li>
<li>Recipes</li>
<li>About Us</li>
</ul>
</nav>
<article>
<header class="article">
<h1>Panna Cotta</h1>
</header>
<p>Description, serving sizes, etc...</p>
<h2>Ingredients</h2>
<ul>
<li>Gelatin</li>
<li>Cream</li>
<li>White Chocolate</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>Step 1</li>
<li>Step 2</li>
<li>Step 3</li>
</ol>
<footer>
<p>categories, publish date, source, tags, etc.</p>
</footer>
</article>
<aside>
<h2>Aside stuff</h2>
<ul>
<li>link to italian category</li>
<li>link to dessert category</li>
</ul>
</aside>
<footer class="bottom">
<h2>Footer</h2>
<ul>
<li>copyright info</li>
<li>terms of service</li>
<li>privacy statement</li>
<li>contact info</li>
</ul>
</footer>
</div>
</body>
</html>