-
Notifications
You must be signed in to change notification settings - Fork 9
/
wai-aria-example.html
52 lines (45 loc) · 933 Bytes
/
wai-aria-example.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
<!doctype html>
<html>
<head>
<title>Title of your document</title>
<meta charset='utf-8'>
<meta name='description' content='description of your document'>
</head>
<body>
<header role='banner'>
<h1>Title of your document</h1>
<nav>
<ol role='navigation'>
<li>
<a href='#'>alpha</a>
</li>
<li>
<a href='#'>bravo</a>
</li>
<li>
<a href='#'>charlie</a>
</li>
<li>
<a href='#'>delta</a>
</li>
</ol>
<form role='search'>
<input type='search' placeholder='Need to find something?'>
<input type='submit' value='search'>
</form>
</nav>
</header>
<main role='main'>
<h2>Main Content</h2>
<p>Juicy content</p>
</main>
<aside role='complementary'>
<h2>Sidebar</h2>
<p>Complementary content</p>
</aside>
<footer role='contentinfo'>
<h2>Footer</h2>
<p>Information about the document</p>
</footer>
</body>
</html>