
Back to Web Accessibility at CSUCI
Creating accessible web sites seems intimidating at first, once you've done it once or twice, it will become second nature.
Section 508 of the Rehabilitation Act of 1973 defines a set of sixteen guidelines for determining whether or not a web page is accessible.
The following table lists the sixteen Section 508 guidelines, discusses how to address each guideline.| Section 508 Guideline | How to address the Guideline |
|---|---|
(a) A text equivalent for every non-text element shall be provided (e.g., via "alt", "longdesc", or in element content). |
|
(b) Equivalent alternatives for any multimedia presentation shall be synchronized with the presentation. |
|
(c) Web pages shall be designed so that all information conveyed with color is also available without color, for example from context or markup. |
|
(d) Documents shall be organized so they are readable without requiring an associated style sheet. |
|
(e) Redundant text links shall be provided for each active region of a server-side image map. |
Add ALT text to each region in an image map |
(f) Client-side image maps shall be provided instead of server-side image maps except where the regions cannot be defined with an available geometric shape. |
|
(g) Row and column headers shall be identified for data tables. |
Use <th> tags and “scope” attribute to define table row and column headings |
(h) Markup shall be used to associate data cells and header cells for data tables that have two or more logical levels of row or column headers. |
Use <td> tag and “headers” attribute to define heading information for cells |
(i) Frames shall be titled with text that facilitates frame identification and navigation. |
|
(j) Pages shall be designed to avoid causing the screen to flicker with a frequency greater than 2 Hz and lower than 55 Hz. |
|
(k) A text-only page, with equivalent information or functionality, shall be provided to make a web site comply with the provisions of this part, when compliance cannot be accomplished in any other way. The content of the text-only page shall be updated whenever the primary page changes. |
|
(l) When pages utilize scripting languages to display content, or to create interface elements, the information provided by the script shall be identified with functional text that can be read by assistive technology. |
|
(m) When a web page requires that an applet, plug-in or other application be present on the client system to interpret page content, the page must provide a link to a plug-in or applet that complies with guidelines (a) through (l). |
|
(n) When electronic forms are designed to be completed on-line, the form shall allow people using assistive technology to access the information, field elements, and functionality required for completion and submission of the form, including all directions and cues. |
|
(o) A method shall be provided that permits users to skip repetitive navigation links. |
|
(p) When a timed response is required, the user shall be alerted and given sufficient time to indicate more time is required. |
|
NOTE: addition of this code to a web page is only necessary if you are not using one of the official CSUCI templates.
1. Directly after <body> tag in your HTML document, add the following HTML:
<div id="skip">
<a href="#back_to_top" name="back_to_top" id="back_to_top"></a>
<a href="#skip_navigation"><img
src="http://www.csuci.edu/images/spacer.gif" width="1" height="1"
border="0" alt="Skip to content"></a></div>
2. At the start of the actual page body content, add the following HTML code:
<a name="skip_navigation" id="skip_navigation"></a>
3. If you use the CSUCI template and CSS style sheet, you are complete. Otherwise, you must insert the following additional CSS code into your page style sheet; or, you can copy & paste the entire code below into the <head> tag of the web page:
<style type="text/css" media="all">
#skip a, #skip a:hover, #skip a:visited { position:absolute; left:0px; top:-500px; width:1px; height:1px; overflow:hidden; }
#skip a:active { position:static; width:auto; height:auto; }
</style>
4. The skip navigation link setup is now complete.
Last updated: 2009-06-18