SlideShare a Scribd company logo
Is your website ADA-compliant?
Laura Solomon
Library Services Manager
OPLIN
DISCLAIMERS
•IANAL
•The law isn’t clear
•I’m primarily a code
geek here
•I can’t cover it all
•I’m not perfect,
either
Wht we’ll cover:
• Why web accessibility?
• Current accessibility guidelines
• Online validators
• Getting into the guts of Section
508 (**CODE WARNING**)
Accessibility versus usability
Is your website ADA-compliant?
BONUS!
What are the standards?
• WCAG 2 (W3C/WAI)
• Section 508
WCAG 2.0
• A (26 criteria)
• AA (23 criteria)
• AAA (23 criteria)
• More info?
http://www.w3.org/WAI/intro/wcag
4 principles of WCAG 2.0
•Perceivable
•Operable
•Understandable
•Robustness
Is your website ADA-compliant?
Problems with standards
Online validators
• Cynthia Says (http://
www.cynthiasays.com)
• AChecker (
http://achecker.ca/checker/index.php )
Need more? Complete list of web accessibility validation
tools, maintained by WAI:
http://www.w3.org/WAI/RC/tools/complete
Is your website ADA-compliant?
Is your website ADA-compliant?
Is your website ADA-compliant?
Is your website ADA-compliant?
Is your website ADA-compliant?
“Only true accesibility test”
• Elderly
• Learning disabilities
• Physical disabilities
• Low vision
• Blind
Diving
into the
code
Stop using these:
• Flash
• Frames
• <blink> or
<marquee>
tags
• AJAX menus
• Tables for
layout
Use with
extreme
caution:
• Iframes
• Drop-down
menus
• Image maps
• Video/multimedia
• Javascript
Make sure your code validates!
Photo credit: Sebastian Bergmann
Use the <lang> attribute
• Syntax:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang=“en"
xml:lang=“en">
•Without:
http://www.meanlaura.com/soundfiles/cnn_menu.mp3
With:
http://www.meanlaura.com/soundfiles/lowes_menu.mp3
Alternative text
GOOD:
<img
scr=“http://www.oplin.org/panda.jpg”
alt=“Panda bear relaxing on a large
rock” />
BAD:
<img
scr=“http://www.oplin.org/panda.jpg”
alt=“Panda” />
What is longdesc?
<img src="graph.gif"
longdesc="graph.html" ALT="3D
pie chart of funding statistics">
Meaningful images
Photo from Westville Public Library, NJ
(https://secure.flickr.com/photos/njla/4015734912/sizes/z/in/photostream/ )
Alt vs. title
Fixed vs. proportional fonts
• BAD:
– Font-size: 12px;
– Font-size: 12pt;
• GOOD:
– Font-size: 1.3em;
– Font-size: .78em;
Use header tags correctly
BAD:
<h2>This is a Level-2 Header</h2>
<h3>This is a Level-3 Header</h3>
GOOD:
<h1>This is a Level-1 Header</h1>
<h2>This is a Level-2 Header</h2>
Forms
Form picture & following 2 examples from the Veterans Health Administration
http://www.webjunction.org/accessibility/-/articles/content/98661533
Form labels
• Bad Checkboxes:
• <LABEL>Please rate your
experience with our
services</label>
• <P>
• <INPUT id=good type=checkbox
value=good name=good><br>
• Good
• <INPUT id=excellent
type=checkbox value=excellent
name=excellent>
• <br>Excellent!
• <INPUT id=spectacular
type=checkbox value=spectacular
name=spectacular>
• Spectacular!
• Good Checkboxes:
• <legend>Please rate your
experience
• with our services</legend>
• <P>
• <INPUT id=good type=checkbox
value=good name=good><LABEL
for=good>good</label>
• <INPUT id=excellent
type=checkbox value=excellent
name=excellent><LABEL
for=excellent>Excellent</LABEL>
• <INPUT id=spectacular
type=checkbox value=spectacular
name=spectacular><label
for=spectacular>Spectacular</lab
el>
Text input fields
Bad text input:
Full Name<BR>
<INPUT name=first>
<INPUT maxLength=1 size=1
name=MI>
<INPUT id=last size=25
name=last>
Good text input:
Full Name<br />
<label>for=“first“>First</label>
<input name=“first“ id=“first“ >
<label for=MI">M.I.</label>
<input maxlength=“1“ size=“1“
name=“MI“ id=“MI“>
<label for=“last“>Last</label>
<input id=“last“ size=“25“
name=“last“>
Tab index
Example from http://webdesign.about.com/od/examples/l/bl_aa071105.htm
Meaningful link text
“Click here”
versus
“More bestsellers”
Duplicate link text
Tables
BAD table markup:
<table>
<tr>
<td><strong>Fruit</strong></td>
<td><strong>Vegetables</strong></td>
<tr>
<td>Bananas</td>
<td>Celery</td>
</tr>
<tr>
<td>Apples</td>
<td>Lettuce</td>
</tr>
</table>
GOOD table markup:
<table summary=“Fruits & vegetables table”>
<tbody>
<tr>
<th>Fruit</th>
<th><Vegetables</th>
<tr>
<td>Bananas</td>
<td>Celery</td>
</tr>
<tr>
<td>Apples</td>
<td>Lettuce</td>
</tr>
</tbody>
</table>
Fruit Vegetables
Bananas Celery
Apples Lettuce
PDFs need a link to Adobe Reader
Use of color
•Can’t be the only indicator of meaning
Some notes about NVDA
• Download: http://www.nvda-project.org/
• Use it in Firefox
• It takes a lot of time to get familiar with it!
• The page may not scroll while the reader
is reading
• Getting started guide:
http://webaim.org/articles/nvda/
Resources
• Official Section 508 website:
http://www.section508.gov/
• Website Accessibility Under Title II of the ADA
(from the DoJ)
http://www.ada.gov/pcatoolkit/chap5toolkit.htm
• Writing great alt text
http://webdesign.about.com/od/accessibility/a/gr
eat_alt_text.htm
• “Web accessibility no longer an afterthought”—
CNN, 2009
http://www.cnn.com/2009/TECH/12/15/cnet.web.
accessibility/index.html
http://www.twitter.com/laurasolomon
http://www.facebook.com/laurasolomon
http://www.linkedin.com/in/laurasolomon
laura@designforthelittleguy.com
http://www.meanlaura.com
http://www.slideshare.net/laurasolomon
Thank you!

More Related Content

PPT
Drupal: Community Plumbing for Public Libraries
PPT
Mobile matters: The very least you need to know
PPT
PPT
Using Wordpress for Internet Publishing
PPT
Emergency Fixes for Library Web Sites
PPT
When Webinars Attack!: Getting from tedious to terrific
PPT
20 Things You Can Do to Make Your Library's Website Better Right Now
PPT
What Your Tech Wants You To Know
Drupal: Community Plumbing for Public Libraries
Mobile matters: The very least you need to know
Using Wordpress for Internet Publishing
Emergency Fixes for Library Web Sites
When Webinars Attack!: Getting from tedious to terrific
20 Things You Can Do to Make Your Library's Website Better Right Now
What Your Tech Wants You To Know

Viewers also liked (13)

PPT
PPT
Put Down the Bullhorn: Promoting your library online
PPT
PPT
Web 2.0: The Stuff That Matters
ODP
OPLIN Stakeholders Meeting 2013
PDF
Observatoire départemental de l'eau - Eure 2012
PPTX
CMSday 2013 - Comment valoriser son patrimoine numérique ?
PPTX
Les règles d'or pour réussir sur Twitter - Erwan le Nagard
PDF
LE MARKETING RESPONSABLE, LEVIER DE CRÉATION DE VALEUR & DE PREFERENCE DE MARQUE
PDF
Formation "Développer son activité commerciale sur le marché du tourisme d'a...
PDF
Le web : un monde virtuel en plein essor
PDF
sdfddfsdfddf
Put Down the Bullhorn: Promoting your library online
Web 2.0: The Stuff That Matters
OPLIN Stakeholders Meeting 2013
Observatoire départemental de l'eau - Eure 2012
CMSday 2013 - Comment valoriser son patrimoine numérique ?
Les règles d'or pour réussir sur Twitter - Erwan le Nagard
LE MARKETING RESPONSABLE, LEVIER DE CRÉATION DE VALEUR & DE PREFERENCE DE MARQUE
Formation "Développer son activité commerciale sur le marché du tourisme d'a...
Le web : un monde virtuel en plein essor
sdfddfsdfddf
Ad

Similar to Is your website ADA-compliant? (20)

PDF
Code Reviews @ Quatico
PDF
Validation for APIs in Laravel 4
PPTX
Toolkit for the Digital Accessibility Space
PDF
The Features of Highly Effective Forms [An Event Apart Nashville 2016]
PPTX
Automated Acceptance Tests in .NET
PPTX
Technical SEO - Presentation from London Affiliate Conference 2014
PPTX
Technical SEO - Alec Bertram's Presentation from London Affiliate Conference ...
PDF
Power of Flows and Prepare for Salesforce Admin Certification
PDF
Detailed Developer Report.pdf
PPTX
Basics of creating accessible code for websites
PDF
SEO voor Affiliates = E-tail update Tradetracker
PPTX
3 (de 3). Evaluación de Accessibilidad Digital
KEY
The Web Guidelines - A battle between project goals and procurement rules
PDF
Take Your Markup to 11
PDF
Is It WCAG 2.0 Compliant?
PDF
ISO 9001: 2015 A Complete Guide to Quality Management Systems 1st Edition Ita...
PPTX
Psm digital-olympus-slides-09.19.18
PDF
Iso 9001 2015 A Complete Guide To Quality Management Systems Itay Abuhav
PDF
Lesson 01 - KTPM - Introduction To Software Testing (P1).pdf
PDF
Premature optimisation: The Root of All Evil
Code Reviews @ Quatico
Validation for APIs in Laravel 4
Toolkit for the Digital Accessibility Space
The Features of Highly Effective Forms [An Event Apart Nashville 2016]
Automated Acceptance Tests in .NET
Technical SEO - Presentation from London Affiliate Conference 2014
Technical SEO - Alec Bertram's Presentation from London Affiliate Conference ...
Power of Flows and Prepare for Salesforce Admin Certification
Detailed Developer Report.pdf
Basics of creating accessible code for websites
SEO voor Affiliates = E-tail update Tradetracker
3 (de 3). Evaluación de Accessibilidad Digital
The Web Guidelines - A battle between project goals and procurement rules
Take Your Markup to 11
Is It WCAG 2.0 Compliant?
ISO 9001: 2015 A Complete Guide to Quality Management Systems 1st Edition Ita...
Psm digital-olympus-slides-09.19.18
Iso 9001 2015 A Complete Guide To Quality Management Systems Itay Abuhav
Lesson 01 - KTPM - Introduction To Software Testing (P1).pdf
Premature optimisation: The Root of All Evil
Ad

Recently uploaded (20)

DOCX
A Contemporary Luxury Villa in Dubai Jumeirah-2.docx
PDF
Pongal 2026 Sponsorship Presentation - Bhopal Tamil Sangam
PDF
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
PDF
Test slideshare presentation for blog post
PPTX
Orthtotics presentation regarding physcial therapy
PPTX
LITERATURE CASE STUDY DESIGN SEMESTER 5.pptx
PPTX
iec ppt- ppt on iec pulmonary rehabilitation 1.pptx
PPTX
Entrepreneur intro, origin, process, method
PPTX
BSCS lesson 3.pptxnbbjbb mnbkjbkbbkbbkjb
PDF
YOW2022-BNE-MinimalViableArchitecture.pdf
PPTX
YV PROFILE PROJECTS PROFILE PRES. DESIGN
PPTX
CLASS_11_BUSINESS_STUDIES_PPT_CHAPTER_1_Business_Trade_Commerce.pptx
PPTX
An introduction to AI in research and reference management
PPT
Machine printing techniques and plangi dyeing
PDF
GSH-Vicky1-Complete-Plans on Housing.pdf
PDF
SEVA- Fashion designing-Presentation.pdf
PPTX
NEW EIA PART B - Group 5 (Section 50).pptx
PPTX
CLASSIFICATION OF YARN- process, explanation
PPTX
Complete Guide to Microsoft PowerPoint 2019 – Features, Tools, and Tips"
PPT
pump pump is a mechanism that is used to transfer a liquid from one place to ...
A Contemporary Luxury Villa in Dubai Jumeirah-2.docx
Pongal 2026 Sponsorship Presentation - Bhopal Tamil Sangam
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
Test slideshare presentation for blog post
Orthtotics presentation regarding physcial therapy
LITERATURE CASE STUDY DESIGN SEMESTER 5.pptx
iec ppt- ppt on iec pulmonary rehabilitation 1.pptx
Entrepreneur intro, origin, process, method
BSCS lesson 3.pptxnbbjbb mnbkjbkbbkbbkjb
YOW2022-BNE-MinimalViableArchitecture.pdf
YV PROFILE PROJECTS PROFILE PRES. DESIGN
CLASS_11_BUSINESS_STUDIES_PPT_CHAPTER_1_Business_Trade_Commerce.pptx
An introduction to AI in research and reference management
Machine printing techniques and plangi dyeing
GSH-Vicky1-Complete-Plans on Housing.pdf
SEVA- Fashion designing-Presentation.pdf
NEW EIA PART B - Group 5 (Section 50).pptx
CLASSIFICATION OF YARN- process, explanation
Complete Guide to Microsoft PowerPoint 2019 – Features, Tools, and Tips"
pump pump is a mechanism that is used to transfer a liquid from one place to ...

Is your website ADA-compliant?