-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccessibility.html
More file actions
57 lines (57 loc) · 1.52 KB
/
Copy pathaccessibility.html
File metadata and controls
57 lines (57 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Web Portfolio: Ben Meyer's accessibility page</title>
<link type="text/css" rel="stylesheet" href="Styles/MyCSS.css" media="screen">
<link rel="shortcut icon" href="Images/favicon.ico">
</head>
<body>
<nav>
<ul>
<li><a href=index.html> Home </a></li>
<li><a href=accessibility.html> Accessibility </a></li>
<li><a href=graphics.html> Graphics</a></li>
<li><a href=javascript.html> Javascript</a></li>
<li><a href=tools.html> Tools</a></li>
<li><a href=usability.html> Usability</a></li>
<li><a href=video.html> Video</a></li>
</ul>
</nav>
<table align="center">
<caption> Web Accessibility Checklist <caption>
<thead>
</thead>
<tbody>
<tr>
<th scope="col">User Characteristic</th>
<th scope="col">Accessible Design Tip</th>
</tr>
<tr>
<td> Unable to see </td>
<td> Code all images with ALT text</td>
</tr>
<tr>
<td> Unable to perceive colors </td>
<td> Avoid using color alone to convey information </td>
</tr>
<tr>
<td> Unable to use mouse </td>
<td> Be sure all website features can be accessesd using keyboard</td>
</tr>
<tr>
<td> Unable to hear </td>
<td> Add captions to multimedia</td>
</tr>
<tr>
<td> Prone to having seizures </td>
<td> Avoid content that flashes</td>
</tr>
<tr>
<td> Easily distractible </td>
<td> Keep the design simple</td>
</tr>
</tbody>
</table>
</body>
</html>