forked from codelikeagirlau/accessibility-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-developer-pledge.html
41 lines (41 loc) · 1.49 KB
/
web-developer-pledge.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600&family=Inter:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<title>Accessibility Resources</title>
</head>
<body>
<main>
<h1>Web Developer Accessibility Pledge</h1>
<p>As a web developer, I pledge to:</p>
<ul>
<li>
Check that my websites meet the Web Content Accessibility Guidelines
using the <a href="https://www.w3.org/WAI/WCAG21/quickref/">WCAG Reference</a>.
</li>
<li>Test my websites thorougly using assistive technologies</li>
<!-- To do - link to assistive technologies page/ section of this site -->
<li>
Commit to the continuous improvement of accessibility for websites
under my care
</li>
<li>
Stay up to date with the latest accessibility requirements from the
World Wide Web Consortium
</li>
<li>
Bake accessibilty into every phase of my web development projects
</li>
<!-- To do - link to development phases / checklist -->
<li>Advocate for accessibility with my clients, peers and colleages</li>
</ul>
</main>
</body>
</html>