-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccessibility.xhtml
74 lines (69 loc) · 1.78 KB
/
Accessibility.xhtml
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Web Portfolio</title>
<style>
<link rel="stylesheet" href="CSS/style.css"></link>
</style>
</head>
<body>
<div class="header">
<p> </p>
<h1>Web Portfolio</h1>
<p> </p>
</div>
<div class="navbar">
<a href="index.xhtml">Home</a>
<a href="Videos.xhtml">Videos</a>
<a href="Tools.xhtml">Tools</a>
<a class="active" href="Accessibility.xhtml">Accessibility</a>
<a href="javascript.html">Javascript</a>
<a href="Usability.xhtml">Usability</a>
<a href="Graphics.xhtml">Graphics</a>
</div>
<div class="content" style="overflow-x:auto;">
<h1>Web Accessibility Checklist</h1>
<table style="width:100%">
<tr>
<th>User Characteristic<br /></th>
<th>Responsive Design Tip<br /></th>
</tr>
<tr>
<td>Unable to See<br /></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 accessed 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 distractable</td>
<td>Keep the design simple.</td>
</tr>
</table>
<p> </p>
</div>
<p style="text-align: center;"><strong><font color="purple">Under Construction</font></strong></p>
<br />
<div class="footer">
<p> </p>
<p> </p>
<p id="test">Thats All Folks</p>
<p> </p>
<p> </p>
</div>
</body>
</html>