forked from AccessibleFuture/webdesign-accessiblefuture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.html
More file actions
68 lines (48 loc) · 1.77 KB
/
structure.html
File metadata and controls
68 lines (48 loc) · 1.77 KB
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Page Structure: HTML & CSS | Accessible Future</title>
</head>
<body>
<header role="banner">
<h1>Site Title</h1>
<h2>Site Subtitle or Description</h2>
</header>
<main role="main">
<article>
<header>
<h1>Article Title</h1>
<p>By Jeremy Boggs</p>
</header>
<p>Nec vero pietas adversus deos nec quanta iis gratia debeatur sine explicatione naturae intellegi potest. Bestiarum vero nullum iudicium puto.</p>
<footer>
<p>Published on <time datetime="2014-02-20T20:00Z">February 20th, 2014</time>.</p>
</footer>
</article>
<section>
<h1>About this Site</h1>
<p>Explicatione naturae intellegi potest. Bestiarum vero nullum iudicium puto.</p>
</section>
<section>
<h1>Elsewhere</h1>
<ul>
<li><a href="http://github.com/clioweb" rel="external">Github</a></li>
<li><a href="http://twitter.com/clioweb" rel="external">Twitter</a></li>
</ul>
</section>
</main>
<nav id="global-nav">
<h1>Site Navigation</h1>
<ul>
<li><a href="#">Lorem</a></li>
<li><a href="#">Ipsum</a></li>
<li><a href="#">Dolor</a></li>
<li><a href="#">Amet</a></li>
</ul>
</nav>
<footer role="contentinfo">
<p>Site contact and copyright information.</p>
</footer>
</body>
</html>