-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (46 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title</title>
<meta name="description" content="A template to get started.">
<meta name="author" content="Mark Hoeber">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li>Article 1</li>
<li>Article 2</li>
</ul>
</nav>
</header>
<section>
<h1>My Page</h1>
<article>
<header>
<h2>First thing</h2>
</header>
<p>First thing description.</p>
</article>
<article>
<header>
<h2>Second thing</h2>
</header>
<p>Second thing description.</p>
</article>
</section>
<aside>
<h2>Bad Photo</h2>
<p><img src="photo.jpg"/></p>
</aside>
<aside class="quotation">
<h2>Quotation</h2>
<p>"We overestimate what we can do in the short term, and underestimate what we can do in the long term."</p>
</aside>
<footer>
<p>Copyright 2017 Mark Hoeber</p>
</footer>
</body>
</html>