Access for All: Basics of Website Accessibility & Section 508 Compliance

43
Access for All: Basics of Website Accessibility & Section 508 Compliance Presenter: Cindy Leonard Bayer Center for Nonprofit Management at Robert Morris University

description

Breakout session presentation given by Cindy Leonard, Bayer Center for Nonprofit Management, at the 2010 Nonprofit Technology Conference (NTC).

Transcript of Access for All: Basics of Website Accessibility & Section 508 Compliance

Page 1: Access for All: Basics of Website Accessibility & Section 508 Compliance

Access for All: Basics of Website Accessibility & Section 508 Compliance

Presenter: Cindy LeonardBayer Center for Nonprofit Management at

Robert Morris University

Page 2: Access for All: Basics of Website Accessibility & Section 508 Compliance

Session Agenda

• What is website accessibility?

• How people with disabilities use the web

• Overview of Section 508 Standards

• Handouts – Questions to Ask Your Developer & Audience Assessment

• Breakout groups

• Report back, then full group discussion and Q&A

Page 3: Access for All: Basics of Website Accessibility & Section 508 Compliance

Housekeeping

• Session wiki:

http://section508guidelines.wikispaces.com

• Hashtag:

#10NTC.s508

Page 4: Access for All: Basics of Website Accessibility & Section 508 Compliance

Graphic source: Hityourmarketi.com

What isWebsiteAccessibility?

Page 5: Access for All: Basics of Website Accessibility & Section 508 Compliance

Progressive Enhancement

Page 6: Access for All: Basics of Website Accessibility & Section 508 Compliance

Accessible ≠ Boring

Page 7: Access for All: Basics of Website Accessibility & Section 508 Compliance

Video source: The ASD Project, WebAIM.org

Page 8: Access for All: Basics of Website Accessibility & Section 508 Compliance

WCAG 2.0 vs. Section 508

• Web Content Accessibility Guidelines (WCAG) – by Website Accessibility Initiative (WAI) part of World Wide Web Consortium (W3C)

• 4 Guidelines– Perceivable– Operable– Understandable– Robust

Page 9: Access for All: Basics of Website Accessibility & Section 508 Compliance

WCAG 2.0 vs. Section 508

• Section 508– § 1194.21 Software applications and operating

systems– § 1194.22 Web-based intranet and internet information

and applications

• Based on WCAG 1.0• Federal government mandated

standards for federal websites and for agencies who receive federal funding

Page 10: Access for All: Basics of Website Accessibility & Section 508 Compliance

Section 508

• § 1194.22 in 30 minutes or less

• Ready?? Here we go…

Page 11: Access for All: Basics of Website Accessibility & Section 508 Compliance

A

• A text equivalent for every non-text element shall be provided.

Page 12: Access for All: Basics of Website Accessibility & Section 508 Compliance
Page 13: Access for All: Basics of Website Accessibility & Section 508 Compliance

B

• Equivalent alternatives for any multimedia presentation shall be synchronized with the presentation.

Page 14: Access for All: Basics of Website Accessibility & Section 508 Compliance

C

• Web pages shall be designed so that all information conveyed with color is also available without color, for example from context or markup.

Page 15: Access for All: Basics of Website Accessibility & Section 508 Compliance
Page 16: Access for All: Basics of Website Accessibility & Section 508 Compliance

D

• Documents shall be organized so they are readable without requiring an associated style sheet.

Page 17: Access for All: Basics of Website Accessibility & Section 508 Compliance
Page 18: Access for All: Basics of Website Accessibility & Section 508 Compliance

E

• Redundant text links shall be provided for each active region of a server-side image map.

Page 19: Access for All: Basics of Website Accessibility & Section 508 Compliance

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.

Page 20: Access for All: Basics of Website Accessibility & Section 508 Compliance
Page 21: Access for All: Basics of Website Accessibility & Section 508 Compliance

<a href= "wwwnav.map">

<img src="... navbar.gif" border="0" ismap="ismap" alt="King County Navigation Bar (text navigation at bottom)"> </a>

Page 22: Access for All: Basics of Website Accessibility & Section 508 Compliance

G

• Row and column headers shall be identified for data tables.

Page 23: Access for All: Basics of Website Accessibility & Section 508 Compliance

<table>

<tr>

<th>Column 1 Heading</th>

<th>Column 2 Heading</th>

</tr>

<tr>

<td>Data 1</td>

<td>Data 2</td>

</tr>

</table>

Page 24: Access for All: Basics of Website Accessibility & Section 508 Compliance

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.

Page 25: Access for All: Basics of Website Accessibility & Section 508 Compliance
Page 26: Access for All: Basics of Website Accessibility & Section 508 Compliance
Page 27: Access for All: Basics of Website Accessibility & Section 508 Compliance

I

• Frames shall be titled with text that facilitates frame identification and navigation.

Page 28: Access for All: Basics of Website Accessibility & Section 508 Compliance

Ewwww.

Page 29: Access for All: Basics of Website Accessibility & Section 508 Compliance

J

• Pages shall be designed to avoid causing the screen to flicker with a frequency greater than 2Hz and lower than 55 Hz.

Page 30: Access for All: Basics of Website Accessibility & Section 508 Compliance

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.

Page 31: Access for All: Basics of Website Accessibility & Section 508 Compliance

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.

Page 32: Access for All: Basics of Website Accessibility & Section 508 Compliance

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 §1194.21(a) through (l).

Page 33: Access for All: Basics of Website Accessibility & Section 508 Compliance

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.

Page 34: Access for All: Basics of Website Accessibility & Section 508 Compliance

For example, using label tags to name fields:

<label for=“formfield”>Field Name</label>:

<input type=“text” name=“formfield” id=“formfield” />

Page 35: Access for All: Basics of Website Accessibility & Section 508 Compliance

O

• A method shall be provided that permits users to skip repetitive navigation links.

Page 36: Access for All: Basics of Website Accessibility & Section 508 Compliance

Easiest method – provide link to main content with HTML anchor tag:

<a href=“#main”>Skip to Main Content</a>

<!--MENU HERE//-->

<h1><a name=“main”>Main Content Header</a></h1>

Page 37: Access for All: Basics of Website Accessibility & Section 508 Compliance

P

• When a timed response is required, the user shall be alerted and given sufficient time to indicate more time is required.

Page 38: Access for All: Basics of Website Accessibility & Section 508 Compliance
Page 39: Access for All: Basics of Website Accessibility & Section 508 Compliance

Resources

• Questions to Ask Your Developer

• Audience Assessment

Page 40: Access for All: Basics of Website Accessibility & Section 508 Compliance

Site Testing for Accessibility

• Cynthia Sayshttp://www.contentquality.com/

• Total Validatorhttp://www.totalvalidator.com/

• Truwex Onlinehttp://checkwebsite.erigami.com/accessibility.html

• Live user review (external to agency)• Download trial version of assistive devices (screen

readers, etc.)

Page 41: Access for All: Basics of Website Accessibility & Section 508 Compliance

Small Group Breakout Discussions

• The Big Question:

Think about implementing web accessibility standards into your organization’s website or your web development practice.

What challenges might you encounter in this process?

Page 42: Access for All: Basics of Website Accessibility & Section 508 Compliance

The Home Stretch

• Report back from small group discussions

• Make list of common themes

• Full group discussion:

How might we meet the anticipated challenges? What practical steps can we take to ensure success?

Page 43: Access for All: Basics of Website Accessibility & Section 508 Compliance

Please take a moment to do an evaluation so we can continue to improve your NTC experience!

Thanks!!

The evaluation code for this session is: [116]