Web Accessibility Standards
Preface
In an effort to address the need for accessible Web sites, UW-Eau Claire has
established these Web Accessibility Standards for the development of Web sites,
intranets, and Web-based applications.
These standards, written by the EIT Accessibility Committee members and other
interested persons, are based on Federal
"Section 508" and World Wide Web Consortium
accessibility guidelines. Why create an additional set of standards when the
Section 508 and W3C standards already exist? Section 508 is very general and
W3C is very complex and provides standards which go beyond what current technology
allows us to effectively do. These standards not only meet all current requirements
but also meet those additional needs we determined were important for the users
of this campus. These standards are also devised to be easier to read, understand
and implement.
Contents:
Introduction
Purpose
The UW-Eau Claire Web Accessibility Standards are designed to provide practical
and specific guidance for the development of Web sites, intranets, and Web-based
applications that are accessible to all individuals, including those with disabilities.
Audience
These standards are intended for use by all Web authors, developers, and content
contributors creating or maintaining Web pages for UW-Eau Claire. It is also
meant to be a standard by which to base considerations for the purchase or development
of Web-based applications. The basic concepts should be understandable by anyone
familiar with Web technologies. Knowledge of Hypertext Markup Language (HTML)
and related Web languages will help in fully understanding the Implementation
Guidelines.
Scope
While it is the goal to have all pages in all sites completely accessible, it is not practical to expect this to occur immediately. We expect this to take place over a period of time. However, one cannot indefinitely postpone compliance. Please use the following guidelines when considering how to comply with UW-Eau Claire's Web accessibility policy.
- All new pages created after the adoption of this policy must be made accessible
- All pages that existed prior to the adoption of this policy must be evaluated to determine whether they meet these standards. If not, the site will be updated as soon as practical. A good time to do this is during a site redesign
- When decisions about the use of scarce resources to modify pages are being made, use the following common sense approach:
- Modify the following types of pages as soon as possible if not immediately
- Official, time-sensitive, related to current courses taught, much used (popular) pages
- Modify the following types of pages as soon as practical
- Resource information, occasional use, not currently used in the classroom
- Do not modify, but indicate that if there are problems, the pages will be provided in an accessible format upon request
- Archival/historical information, pages soon to be removed
- Remove pages that are no longer needed
Be aware that there may be easy ways to correct the majority of accessibility issues on pages. Ask advice if you are not sure.
Relation to Existing Accessibility Standards
The UW-Eau Claire Web Accessibility Standards are based on two sets of existing standards:
The UW-Eau Cliare Web Accessibility Standards are designed to meet or exceed
all Federal Section 508 requirements and all WCAG "Priority 1" Checkpoints.
These standards exceed the minimum requirements in many areas, incorporating
a number of WCAG "Priority 2" and "Priority 3" Checkpoints determined through
testing. Each Guideline in these standards includes a reference to the corresponding
Section 508 requirements and WCAG Checkpoints.
Both Performance Criteria and Implementation Guidelines are necessarily
technology-dependent and will be updated as technologies evolve and change. The
Web technologies considered the current standards as of this version
include:
- Hypertext Markup Language (HTML) 4.01
- Extensible Hypertext Markup Language (XHTML) 1.0
- Cascading Style Sheet (CSS) Level 1 & 2
- Document Object Model (DOM) Level 1
- Synchronized Multimedia Integration Language (SMIL) 1.0
- JavaScript & Dynamic HTML (DHTML)
Note: The use of other technologies (e.g., Java, Flash) and other document
formats (e.g., Adobe Acrobat PDF, Microsoft Word, WordPerfect) is permissible if
used in accordance with the standards outlined in this document. See the
sections on Applets and Plug-ins and Downloadable Documents for more
information.
Individuals with disabilities use a variety of accessibility techniques and
assistive technologies to access Web-based information. From a practical
standpoint, Web sites must therefore be compliant and compatible with these
accessibility tools in order to be accessible to people with disabilities. From
this perspective, the following functional performance criteria can be used to
judge whether accessibility is effectively achieved:
Implementation Guidelines
These are the detailed techniques for addressing accessibility using current Web technologies.
1. Coding
1.1 - Use valid, standard Web programming code. > Contents
- What:
- The World Wide Web Consortium (W3C) sets and publishes standards for most
Web programming languages, including HTML 4.01, XHTML 1.0, CSS Level 1 &
2, DOM, and SMIL. Programming code is considered "valid" when it follows
all the rules and conventions specified in the published standards.
- Why:
- Screen readers and other assistive technologies can more accurately interpret
and interact with Web pages that are built using valid, standard code. W3C
languages are designed with accessibility in mind.
- How:
- Indicate the programming language you are using by starting your code
with a document type declaration such as:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Use the W3C HTML Validation Service (http://validator.w3.org)
and W3C CSS Validation Service
(http://jigsaw.w3.org/css-validator) to check your code. Refer to the World
Wide Web Consortium site (http://www.w3.org) for full specifications
and documentation.
- Ref:
- WCAG 3.2 (P2), 11.1 (P2)
- Hints:
- Hints 1.1
1.2 - Use appropriate markup to convey document
structure. > Contents
- What:
- HTML includes markup (programming code) to identify the structural elements
of a document. For example, the
<p> element identifies
a paragraph and <h1> identifies a first-level heading.
- Why:
- Screen readers use structural elements to help make reading more efficient.
For example, some screen readers can skip from heading to heading to allow
the user to "skim" the document.
- How:
- Identify section heading, paragraphs, lists, quotes, etc using the appropriate
tags instead of relying on formatting commands to distinguish these elements.
For example, use
<h1> tags to identify top-level headings
rather than simply applying font-size or bold formatting commands. Do not
misuse structural elements for formatting effects, such as using <h1>
to make text bold or <blockquote> to indent a paragraph
that is not actually a quotation.
- Ref:
- WCAG 3.5, 3.6, 3.7, 5.4 (P2)
1.3 - Use style sheets for content formatting whenever possible. > Contents
- What:
- Cascading Style Sheets (CSS) is a formatting language designed to compliment
HTML. While HTML is designed to identify a document's structure, CSS is
intended for formatting and presentation.
- Why:
- In general, users can most easily override formatting settings made using
CSS. The use of CSS for formatting also tends to facilitate the proper use
of HTML to identify document structure.
- How:
- See the W3C's Cascading Style Sheets
site (http://www.w3.org/Style/CSS/) for specifications, tutorials, and
resources.
Note: Some older Web browsers, notably Internet Explorer 3 and Netscape
4, have problematic support for CSS. Be sure to test pages using CSS in
multiple browsers.
- Ref:
- WCAG 3.3 (P2)
- Hints:
- Hints 1.3
2. Text
2.1 - Avoid using images to display text. > Contents
- What:
- Web developers often use images of text to achieve a specific style, size,
or special effect.
- Why:
- Users with limited vision rely on the ability to enlarge text or choose
enhanced color combinations. While, most Web browsers cannot change the
size and color of images, newer browsers and screen magnifiers are beginning
to provide this capability. But since using images as text also impedes
ability to index for search engines, ability to easily change content and
other abilities, it is still best to avoid.
- How:
- Whenever possible, use actual text instead of images of text. Style sheets
can be used to achieve specific sizes, colors, or effects. Text that requires
exact formatting, such as logos, are appropriate exceptions.
- Ref:
- WCAG 3.1 (P2)
2.2 - Specify the
language of text. > Contents
- What:
- HTML uses the
lang attribute to specify language in a Web
page. It can be set for any HTML element.
- Why:
- Words written in foreign languages can be unintelligible when spoken by
a screen reader. Some screen readers are able to pronounce words in their
appropriate language if it is specified.
- How:
- Use the
lang attribute on the <html> element
to identify the primary language of each document, for example, <html
lang="en">, for English.
Use the lang attribute on <span> or other
elements to identify words or phrases in other languages. For example, a
Spanish phrase within an English document could be coded as <span
lang="sp">se habla español</span>.
Note: Not all screen readers support automatic language changes, but setting
the lang attribute will not negatively affect those that do
not.
- Ref:
- WCAG 4.1(P1), 4.3 (P3)
2.3 - Avoid using
"ASCII art." > Contents
- What:
- "ASCII art" (and "emoticons") are images created using special arrangements
of text characters and symbols. For example, ":-)" is often used to create
a smiley face, and "->" is often used as an arrow.
- Why:
- Screen readers read most ASCII art literally, which can be extremely confusing.
For example, ":-)" reads as "colon dash right parenthesis," and "->"
as "dash greater than."
- How:
- Use images with appropriate alternate text instead of ASCII art.
- Ref:
- WCAG 1.1 (P1)
3. Colors
3.1 - Do not convey information with color alone. > Contents
- What:
- Color is often used to indicate special functions or status. For example,
required form fields are frequently indicated with red labels.
- Why:
- Users with blindness, limited vision, or color-blindness may miss information
presented with color.
- How:
- Whenever color is used as an indicator, use a non-color-based indicator
as well. For example, required form fields could be identified with asterisks
as well as color.
- Ref:
- WCAG 2.1 (P1); 508 c
3.2 - Use contrasting foreground and background colors. > Contents
- What:
- Web authors can set specific colors to be used for foregrounds (text)
and backgrounds. Sometimes images are used as backgrounds.
- Why:
- Users with limited vision or color-blindness may have difficulty reading
text that is similar in color to its background.
- How:
- For text, use dark colors on light backgrounds, or vice versa. Avoid combinations
of red and green as well as busy background images.
- Ref:
- WCAG 2.2 (P2)
4. Images
4.1 - Provide "alternate text" for all images. > Contents
- What:
- The HTML image element (
<img>) includes an "alternate
text" attribute (alt) that is used to provide text that can
be substituted when the image itself cannot be displayed. Alternate text
is meant to be a concise replacement for an image and should serve the same
purpose and convey the same meaning.
- Why:
- Individuals who are blind or have low vision cannot perceive information
presented in images; screen reading software reads alternate text instead.
- How:
- ALL images must have appropriate alternate text. As a rule of thumb, consider
what you might say if you were reading the Web page to someone over the
telephone. You do not need to include the words "image of" or "graphic of."
Specifically:
- For images that contain words or letters - use alternate text that includes
the same words or letters.
- For images links - use alternate text that identifies the link's destination
or function. You do not need to include the words "link to."
- For images that are invisible, purely decorative, or otherwise do not
convey meaning - use
alt="" (null) to indicate that the image
can be safely ignored by a screen reader.
- Ref:
- WCAG 1.1(P1); 508 a
4.2 - Provide full descriptions for graphs, diagrams, and other meaningful images. > Contents
- What:
- "Meaningful" images are images that convey more information than can appropriately
be expressed as alternate text.
- Why:
- A full description allows a user who cannot see or understand a meaningful
image to receive the same information as a sighted individual.
- How:
- Present a full description of a meaningful image either on the page on
which the image appears or through a link immediately preceding or following
the image. Use alternate text to provide a concise name for the image. For
example, the alternate text of a graph should state its title and the long
description should summarize its trends and/or present a table of its data.
Note: The longdesc attribute of the <img>
element can also be used to provide a link to a full description. Because
longdesc it is not yet supported by most Web browsers, it should not be
used as the only method of providing a full description.
- Ref:
- WCAG 1.1 (P1); 508 a
5. Image Maps
5.1 - Provide alternate text for each area in client-side image maps. > Contents
- What:
- Image maps are images divided into multiple "areas," with each area having
its own hypertext link.
- Why:
- Just as images must have alternate text, each area of an image map must
also have appropriate alternate text for use when the image is not displayed.
- How:
- Use alternate text that indicates the function or destination of the link
for each area of a client-side image map. The image itself should have alternate
text that indicates the overall function of the image map.
- Ref:
- WCAG 1.1(P1); 508 a
5.2 - Avoid using server-side image maps. > Contents
- What:
- While client-side image maps and server-side image maps look and operate
similarly, they are technically very different. Because of the way server-side
image maps work, all information about the image and links is stored at
the Web server and is not available to the user's Web browser or assistive
technology.
- Why:
- Screen readers cannot identify or read the separate areas or links within
server-side image maps.
- How:
- Whenever possible, use client-side image maps instead of server-side image
maps. If server-side image maps must be used, provide a set of text links
that duplicate all the functions/destinations included in the image map.
- Ref:
- WCAG 1.2, 9.1(P1); 508 e, f
6. Audio
6.1 - Do not convey information with sound alone. > Contents
- What:
- It is possible to use sound for a variety of purposes, including presenting
warning signals, cues, or verbal instructions.
- Why:
- Users who are deaf or hard of hearing may miss information provided only
through sound.
- How:
- Whenever significant information is provided by sound, include a visual
indicator that provides the same information as well.
- Ref:
- WCAG 1.1(P1); 508 a
6.2 - Provide text transcripts for audio containing speech. > Contents
- What:
- "Audio containing speech" includes audio recordings or live broadcasts
of speeches, seminars, conferences, etc. A text transcript is a word-for-word
written record of the spoken content of such an event.
- Why:
- Individuals who are deaf or hard of hearing may require text transcripts
to access audio information.
- How:
- Provide a link to a text (or HTML) transcript of any audio presented on
a Web site. Transcripts should be posted at the same time the audio is made
available. Computer-Aided Real Time (CART) captioners can transcribe live
events.
- Ref:
- WCAG 1.1 (P1); 508 a
7.1 - Provide synchronized captions for multimedia containing speech. > Contents
- What:
- Multimedia generally refers to recorded or live media containing both
video and audio tracks. Captioning (as in "closed captioned") is essentially
a text transcript of the audio synchronized with the audio/video tracks
of the presentation.
- Why:
- Individuals who are deaf or hard of hearing may require captions to access
the audio information in multimedia.
- How:
- Whenever possible, captions should be implemented using Synchronized Multimedia
Integration Language (SMIL) to synchronize the display of text from a transcript
with the video. As a less desirable alternative, captions can be added to
a standard video recording and then converted to a Web format.
- Ref:
- WCAG 1.4 (P1), 508 b
7.2 - Provide audio descriptions for multimedia with significant video. > Contents
- What:
- Audio descriptions are verbal descriptions of the actions and images displayed
in a video that are inserted during pauses in the regular dialog or audio
track. Audio descriptions are only necessary if significant information
that is presented visually is not discernable from the dialog or audio track.
- Why:
- Individuals who are blind or low-vision may require audio descriptions
to access the visual information in multimedia.
- How:
- Carefully consider whether audio descriptions are necessary to present
the significant information of a multimedia recording. Many speech-intensive
events, such as speeches, lectures, or conferences, may not need audio description.
- Ref:
- WCAG 1.3 (P1)
8. Animation
8.1 - Avoid flickering, blinking, and unnecessary animation. > Contents
- What:
- Animated graphics, Flash, Java,
<blink> tags, <marquee>
tags, and other techniques are often used to create a variety of animated
effects.
- Why:
- Flickering or blinking between 2 and 55 Hz (flashes per second) can trigger
epileptic seizures. Animation can be distracting to users with certain visual
or perceptual disabilities.
- How:
- Do not cause elements to blink regularly between 2 and 55 Hz. Use this
general guideline: If an animation has an appearance of a strobe light,
or something close, do not use it. Avoid animation and movement unless it
provides significant additional information.
- Ref:
- WCAG 7.1 (P1), 7.2, 7.3 (P2); 508 j
9. Links
9.1 - Make sure that links are understandable out of context. > Contents
- What:
- A link is understandable out of context when it clearly indicates its
destination or function without requiring additional information.
- Why:
- Screen reader users often tab through links (skip from link to link by
pressing the Tab key) in order to "scan" a page. Most screen readers also
offer a "links list" feature to help speed the process of navigating to
specific links. Links that are not understandable out of context, such as
"click here" or "more," make these techniques much less efficient.
- How:
- Use link text that is clear and unambiguous. Avoid using "click here."
- Ref:
- WCAG 13.1 (P2)
9.2 - Provide a means of skipping past repetitive navigation links. > Contents
- What:
- Navigation links are the lists or "menus" of links to all the sections
of a site that are often repeated on every page.
- Why:
- Because navigation links are typically placed at the beginning (top left)
of pages, screen reader users must read through all the navigation links
before reaching the main area of the page. Individuals who use a keyboard
instead of a mouse similarly must tab through all the navigation links before
reaching the main area of the page. Providing a means of skipping these
links can significantly improve efficiency and usability for screen reader
and keyboard users.
- How:
- Provide a link at the beginning of navigation lists that points to a target
at the beginning of the main content area of the page. This link must be
visible to screen reader and keyboard users, but can be hidden from other
users. It is also acceptable to design a page so that navigation links come
at the end of the document.
- Ref:
- 508 o
9.3 - Avoid using small images or text as links. > Contents
- What:
- The size of the "clickable" area of a link is limited to the size of the
image or text that makes up the link.
- Why:
- Mouse-users with limited fine motor skills may have difficulty pointing
to and clicking on links that are small, especially if the links are close
together.
- How:
- Make sure that images used for links are reasonably large, preferably
32 pixels by 16 pixels or larger. Use standard or enlarged font sizes for
text links, and avoid using text links that are shorter than four characters
in length. Additionally, avoid placing small links close together.
- Ref:
- n/a
10.1 - Associate labels with all form fields. > Contents
- What:
- HTML forms include "fields" such as buttons (
<input type="button">),
text boxes (<input type="text">), list boxes (<select>),
and more. Each field is typically identified by a text label.
- Why:
- Screen readers cannot always determine which label belongs to which field
based on positioning alone. The
<label> element makes
this association clear.
- How:
- Use the
<label for=""> tag to label every form field.
Note: The value of a label's for attribute is the corresponding
field's id, not its name.
- Ref:
- WCAG 12.4 (P2); 508 n
10.2 - Position labels as close as possible to form fields. > Contents
- What:
- Using certain layout techniques, form labels are not always positioned
immediately next to their fields.
- Why:
- When screen magnification software enlarges a Web page it also reduces
the field of view. If form field label is positioned far away from its field,
it may be impossible for a screen magnifier-user to view both the field
and the label at the same time.
- How:
- Position labels immediately adjacent to fields, preferably in standard
locations, such as on the left or above text boxes and list boxes and on
the right of checkboxes and radio buttons.
- Ref:
- WCAG 10.2 (P2); 508 n
10.3 - Include any special instructions within field labels. > Contents
- What:
- Frequently, special instructions are listed after the field to which they
apply. In some cases, instructions are even presented in "pop up" text or
in the browser's status bar.
- Why:
- When filling out a form, screen readers typically read only the field's
label. Screen magnifiers will focus on the field and its label, and instructions
may be out of the field of view.
- How:
- Special instructions should be given before the form field and within
the field label if possible. If instructions are too long to appropriately
fit within the label, they should be given in an instructions section in
advance of the form.
- Ref:
- 508 n
10.4 - Make sure that form fields are in a logical tab order. > Contents
- What:
- Screen reader and keyboard users move between form fields (and links)
using the Tab key. The order in which form fields receive focus is called
the tab order. By default, the tab order follows the order in which elements
appear in a page's HTML code.
- Why:
- Depending on the design and layout of a page, the tab order may not match
the visual (or logical) order of fields on a form. Reading fields out of
their intended order can be disorienting for a screen reader or keyboard
user.
- How:
- Make sure that fields appear in the HTML code in the logical order and/or
use tabindex to set the appropriate order.
Note: Tabindex only is supported by Internet Explorer 4 and
up.
- Ref:
- WCAG 9.4 (P3); 508 n
11. Data Tables
11.1 - For simple data tables, explicitly identify headings for all columns and rows. > Contents
- What:
- "Data tables" are simply HTML tables used to display data. (On the other
hand, "layout tables" are used to lay out columns and sections on a Web
page. Both data and layout tables use the
<table> element,
but their functions, and accessibility issues, are very different.) "Headers"
identify the content of each row and/or column.
- Why:
- A screen reader can use table headers to provide row and column information
while a user explores the data cells within a table.
- How:
- Use
<th> (table header) or <td>
(table data) elements with scope="col" (for column headers)
or scope="row" (for row headers) to identify cells that contain
row and/or column headings.
- Ref:
- WCAG 5.1 (P1); 508 g
11.2 - Avoid using complex data tables. > Contents
- What:
- Table with multiple layers of headers and "spanned" columns or rows can
become very complex.
- Why:
- Complex data tables can be difficult to navigate and understand using
a screen reader. Only the most advanced screen readers can use advanced
table markup to provide orientation information.
- How:
- Whenever possible, simplify complex tables by re-arranging or dividing
them into separate tables. When a complex table cannot be simplified, use
advanced table markup, such as headers, axis, scope,
<col>,
and <colgroup>, to fully indicate the relationships between
data cells and headers.
Note: See W3C's "Tables in HTML
Documents" (http://www.w3.org/TR/html401/struct/tables.html) for complete
details on how to markup complex tables.
- Ref:
- WCAG 5.2 (P1); 508 h
12. Frames
12.1 - Provide meaningful names and page titles for all frames. > Contents
- What:
- HTML frames are used to divide Web pages into separate areas, each displaying
a separate Web page. Each frame is identified by a
name attribute
and each page contained within a frame is identified by its <title>
element.
- Why:
- To navigate pages with frames, users who are blind must be able to identify
the different frames and understand the purpose of each frame. Most screen
readers identify frames by speaking the name and/or page title of each frame.
- How:
- Give each frame an understandable name that indicates the frame's function.
For example, use
name="Navigation" and name="Content"
rather than name="nav" and name="right". Set the
<title> element of each page contained within a frame
to match the name attributes or to identify the current content
of that frame.
Note: Traditionally, the "name" attribute is used for programming
and should not contain spaces; the title attribute, which can
contain spaces, can also be used to set a more descriptive name for each
frame; however, this technique is not yet supported by all screen readers.
- Ref:
- WCAG 12.1 (P1); 508 i
12.2 - Avoid using empty or non-essential frames. > Contents
- What:
- Frames are sometimes used inappropriately for formatting and layout. For
example, empty frames can be used to create margins around or within a page.
- Why:
- Screen readers cannot judge whether the content of a frame is significant
and must identify every frame for the user. Having to read this extraneous
information for non-essential frames can be time consuming and confusing.
- How:
- Use frames sparingly. If a frame is not necessary for page content, eliminate
it.
- Ref:
- n/a
13. Scripts
13.1 - Make sure that significant interactions can be performed with both keyboard and mouse. > Contents
- What:
- Scripting languages, such as JavaScript, are simple programming languages
that can be used within a Web browser to automate certain tasks and enable
pages to change and respond to user input. Scripts can trigger changes when
the user performs specific actions ("events"). Some events are triggered
by either mouse or keyboard actions. For example, an image can change color
when the mouse pointer hovers over it (the onmouseover event).
- Why:
- Users with physical impairments may be able to use the keyboard but not
the mouse. Individuals who cannot see the mouse pointer on the screen also
use the keyboard for all interactions. Scripts that can only be triggered
by the mouse are not usable by these individuals.
- How:
- Whenever using a mouse-only event (e.g., onmouseover, onmouseout) to trigger
a significant script action, also use the corresponding keyboard event (e.g.,
onfocus, onblur). Also make sure that keyboard events do not unintentionally
trigger script actions. For example, keyboard users should be able to arrow
through the choices in a
<select> list without triggering
each choice (e.g., onchange).
- Ref:
- WCAG 6.4, 9.2, 9.3 (P2)
13.2 - Make sure that essential content and functionality are available when client-side scripts
are not fully supported. > Contents
- What:
- Scripts are often used to dynamically show or hide the content that appears
on a Web page or to perform important functions, such as checking that entries
in form fields are appropriate. "Client-side" scripts, such as JavaScript,
are scripts that are run by the user's Web browser. Client-side scripts
must be supported by and compatible with the user's browser in order to
work. ("Server-side" scripts, such as CGI, ASP, JSP, or PHP, run on the
Web server before the Web page ever reaches the user's browser. Server-side
scripts do not generally pose additional accessibility problems.)
- Why:
- Older assistive technologies and Web browsers may not support client-side
scripting at all. Even current assistive technologies may interact in unexpected
ways with content that is displayed using scripts, such as by skipping text
that is dynamically displayed or reading text that is dynamically hidden.
Users need to be able to access the same essential content and functionality
whether scripts are fully, partially, or not supported. It is not safe to
assume that users with disability related needs will have scripting support
turned off.
- How:
- Whenever scripts are used, it is the responsibility of the page developer
to thoroughly test using assistive technologies to ensure that all information
and functionality is accessible. If there is any doubt, err on the safe
side by ensuring that the essential elements of the page do not rely on
scripts.
Note: One approach to ensuring accessibility with scripts is to include
a back-up method of providing the same information and functionality that
does not require scripts. For example, if a client-side script is used to
check an entry in a form field, a server-side script could make the same
check. Similarly, if scripts are used for "drop-down" menus, the same menu
choices could be provided in an appropriate location elsewhere on the current
or subsequent page. Additionally, scripting features that are purely decorative
and do not present any significant information or functionality do not need
to be made accessible. (However, remember Guideline 8.1 - Avoid flickering,
blinking, and unnecessary animation.)
- Ref:
- WCAG 6.3 (P1); 508 l
14. Applets
and Plug-Ins
14.1 - Use accessible applets or plug-ins whenever possible. > Contents
- What:
- "Applets" and "plug-ins" refer to a variety of newer Web technologies,
such as Java and Flash, that can be used to create advanced, interactive
content on Web pages. Both require additional software to be downloaded,
installed, and run before the content can be viewed or used. Applets and
plug-ins also operate with their own user interfaces, which are separate
and different from that of standard Web pages.
- Why:
- Because applets and plug-ins have their own interfaces, they must be accessible
in and of themselves. If essential content or functionality is presented
using an applet or plug-in that is not accessible, it will not be usable
by individuals with certain disability related needs.
- How:
- Check with the manufacturer and/or developer of each applet or plug-in
to determine if and how the technology is accessible. When an accessible
applet or plug-in is available, provide users with a link to any special
instructions or software that is necessary.
- Ref:
- WCAG 8.1 (P2); 508 m
14.2 - If an inaccessible applet or plug-in is used, provide an accessible alternative that includes
the same content and functionality. > Contents
- What:
- If an applet or plug-in is inaccessible, it may be possible to provide
both the original applet or object and an equivalent accessible alternative.
- Why:
- The same features that make an applet or plug-in inaccessible to some
users may actually improve accessibility or usability for users without,
or with different, disabilities. By providing both the original and accessible
versions, the same content and functionality can be available to all users.
- How:
- Wherever a link is provided to an inaccessible applet or object, also
provide a link to an equivalent accessible version. Make sure that the information
and functionality is completely equivalent and up-to-date. Be sure to consider
whether the inaccessible version is actually necessary.
In cases where it is impossible to create an equivalent accessible version,
such as with some geographical imaging and mapping systems, exceptions may
be necessary.
- Ref:
- WCAG 6.2, 11.4 (P1); 508 k
- Hints:
- Hints 14.2
15.
Downloadable Documents
15.1 - Provide accessible HTML or text versions of downloadable documents whenever possible. > Contents
- What:
- Downloadable documents are often provided in formats such as Adobe Acrobat
PDF, Microsoft Word, or WordPerfect. Such documents must be viewed in their
own applications or using a Web browser plug-in.
- Why:
- The applications required to open downloadable documents may not be available
or accessible to users with disability related needs.
- How:
- Wherever a link is provided to a document that is not HTML or text, also
provide a link to an accessible HTML or text version of the same document.
HTML versions should follow these guidelines; text versions may require
reformatting to ensure proper reading order, and additional text descriptions
may need to be added for charts, graphs, or other non-text content.
Note: Adobe is actively improving the accessibility of PDF documents, however,
the process for making existing PDF documents accessible is complex, and
the accessibility features are not yet completely supported. (See access.adobe.com for more
information as well as Adobe's online PDF to HTML conversion tools.)
- Ref:
- n/a
15.2 - If a downloadable document cannot be provided in an access
ible electronic format, provide information on how to request an alternate format. > Contents
- What:
- In some cases, documents cannot be provided in electronic format.
- Why:
- Users with disability related needs must still have equivalent access
to public documents.
- How:
- Provide information regarding whom to contact to obtain the document in
alternate formats (e.g., braille, large-print, or audio-cassette). Alternate
formats must be available in a timely manner.
- Ref:
- n/a
16. Window
Control
16.1 - Notify users of actions that will open a new window. > Contents
- What:
- It is possible to cause hypertext links to open pages in a new browser
window, or to automatically open additional windows when a page loads or
unloads.
- Why:
- It may not always be obvious to users, especially those with limited vision,
blindness, or perceptual disabilities, when a new window has opened. It
can be confusing when features such as the browser's "back" button no longer
work as expected.
- How:
- Avoid automatically opening new windows. Clearly identify any links that
will open new windows by providing an indication in the link text or
title
attributes.
- Ref:
- WCAG 10.1 (P1)
16.2 - Do not automatically refresh the current page. > Contents
- What:
- It is possible to cause Web pages to automatically re-load their content
on a certain interval. For example, a page containing news headlines might
refresh every few minutes to present the most current items.
- Why:
- When a page automatically refreshes, it can cause a screen reader to re-start
reading from the beginning of the page.
- How:
- Do not use
HTTP-EQUIV="refresh". If necessary, provide a
link or control to allow the user to refresh a page at his or her discretion.
- Ref:
- WCAG 7.4 (P2)
16.3 - Notify users of time limits and provide a means to extend time if needed. > Contents
- What:
- Some Web pages, frequently those that require a user to log in with an
ID and password, "reset" themselves after a certain period of inactivity.
Typically, any form entries that have been partially completed are erased
and the user must start over.
- Why:
- Users with visual, physical, perceptual or learning disabilities may require
more time than average to read and interact with a Web page.
- How:
- Provide a clear explanation of any time limits and offer the user a way
to extend or remove the limits if necessary. Avoid using time limits unnecessarily.
- Ref:
- WCAG 7.5 (P2); 508 p
17. Page Layout
17.1 - When using tables for layout, make sure that reading order is logical. > Contents
- What:
- Layout tables are HTML tables used to lay out a Web page in multiple columns
and sections (as opposed to tables that actually present data.) "Reading
order" refers to the order in which a screen reader would read through the
table. For example, the reading order for a simple table might be (1) row
1, cell 1, (2) row 1, cell 2, (3) row 2, cell 1, and (4) row 2, cell 2.
- Why:
- Screen readers read through tables in the order in which cells are defined
in the table code, which can be very different from the order that someone
reading visually would follow. It is essential that the reading order match
the logical flow of the document so that a screen reader user would hear
the document in the same order that a visual reader would read it.
- How:
- Check the reading order by following the order in which the table cells
appear in the code. It may be possible to combine cells and/or nest tables
to achieve an appropriate reading order.
- Ref:
- WCAG 5.3 (P2)
17.2 - When using style sheets for layout, make sure that reading order is logical when style
sheets are not supported. > Contents
- What:
- The positioning features of Cascading Style Sheets can be used to position
elements visually almost anywhere on a Web page.
- Why:
- As with layout tables, screen readers read through the elements on a Web
page in the order in which they appear in the page code, regardless of how
they are positioned using style sheets. It is essential that the reading
order match the logical flow of the document so that a screen reader user
would hear the document in the same order that a visual reader would read
it.
- How:
- Check the reading order by following the order in which elements appear
in the page code. Reading order can usually be adjusted by rearranging the
order in which elements are defined in the code.
- Ref:
- WCAG 6.1 (P1); 508 d
17.3 - Minimize the need for horizontal scrolling. > Contents
- What:
- If a Web page is wider than the window or screen in which it is viewed,
most browsers will display a horizontal scroll bar and require the user
to manually scroll to see the entire page.
- Why:
- When a screen magnifier enlarges a Web page, it also reduces the field
of view so that the user must pan (scroll) to see the entire page. When
the Web page being viewed also requires horizontal scrolling, the combination
can be awkward or unusable. Keyboard users may also find repetitive scrolling
fatiguing and inefficient.
- How:
- Design pages so that they can resize to fit the width of the user's browser.
Use relative widths on tables and frames used for layout and make sure that
horizontally adjacent images are less than a total of 600 pixels wide. If
scrolling cannot be avoided, place the least important content in the rightmost
part of the page.
- Ref:
- WCAG 3.4 (P2)
18. Page Content
18.1 - Use the clearest, simplest, and most concise language appropriate for a page's subject matter. > Contents
- What:
- "Clearest, simplest, and most concise language" refers to the words and
grammar used in the content of a Web page. It is a subjective goal that
depends on the subject matter and intended audience of each Web page.
- Why:
- Clear and simple language is easier for all readers, and especially those
with cognitive/learning disabilities. Simple language also helps individuals
whose primary language is American Sign Language, which differs significantly
from written English.
- How:
- Be concise and avoid jargon. Have someone else proofread your text. Do
user testing with people from your intended audience if possible.
- Ref:
- WCAG 14.1 (P1)
19. Alternate Accessible Versions
19.1 - Use separate accessible versions only as a last resort. > Contents
- What:
- Separate accessible or "text-only" versions are often offered instead
of providing a single accessible site.
- Why:
- Manually developing and maintaining a separate "text-only" version of
an entire site is tremendously demanding of time and resources. In practice,
"text-only" versions are rarely kept complete or up-to-date. Given advances
in accessibility techniques and assistive technologies, "text-only" sites
are simply not necessary in most cases.
- How:
- Follow these standards to develop a single site that is universally accessible
and efficient to maintain.
- Ref:
- WCAG 11.4 (P1); 508 k
20.1 - Provide contact information. > Contents
- What:
- A contact person for accessibility issues must be identified. Contact
information could include email, telephone, TTY or mailing address.
- Why:
- Individuals with disabilities may need to report accessibility problems
or request information in an alternate accessible format.
- How:
- Provide contact information regarding Web accessibility or a link to an accessibility contact page on each Web site’s home page (required) or on all pages (recommended). This is in addition to or in conjunction with the contact information required for all pages.
Inquiries about accessibility, especially requests for materials in alternate
format, need to be handled in a timely manner.
You may use any of the following examples or similar statements:
- If you are experiencing difficulty with this site’s navigation or accessing any element of this Web site, please contact: xyz@uwec.edu
- Contact or Accessibility Questions: xyz@uwec.edu
- Content Questions: abc@uwec.edu
Accessibility Questions: xyz@uwec.edu
- Content Questions: abc@uwec.edu
- Alternately, provide a link to an accessibility contact page, an
example of which is provided
- Ref:
- n/a
21. Testing
21.1 - Test for accessibility. > Contents
- What:
- Testing includes functional tests with assistive technology, browser and
operating system functionality as well as automated testing software.
- Why:
- Testing will determine whether accessibility has actually been accomplished.
- How:
- Use browser and operating system accessibility features and leading assistive
technology software such as screen readers and magnifiers to test for functional
accessibility. Use an automated testing tool like Bobby (http://www.cast.org/bobby) to identify
common accessibility problems. If possible, do user testing with people
with disabilities.
- Ref:
- n/a
Additional Resources
WebAIM Section 508 Checklist
- Our thanks to the state of Illinois for allowing us to adapt these standards
from the Illinois Web Accessibility Standards: http://www.illinois.gov/ito/iwas1_2.cfm.
-
For questions, comments, or suggestions regarding the UW-Eau Claire Web Accessibility
Standards, contact the Web Development Office:
University of Wisconsin-Eau Claire
PO Box 4004
Eau Claire, WI 54702-4004
Attn: Web Development Office
Telephone: (715) 836-4214
Email: web@uwec.edu
Updated:
March 10, 2009