-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
68 lines (55 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width">
<title>Accessible design patterns</title>
<link rel="stylesheet" type="text/css" href="css/basic.css" />
</head>
<body>
<h1>Accessible design patterns</h1>
<p>Examples of common custom control and widget design patterns.</p>
<h2>Toggle button design patterns</h2>
<ul>
<li><a href="toggle1/index.html">Toggle button with <code>button</code> element</a></li>
<li><a href="toggle2/index.html">Toggle button with <code>a</code> element</a></li>
<li><a href="toggle3/index.html">Toggle button with <code>span</code> element</a></li>
</ul>
<h2>Disclosure button design patterns</h2>
<ul>
<li><a href="disclosure1/index.html">Disclosure button with <code>button</code> element</a></li>
<li><a href="disclosure2/index.html">Disclosure button with <code>a</code> element</a></li>
<li><a href="disclosure3/index.html">Disclosure button with <code>span</code> element</a></li>
</ul>
<h2>ToggleTip button design patterns</h2>
<ul>
<li><a href="toggletip1/index.html">ToggleTip button with <code>button</code> element</a></li>
<li><a href="toggletip2/index.html">ToggleTip button with <code>span</code> element</a></li>
</ul>
<h2>Link design patterns</h2>
<ul>
<li><a href="link1/index.html">Link with <code>span</code> element</a></li>
</ul>
<h2>Tabpanel design patterns</h2>
<ul>
<li><a href="tabpanels1/index.html">Tabpanels with ARIA</a></li>
<li><a href="tabpanels2/index.html">Tabpanels without ARIA</a></li>
</ul>
<h2>Live region design patterns</h2>
<ul>
<li><a href="live1/index.html">Live region</a></li>
</ul>
<h2>Autocomplete design patterns</h2>
<ul>
<li><a href="autocomplete/index.html">Autocomplete</a></li>
</ul>
<h2>ARIA design patterns</h2>
<ul>
<li><a href="aria-current/index.html"><code>aria-current</code></a></li>
<li><a href="aria-tables/index.html">ARIA tables (SVG)</a></li>
<li><a href="svg-line-graph/index.html">SVg line graph</a></li>
<li><a href="svg-flowchart/index.html">ARIA SVG flowchart</a></li>
</ul>
***
</body>
</html>