-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 1.25 KB
/
index.html
File metadata and controls
36 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accessible components</title>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="stylesheet" href="global.css">
</head>
<body>
<header>
<h1>
Accessible components
</h1>
<p>
Dave Rupert's <a href="https://davatron5000.github.io/a11y-nutrition-cards/">Nutrition Cards for Accessible Components</a> is an attempt to digest and simplify the accessibility expectations when it comes to component authoring, based on the <a href="https://w3c.github.io/aria-practices/">WAI-ARIA Authoring Practices</a> guide.
</p>
<p>
<b>
This is my attempt to create each of these components from scratch.
</b>
</p>
</header>
<main>
<ol>
<li><a href="accordion">Accordion</a></li>
<li><a href="button">Button</a></li>
<li><a href="disclosure">Disclosure (show/hide)</a></li>
<li><a href="menu_and_menu_button">Menu & menu button</a></li>
</ol>
</main>
</body>
</html>