-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstructure.html
More file actions
71 lines (49 loc) · 1.89 KB
/
Copy pathstructure.html
File metadata and controls
71 lines (49 loc) · 1.89 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
69
70
71
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Structure: HTML & CSS | Accessible Future</title>
</head>
<body>
<a href="#content" class="audible">Skip to main content</a>
<header role="banner">
<h1>Site Title</h1>
<h2>Site Subtitle or Description</h2>
</header>
<nav id="global-nav" role="navigation">
<h1 class="audible">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>
<main role="main" id="content">
<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>
<footer role="contentinfo" id="footer">
<p>Site contact and copyright information.</p>
</footer>
</body>
</html>