-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
149 lines (131 loc) · 7.4 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A11Y First Workshop - A Web Accessibility Workshop</title>
<link rel="stylesheet" href="https://ir.ebaystatic.com/cr/v/c1/skin/v7.0.2/ds4/skin.min.css"/>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<main>
<div class="card">
<div class="card__cell">
<h1>A11Y First Workshop - A Web Accessibility Workshop</h1>
<p>Refer to the <a href="https://github.com/ianmcburnie/a11y-first">README</a> for instructions.</p>
<hr/>
<h2>Table of Contents</h2>
<ol class="toc">
<li><a href="#chapter1">Structure & Semantics</a></li>
<li><a href="#chapter2">Links</a></li>
<li><a href="#chapter3">Buttons</a></li>
<li><a href="#chapter4">Flyouts</a></li>
<li><a href="#chapter5">Forms</a></li>
<li><a href="#chapter6">Form Validation</a></li>
<li><a href="#chapter7">ARIA Widgets</a></li>
<li><a href="#chapter8">Data Tables</a></li>
</ol>
<hr/>
<h2 id="chapter1">Chapter 1: Introduces Structure & Semantics</h2>
<p>Also introduces the concepts of screenreader-only text and ARIA roles</p>
<ol>
<li><a href="hp/blank-page.html">Blank Page</a></li>
<li><a href="hp/meta.html">Meta</a></li>
<li><a href="hp/paragraphs.html">Paragraphs</a></li>
<li><a href="hp/lists.html">Lists</a></li>
<li>Definition Lists</li>
<li><a href="hp/headings.html">Headings</a></li>
<li><a href="hp/landmarks.html">Landmarks</a></li>
<li><a href="hp/images.html">Images</a></li>
<li><a href="hp/background-images.html">Background Images</a></li>
<li><a href="hp/table-layout.html">Table Layout</a></li>
<li><a href="hp/grid-system.html">Grid System</a></li>
<li><a href="hp/cards.html">Cards</a></li>
<li><a href="hp/iframe.html">Inline Frames</a></li>
</ol>
<hr/>
<h2 id="chapter2">Chapter 2: Introduces Links</h2>
<p>Also introduces concept of focus management.</p>
<ol>
<li><a href="hp/links.html">Text Links</a></li>
<li><a href="hp/tiles.html">Tiles</a></li>
<li><a href="hp/ambiguous-link.html">Ambiguous Links</a></li>
<li><a href="hp/fake-button.html">Fake Buttons</a></li>
<li><a href="hp/new-window.html">New Window Links</a></li>
<li><a href="hp/navigation.html">Navigation Landmarks</a></li>
<li><a href="hp/skipto.html">Skip-To Main</a></li>
<li><a href="hp/skipto-enhanced.html">Enhanced Skip-To</a></li>
<li><a href="hp/custom-focus.html">Custom Focus Indicator</a></li>
<li><a href="signin/fake-tabs.html">Fake Tabs</a></li>
</ol>
<hr/>
<h2 id="chapter3">Chapter 3: Introduces Buttons</h2>
<p>Also introduces concept of ARIA labels.</p>
<ol>
<li><a href="hp/button-text.html">Button Text</a></li>
<li><a href="hp/critical-icon.html">Critical Icon</a></li>
<li><a href="hp/accesskey.html">Access Key</a></li>
</ol>
<hr/>
<h2 id="chapter4">Chapter 4: Introduces Flyouts</h2>
<ol>
<li><a href="hp/button-flyout.html">Button Flyout</a></li>
<li><a href="hp/link-flyout.html">Link Flyout</a></li>
<li><a href="hp/fake-menu.html">Fake Menu</a></li>
<li>Infotip</li>
<li><a href="hp/tooltip.html">Tooltip</a></li>
</ol>
<hr/>
<h2 id="chapter5">Chapter 5: Introduces Form Controls</h2>
<p>Also introduces concept of ARIA descriptions and ARIA hidden elements.</p>
<ol>
<li><a href="reg/textbox.html">Textbox</a></li>
<li><a href="reg/radio.html">Radio Buttons</a></li>
<li><a href="reg/radio-custom.html">Customised Radio Buttons</a></li>
<li><a href="reg/select.html">Select</a></li>
<li><a href="reg/select-custom.html">Customised Select</a></li>
<li><a href="reg/reset.html">Form Reset</a></li>
<li><a href="reg/submit.html">Form Submit</a></li>
<li><a href="signin/textbox-icon.html">Textbox Icons</a></li>
<li>Floating Labels</li>
<li><a href="signin/checkbox.html">Checkbox</a></li>
<li><a href="signin/checkbox-custom.html">Customised Checkbox</a></li>
<li><a href="signin/field-description.html">Field Description</a></li>
</ol>
<hr/>
<h2 id="chapter6">Chapter 6: Introduces Form Validation</h2>
<p>Also introduces concept of ARIA live regions and client-side rendering.</p>
<ol>
<li><a href="reg/required-field.html">Required Field</a></li>
<li><a href="reg/page-error.html">Page Error</a></li>
<li><a href="reg/field-error.html">Field Error</a></li>
<li><a href="reg/field-error-client.html">Dynamic Field Error</a></li>
<li><a href="reg/page-error-client.html">Dynamic Page Error</a></li>
</ol>
<hr/>
<h2 id="chapter7">Chapter 7: Introduces ARIA Widgets</h2>
<p>Also introduces concept of widget keyboard navigation.</p>
<ol>
<li>Menu</li>
<li>Dialog</li>
<li>Tabs</li>
<li>Combobox</li>
<li>Date Picker</li>
</ol>
<hr/>
<h2 id="chapter8">Chapter 8: Introduces Data Tables</h2>
<ol>
<li>Data Tables</li>
<li>Interactive Data Tables</li>
<li>Row Select/Actions</li>
<li>Bulk Select</li>
</ol>
</div>
</div>
</main>
<footer>
<img src="images/ebay-hires.png" alt="ebay" />Copyright © 1995-2017 eBay Inc. All Rights Reserved.
</footer>
</body>
</html>