This website is designed to conform with standard coding conventions which make everything on the site accessible to Screen Readers used by people who are blind to read website content. Also, a larger font and carefully chosen contrasting colors are intended to help people with low vision see the site content better. Options (to the right) allow users to change the fonts to suit their individual needs.
It is the intent of the site developer to make this website conform with the standards for government websites known as Section 508 in addition to the standards of the World Wide Web Consortium (W3C). (See Audio Description and Section 508 of the Rehabilitation Act, ADA Conference July 14, 2015.) Individual pages are tested against these standards periodically. Any feedback regarding assessibility problems is encouraged (use the Webmaster link at the bottom of any page).
Each page on this site begins with an invisible link labeled "Skip Navigation." This allows Screen Reader users to skip the heading and navigation links on each page and skip directly to content. To make the link invisible to sighted users, we ask the browser to place the text outside the visible area. This is implemented as follows:
<a class="offscreen"
href="#pagebody">Skip Navigation</a>
The label "pagebody" is defined later right in front of the first words in the content area. To supplement this code, the class "offscreen" is defined as follows in the website CSS:
.offscreen { /* Force some text or
html function out of the visible window */
display: block;
position: absolute;
top: -9999px;
left: -9999px;
}
Each page has its content divided up by using HTML "heading" tags (e.g., H2, H3, H4). This allows screen reader users to list the headings and jump to the desired one without reading all intervening content.
During the rollout of this website, a blind user asked if we could provide a description of the ADP logo. This turned out to be a lot more complicated than it seems! The following information is provided primarily for web developers, but the second part may be of interest to audio describers.
The first problems were technical in nature. The standard way to identify an image for users of Screen Readers is via the Alt tag as part of the image definition.
<img src="images/adplogo.gif" alt="ADP Logo"
height="100" width="100" />
The intent is to provide a brief description of any image present on the page. So for our logo, we used the Alt tag, "ADP Logo." When we were asked to provide a description of the ADP logo, we were challenged as to how to implement this for the following reasons:
So ultimately we decided to code a separate link to the description, and make it invisible, just like the Skip Navigation link, so only Screen Reader users would be aware of it, and it wouldn't take up valuable real estate on the screen for sighted users.
Now here's the part that is interesting to audio describers. After carefully writing the description of the logo and asking a Screen Reader user to test it, she informed us that she didn't understand several of the concepts expressed in the description, including "concentric circles" and "sound waves." This is where we forget that people who are congenitally blind, versus adventitiously blind later in life, cannot understand some representations that most of us take for granted! It was a wonderful wakeup call and reminder. So we worked to reword the description in terms she could agree she understood.
To read what Screen Reader users hear, follow this link to the descriptions of the ADP and ACB logos.