-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathindex.html
63 lines (60 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Accessibility Workshop</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<h1>Web Accessibility Workshop</h1>
<p>
Welcome to the Web Accessibility Workshop! This course will help you
understand and implement web accessibility best practices through
hands-on exercises.
</p>
<a href="https://learn-a11y-v2.netlify.app/" class="version-link">
Looking for the v2 version of this workshop? You can find it at
learn-a11y-v2.netlify.app
</a>
<section class="getting-started">
<h2>Getting Started</h2>
<p>
Before beginning the exercises, you'll need a screen reader to test
your work:
</p>
<a href="screen-reader-setup.html" class="setup-link"
>Screen Reader Setup Guide →</a
>
</section>
<section class="exercises">
<h2>Exercises</h2>
<ul class="exercise-list">
<li>
<a href="screen-reader.html"
>Exercise 1: Screen Reader Accessibility</a
>
</li>
<li>
<a href="focus-styles.html"
>Exercise 2: Focus Styles and Indicators</a
>
</li>
<li>
<a href="tab-trapping.html"
>Exercise 3: Tab Trapping and Keyboard Navigation</a
>
</li>
<li><a href="aria.html">Exercise 4: ARIA Labels and Roles</a></li>
<li><a href="color-contrast.html">Exercise 5: Color Contrast</a></li>
<li>
<a href="accessibility-audit.html"
>Exercise 6: Accessibility Audits</a
>
</li>
</ul>
</section>
</main>
</body>
</html>