One issue with the HTML of the website is the lack of a header in the table. I would add a header to make it more accessible and I would put the W3C categories in a list rather than staggered.
ORIGINAL CODE
<tr>
<tr>
<td>Perceivable </td>
<td></td>
<td>Understandable </td>
<td></td>
</tr>
<tr>
<td></td>
<td>Operable </td>
<td></td>
<td>Robust</td>
</tr>
</table>
CORRECTED CODE
<table border="1">
<tr>
<th>W3C Guideline Categories</th>
</tr>
<tr>
<td>Perceivable</td>
</tr>
<tr>
<td>Understandable</td>
</tr>
<tr>
<td>Operable</td>
</tr>
<tr>
<td> Robust</td>
</table>
There are also several text images that would be hard for a text reader to read. We can add regular, readable text to the image tags in the code.
EDU 558: Website Accessibility
<p align="center"><img SRC="images/title.gif" WIDTH="622" HEIGHT="51" /></p><p align="center">EDU 558: Website Accessibility</p>
MISSION POSSIBLE
<p align="center"><img alt="" src="images/Image2.gif" width="366" height="87" /></p><p align="center">Mission Possible</p>
WARNING
<img alt="" src="images/warning_1.gif" width="300" height="186" /> </p><p>Warning</p>
No comments:
Post a Comment