SlideShare a Scribd company logo
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Web Accessibility Overview
Jeremy Bock
Web Developer
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
About me
• Web Developer for 8 years
• Worked at the CED for last 5 focusing on Web
Accessibility
• Led task force to define WVU Web Accessibility
requirements
• Co-author of a white paper: “Monitoring for
Accessibility and University Websites” in 2013
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Session Goal
Increase awareness of web accessibility
standards and practices
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Session Objectives
• Define web accessibility and why it’s important
• Consider different disabilities, the obstacles they
create and solutions to overcome those obstacles.
• Provide resources for creating accessible Math
formulas
• Provide tools and resources for accessible web
development
• Answer questions pertaining to web accessibility
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
What is web accessibility?
Web accessibility is about people. Successful web accessibility is about
anticipating the different needs of all sorts of people, understanding
your fellow web users and the different ways they consume information,
empathizing with them and their sense of what is convenient and what
frustratingly unnecessary barriers you could help them to avoid.
– Accessibility APIS: A Key to Web Accessibility By Leonie Watson & Chaals McCathie Nevile
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Why do we care?
It’s the law.
• Section 508
– In 1998, Congress amended the Rehabilitation Act of 1973 to
require Federal agencies to make their electronic and information
technology (EIT) accessible to people with disabilities.
• Americans with Disabilities Act (1990)
– Title II, which states that communications with persons with
disabilities must be "as effective as communications with others”
and
– Title III, which deals with public accommodation of people with
disabilities.
• Section 255 of Telecommunications Act
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Why do we care?
• Louisiana Tech (2013)
• University of Montana (2012)
• Florida State (2012)
• Northwestern (2011)
• New York University (2011)
• Penn State (2010)
• Arizona State (2009)
We can get sued like:
*http://blog.lib.umn.edu/itsshelp/news/2013/10/higher-ed-accessibility-lawsuits.html
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Why do we care?
• We are educators.
• We can broaden audience.
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
How do we do it?
• Section 508 Guidelines?
– Eh… Kind of?
– Some of it is still useful
– Section 508 came about in 1998
• The guidelines are old
• <table> layout old
• Section 508 Refresh is coming!
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
How do we do it?
• Universal Design for Learning (UDL): design of instruction to
be usable for all students without the need for adaptation or
specialized design.
• WCAG 2.0: a formal set of guidelines for developing accessible
web content, made by the W3C’s Web Accessibility Initiative
(WAI)
• WAI-ARIA: suite that especially helps with dynamic content and
advanced user interface controls developed with AJAX, HTML,
JavaScript, JS Frameworks and related technologies
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Color Blindness
About 8% of the male population (compared
to 0.5% of females) has some sort of color
blindness
http://empat.io/tim
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Color Blindness
• Consider contrast when it comes to
foreground and backgrounds
• (max(R1, R2) - min(R1, R2)) +
(max(G1, G2) - min(G1, G2)) +
(max(B1, B2) - min(B1, B2)) >= 500
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Color Blindness
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Color Blindness
• Avoid using color as a sole communicator of
information
• If you have to communicate with color,
provide alternate formats like a text
description
• Graphs – be explicit with keys
https://developers.google.com/chart/?csw=1
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Visual Disabilities
• Total (all ages): 6,670,300
– Total (16 to 75+): 6,211,700
• Women: 3,411,000
• Men: 2,800,700
– Age 18 to 64: 3,412,900
– Age 65 and older: 2,724,600
-Cornell University's Employment and Disability Institute (2012)
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering Low Vision
• Use relative font sizes
• Allow for the functionality of increasing the
size of your fonts
– Consider font resizing widgets Text+ Text-
• Don’t disable pinch zoom functionality
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering Blindness
• Screen readers
– Freedom Scientific’s JAWS
– GW Micro Window-Eyes
– Apple Voiceover (native on all iDevices)
– Android Talk Back
• Refreshable Braille display
• http://empat.io/arend
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering Blindness
• Begins with intent
• Avoid flooding your pages with too much
information
• Specify the “lang” attribute your html tag
• Don’t automatically play anything with audio
on the page load
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering Blindness
• Consider your navigation
• Keyboard accessible
– Source order matches reading order
– tabindex html attribute
• Provide “skip links”
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering Blindness
• <section> the content source into logical reading
order
• Use proper <h*> tags
– don’t use them in place of CSS
– <h1> has some reseblence <title>
– <h1>…<h2>…<h3>
• Use role, aria-label and aria-labelledby attributes
when not using semantic HTML5
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering Blindess
<ul role="menubar">
<!-- Rule 2A: "File" label via aria-labelledby -->
<li role="menuitem" aria-haspopup="true" aria-labelledby="fileLabel">
<span id="fileLabel">File</span>
<ul role="menu">
<!-- Rule 2C: "New" label via Namefrom:contents -->
<li role="menuitem">New</li>
<li role="menuitem">Open…</li>
…
</ul>
</li>
…
</ul>
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering Blindness
• Consider the intent of images on your pages
– Do they convey information?
– Purely decorative?
• “alt” HTML attribute for <img />
• Background images that convey information
should have text equivalent
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Hearing Disabilities
• Provide text alternatives to audio content
• Transcripts
• Closed Captioning for videos
– Consider positioning
– 16pt font with high contrast
– YouTube Captioning
– MagPie
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Mobility/Dexterity Disabilities
• Unable to use a mouse
• Compensate with Assistive Technology
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Mobility/dexterity Disabilities
One hand keyboard Eye Tracking
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Mobility/Dexterity Disabilities
Mouth Stick Puff and Sip Device
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Mobility/Dexterity Disabilities
• Web pages and applications need to be keyboard
accessible
• Source order is reading order
• Provide Visual cues
– When you use “hover” use “focus” as well
– Consider contrast for color blindness
• Test it manually
• http://webstandards.wvu.edu
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Vestibular Disabilities
• Vestibular system is comprised of pieces of
the nervous system and the inner ear
• Symptoms are dizziness, feelings of vertigo,
imbalance, vision/hearing impairment
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Considering
Vestibular Disabilities
• Avoid creating visual noise
• Animation (if used) should be smooth and the
focus of the content
• No moving pieces peripheral of the content
• Background video
– Provide controls to stop the video
– Avoid overlaying any widgets on top of the video
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Accessible Math
• Word and PDF are not screen reader friendly
when creating math formulas
• Plain text is fine for simple formulas: (2a+3b) = x
• High resolution (SVG) images with simple alt
text
• More complex formulas use: MathML and
MathJax
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Accessible Math
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
<math>
<mrow>
<mi>x</mi><mo>=</mo>
<mfrac>
<mrow>
<mo>−</mo><mi>b</mi><mo>±</mo>
<msqrt>
<mrow>
<msup>
<mi>b</mi><mn>2</mn>
</msup>
<mo>−</mo><mn>4</mn><mi>a</mi><mi>c</mi>
</mrow>
</msqrt>
</mrow>
<mrow>
<mn>2</mn><mi>a</mi>
</mrow>
</mfrac>
</mrow>
</math>
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Tools and resources
• a11yproject.com
• Free QA Software
• Screen Readers
• Books
• Blogs
• Guidelines
• Tutorials
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Tools and resources
• webaim.org
• WAVE
• Services
• Training
• Surveys
• Other Tools
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Tools and resources
• tenon.io
• Karl Groves
• Tests for Section 508 and
WCAG 2.0 compliance
• Robust API works with all
server side languages
• Works with Gulp and
Grunt task runners
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Tools and resources
• #a11y
• @karlgroves
• @pauljadam
• @feather
• @jfc3
• @marcysutton
• @jbockcet
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
Tools and resources
webstandards.wvu.edu
jmbock@hsc.wvu.edu
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
For more Information
304-293-4692
www.cedwvu.org
Providing leadership in the development of services
and supports for persons with disabilities.
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
References
Watson, L., and McCathie Nevile, C., (2015, March 16th). Accessibility APIS: A Key To Web
Accessibility. Retrieved from http://www.smashingmagazine.com
WebAIM. (2007). Web accessibility in mind. Retrieved from http://webaim.org/
University of Minnesota Duluth.( 2013, October 23rd). Higher Ed Accessibility Lawsuits. Retrieved from
http://blog.lib.umn.edu/
Colblindor. (2006, April 28th). Colorblind Population. Retrieved from http://color-blindness.com
World Wide Web Consortium, W3C. (2007). Introduction to web accessibility. Retrieved from
http://www.w3.org/WAI/intro/accessibility.php
WEST VIRGINIA UNIVERSITY
CENTER FOR EXCELLENCE IN DISABILITIES
References
World Wide Web Consortium, W3C. (2008). Web Content Accessibility Guidelines (WCAG) 2.0. Retrieved from
http://www.w3.org/TR/2008/RECWCAG20-20081211
Section 508. (n. d.). Section 508.gov: Opening doors to IT. Retrieved from http://www.section508.gov
Center for Excellence in Disabilities. (2011). Higher education access: On-site training manual. Morgantown, WV.
Retrieved from http://wvats.cedwvu.org/
National Federation of the Blind. (2012). Blindness Statistics. Retrieved from http://nfb.org/blindness-statistics
Vestibular Disorders Association. (2015). About Vestibular Disorders. Retrieved from http://vestibular.org/understanding-
vestibular-disorder
Averitt, CB., Bahram, S., and MacDonald D. (2015). Enabling math on the Web, in Word & PDF, emerging solutions &
overcoming issues. Retrieved from http://davidmacd.com/mathml/making-math-accessible-CSUN-2015L.pdf

More Related Content

Similar to Web Accessibility Overview

Universal design for e learning final
Universal design for e learning finalUniversal design for e learning final
Universal design for e learning final
Jozenia (Zeni) Colorado
 
(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...
(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...
(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...
Howard Kramer
 
Campus Commitment for Equal Access_Techshare India 2014
Campus Commitment for Equal Access_Techshare India 2014Campus Commitment for Equal Access_Techshare India 2014
Campus Commitment for Equal Access_Techshare India 2014
BarrierBreak
 
Maddaloni, daniela, descriptive statistics
Maddaloni, daniela, descriptive statisticsMaddaloni, daniela, descriptive statistics
Maddaloni, daniela, descriptive statistics
dvmaddaloni
 
Designing 4 Disabilities
Designing 4 DisabilitiesDesigning 4 Disabilities
Designing 4 Disabilities
Richard Appleyard
 
Web_Accessibility
Web_AccessibilityWeb_Accessibility
Web_Accessibility
Shivani Sachdeva
 
Leadership for Engaging Students Digitally: It's not about the Angry Birds!
Leadership for Engaging Students Digitally: It's not about the Angry Birds!Leadership for Engaging Students Digitally: It's not about the Angry Birds!
Leadership for Engaging Students Digitally: It's not about the Angry Birds!
ewilliams65
 
Final presentation SACES 2014
Final presentation SACES 2014Final presentation SACES 2014
Final presentation SACES 2014
cmholmes1
 
Skills needed-for-a-job-in-accessibility
Skills needed-for-a-job-in-accessibilitySkills needed-for-a-job-in-accessibility
Skills needed-for-a-job-in-accessibility
elianna james
 
Excellence in Online Learning
Excellence in Online LearningExcellence in Online Learning
Excellence in Online Learning
Raymond Rose
 
Drupal@UT: A case study on redesigning the University of Texas at Austin website
Drupal@UT: A case study on redesigning the University of Texas at Austin websiteDrupal@UT: A case study on redesigning the University of Texas at Austin website
Drupal@UT: A case study on redesigning the University of Texas at Austin website
Springbox
 
CESBA R. LaBonte keynote
CESBA  R. LaBonte keynoteCESBA  R. LaBonte keynote
CESBA R. LaBonte keynote
LaBonte Randy
 
10 Steps For a Successful Technology Scholarly Project
10 Steps For a Successful Technology Scholarly Project10 Steps For a Successful Technology Scholarly Project
10 Steps For a Successful Technology Scholarly Project
dsandro1
 
Teaching with Technology
Teaching with TechnologyTeaching with Technology
Teaching with Technology
David Bond
 
DGDIR_74201540446PM
DGDIR_74201540446PMDGDIR_74201540446PM
DGDIR_74201540446PM
carbonatd
 
E-Maginarium - NDCO assistive technologies and accessibility - Liz Reid
E-Maginarium - NDCO assistive technologies and accessibility - Liz ReidE-Maginarium - NDCO assistive technologies and accessibility - Liz Reid
E-Maginarium - NDCO assistive technologies and accessibility - Liz Reid
Service Industries TAC
 
Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...
Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...
Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...
Rodrigo Castilho
 
Why Care About Coding?
Why Care About Coding?Why Care About Coding?
Why Care About Coding?
Bohyun Kim
 
Build Accessibly - Community Day 2012
Build Accessibly - Community Day 2012Build Accessibly - Community Day 2012
Build Accessibly - Community Day 2012
Karen Mardahl
 
Ein incl171212
Ein incl171212Ein incl171212
Ein incl171212
Chris Barber
 

Similar to Web Accessibility Overview (20)

Universal design for e learning final
Universal design for e learning finalUniversal design for e learning final
Universal design for e learning final
 
(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...
(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...
(COLTT 2018) Teaching Accessibility and Inclusive Design in Higher Education ...
 
Campus Commitment for Equal Access_Techshare India 2014
Campus Commitment for Equal Access_Techshare India 2014Campus Commitment for Equal Access_Techshare India 2014
Campus Commitment for Equal Access_Techshare India 2014
 
Maddaloni, daniela, descriptive statistics
Maddaloni, daniela, descriptive statisticsMaddaloni, daniela, descriptive statistics
Maddaloni, daniela, descriptive statistics
 
Designing 4 Disabilities
Designing 4 DisabilitiesDesigning 4 Disabilities
Designing 4 Disabilities
 
Web_Accessibility
Web_AccessibilityWeb_Accessibility
Web_Accessibility
 
Leadership for Engaging Students Digitally: It's not about the Angry Birds!
Leadership for Engaging Students Digitally: It's not about the Angry Birds!Leadership for Engaging Students Digitally: It's not about the Angry Birds!
Leadership for Engaging Students Digitally: It's not about the Angry Birds!
 
Final presentation SACES 2014
Final presentation SACES 2014Final presentation SACES 2014
Final presentation SACES 2014
 
Skills needed-for-a-job-in-accessibility
Skills needed-for-a-job-in-accessibilitySkills needed-for-a-job-in-accessibility
Skills needed-for-a-job-in-accessibility
 
Excellence in Online Learning
Excellence in Online LearningExcellence in Online Learning
Excellence in Online Learning
 
Drupal@UT: A case study on redesigning the University of Texas at Austin website
Drupal@UT: A case study on redesigning the University of Texas at Austin websiteDrupal@UT: A case study on redesigning the University of Texas at Austin website
Drupal@UT: A case study on redesigning the University of Texas at Austin website
 
CESBA R. LaBonte keynote
CESBA  R. LaBonte keynoteCESBA  R. LaBonte keynote
CESBA R. LaBonte keynote
 
10 Steps For a Successful Technology Scholarly Project
10 Steps For a Successful Technology Scholarly Project10 Steps For a Successful Technology Scholarly Project
10 Steps For a Successful Technology Scholarly Project
 
Teaching with Technology
Teaching with TechnologyTeaching with Technology
Teaching with Technology
 
DGDIR_74201540446PM
DGDIR_74201540446PMDGDIR_74201540446PM
DGDIR_74201540446PM
 
E-Maginarium - NDCO assistive technologies and accessibility - Liz Reid
E-Maginarium - NDCO assistive technologies and accessibility - Liz ReidE-Maginarium - NDCO assistive technologies and accessibility - Liz Reid
E-Maginarium - NDCO assistive technologies and accessibility - Liz Reid
 
Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...
Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...
Tech Headline - Using WAI-ARIA & HTML5: Techniques to solve accessibility pro...
 
Why Care About Coding?
Why Care About Coding?Why Care About Coding?
Why Care About Coding?
 
Build Accessibly - Community Day 2012
Build Accessibly - Community Day 2012Build Accessibly - Community Day 2012
Build Accessibly - Community Day 2012
 
Ein incl171212
Ein incl171212Ein incl171212
Ein incl171212
 

More from cedwvugraphics

Mental Health 101
Mental Health 101Mental Health 101
Mental Health 101
cedwvugraphics
 
Concussion in Sport
Concussion in SportConcussion in Sport
Concussion in Sport
cedwvugraphics
 
Positive Behavior Support for Challenging Behavior in the Classroom Relating ...
Positive Behavior Support for Challenging Behavior in the Classroom Relating ...Positive Behavior Support for Challenging Behavior in the Classroom Relating ...
Positive Behavior Support for Challenging Behavior in the Classroom Relating ...
cedwvugraphics
 
The Role of the Speech Language Pathologist in the Assessment & Treatment of TBI
The Role of the Speech Language Pathologist in the Assessment & Treatment of TBIThe Role of the Speech Language Pathologist in the Assessment & Treatment of TBI
The Role of the Speech Language Pathologist in the Assessment & Treatment of TBI
cedwvugraphics
 
CBD, Medical Marijuana & Traumatic Brain Injury
CBD, Medical Marijuana & Traumatic Brain InjuryCBD, Medical Marijuana & Traumatic Brain Injury
CBD, Medical Marijuana & Traumatic Brain Injury
cedwvugraphics
 
Music Therapy and Traumatic Brain Injury
Music Therapy and Traumatic Brain InjuryMusic Therapy and Traumatic Brain Injury
Music Therapy and Traumatic Brain Injury
cedwvugraphics
 
REAP The Interdisciplinary Concussion Management Protocol
REAP  The Interdisciplinary Concussion Management ProtocolREAP  The Interdisciplinary Concussion Management Protocol
REAP The Interdisciplinary Concussion Management Protocol
cedwvugraphics
 
Proving a TBI from a Legal Perspective
Proving a TBI from a Legal PerspectiveProving a TBI from a Legal Perspective
Proving a TBI from a Legal Perspective
cedwvugraphics
 
Positive behavior support overview
Positive behavior support overviewPositive behavior support overview
Positive behavior support overview
cedwvugraphics
 
Neuropsychological Assessment Following Pediatric TBI
Neuropsychological Assessment Following Pediatric TBINeuropsychological Assessment Following Pediatric TBI
Neuropsychological Assessment Following Pediatric TBI
cedwvugraphics
 
Pediatric TBI and Memory Loss
Pediatric TBI and Memory LossPediatric TBI and Memory Loss
Pediatric TBI and Memory Loss
cedwvugraphics
 
TBI and Memory Loss
TBI and Memory LossTBI and Memory Loss
TBI and Memory Loss
cedwvugraphics
 
Concussion: A View from the Sidelines
Concussion: A View from the SidelinesConcussion: A View from the Sidelines
Concussion: A View from the Sidelines
cedwvugraphics
 
Compassion Fatigue: Looking Out for Yourself and Each Other
Compassion Fatigue: Looking Out for Yourself and Each OtherCompassion Fatigue: Looking Out for Yourself and Each Other
Compassion Fatigue: Looking Out for Yourself and Each Other
cedwvugraphics
 
Advocating for Your Rights
Advocating for Your RightsAdvocating for Your Rights
Advocating for Your Rights
cedwvugraphics
 
Children with Traumatic Brain Injury
Children with Traumatic Brain InjuryChildren with Traumatic Brain Injury
Children with Traumatic Brain Injury
cedwvugraphics
 
PMoss Presentation 2014
PMoss Presentation 2014PMoss Presentation 2014
PMoss Presentation 2014
cedwvugraphics
 
Person Centered Support and TBI
Person Centered Support and TBIPerson Centered Support and TBI
Person Centered Support and TBI
cedwvugraphics
 
Direct care roles and responsibilities
Direct care roles and responsibilitiesDirect care roles and responsibilities
Direct care roles and responsibilities
cedwvugraphics
 
Tbi overview
Tbi overviewTbi overview
Tbi overview
cedwvugraphics
 

More from cedwvugraphics (20)

Mental Health 101
Mental Health 101Mental Health 101
Mental Health 101
 
Concussion in Sport
Concussion in SportConcussion in Sport
Concussion in Sport
 
Positive Behavior Support for Challenging Behavior in the Classroom Relating ...
Positive Behavior Support for Challenging Behavior in the Classroom Relating ...Positive Behavior Support for Challenging Behavior in the Classroom Relating ...
Positive Behavior Support for Challenging Behavior in the Classroom Relating ...
 
The Role of the Speech Language Pathologist in the Assessment & Treatment of TBI
The Role of the Speech Language Pathologist in the Assessment & Treatment of TBIThe Role of the Speech Language Pathologist in the Assessment & Treatment of TBI
The Role of the Speech Language Pathologist in the Assessment & Treatment of TBI
 
CBD, Medical Marijuana & Traumatic Brain Injury
CBD, Medical Marijuana & Traumatic Brain InjuryCBD, Medical Marijuana & Traumatic Brain Injury
CBD, Medical Marijuana & Traumatic Brain Injury
 
Music Therapy and Traumatic Brain Injury
Music Therapy and Traumatic Brain InjuryMusic Therapy and Traumatic Brain Injury
Music Therapy and Traumatic Brain Injury
 
REAP The Interdisciplinary Concussion Management Protocol
REAP  The Interdisciplinary Concussion Management ProtocolREAP  The Interdisciplinary Concussion Management Protocol
REAP The Interdisciplinary Concussion Management Protocol
 
Proving a TBI from a Legal Perspective
Proving a TBI from a Legal PerspectiveProving a TBI from a Legal Perspective
Proving a TBI from a Legal Perspective
 
Positive behavior support overview
Positive behavior support overviewPositive behavior support overview
Positive behavior support overview
 
Neuropsychological Assessment Following Pediatric TBI
Neuropsychological Assessment Following Pediatric TBINeuropsychological Assessment Following Pediatric TBI
Neuropsychological Assessment Following Pediatric TBI
 
Pediatric TBI and Memory Loss
Pediatric TBI and Memory LossPediatric TBI and Memory Loss
Pediatric TBI and Memory Loss
 
TBI and Memory Loss
TBI and Memory LossTBI and Memory Loss
TBI and Memory Loss
 
Concussion: A View from the Sidelines
Concussion: A View from the SidelinesConcussion: A View from the Sidelines
Concussion: A View from the Sidelines
 
Compassion Fatigue: Looking Out for Yourself and Each Other
Compassion Fatigue: Looking Out for Yourself and Each OtherCompassion Fatigue: Looking Out for Yourself and Each Other
Compassion Fatigue: Looking Out for Yourself and Each Other
 
Advocating for Your Rights
Advocating for Your RightsAdvocating for Your Rights
Advocating for Your Rights
 
Children with Traumatic Brain Injury
Children with Traumatic Brain InjuryChildren with Traumatic Brain Injury
Children with Traumatic Brain Injury
 
PMoss Presentation 2014
PMoss Presentation 2014PMoss Presentation 2014
PMoss Presentation 2014
 
Person Centered Support and TBI
Person Centered Support and TBIPerson Centered Support and TBI
Person Centered Support and TBI
 
Direct care roles and responsibilities
Direct care roles and responsibilitiesDirect care roles and responsibilities
Direct care roles and responsibilities
 
Tbi overview
Tbi overviewTbi overview
Tbi overview
 

Recently uploaded

RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
DianaGray10
 
Data structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdfData structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdf
TIPNGVN2
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website
Pixlogix Infotech
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
Neo4j
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 

Recently uploaded (20)

RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
 
Data structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdfData structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdf
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 

Web Accessibility Overview

  • 1. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Web Accessibility Overview Jeremy Bock Web Developer
  • 2. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES About me • Web Developer for 8 years • Worked at the CED for last 5 focusing on Web Accessibility • Led task force to define WVU Web Accessibility requirements • Co-author of a white paper: “Monitoring for Accessibility and University Websites” in 2013
  • 3. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Session Goal Increase awareness of web accessibility standards and practices
  • 4. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Session Objectives • Define web accessibility and why it’s important • Consider different disabilities, the obstacles they create and solutions to overcome those obstacles. • Provide resources for creating accessible Math formulas • Provide tools and resources for accessible web development • Answer questions pertaining to web accessibility
  • 5. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES What is web accessibility? Web accessibility is about people. Successful web accessibility is about anticipating the different needs of all sorts of people, understanding your fellow web users and the different ways they consume information, empathizing with them and their sense of what is convenient and what frustratingly unnecessary barriers you could help them to avoid. – Accessibility APIS: A Key to Web Accessibility By Leonie Watson & Chaals McCathie Nevile
  • 6. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Why do we care? It’s the law. • Section 508 – In 1998, Congress amended the Rehabilitation Act of 1973 to require Federal agencies to make their electronic and information technology (EIT) accessible to people with disabilities. • Americans with Disabilities Act (1990) – Title II, which states that communications with persons with disabilities must be "as effective as communications with others” and – Title III, which deals with public accommodation of people with disabilities. • Section 255 of Telecommunications Act
  • 7. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Why do we care? • Louisiana Tech (2013) • University of Montana (2012) • Florida State (2012) • Northwestern (2011) • New York University (2011) • Penn State (2010) • Arizona State (2009) We can get sued like: *http://blog.lib.umn.edu/itsshelp/news/2013/10/higher-ed-accessibility-lawsuits.html
  • 8. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Why do we care? • We are educators. • We can broaden audience.
  • 9. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES How do we do it? • Section 508 Guidelines? – Eh… Kind of? – Some of it is still useful – Section 508 came about in 1998 • The guidelines are old • <table> layout old • Section 508 Refresh is coming!
  • 10. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES How do we do it? • Universal Design for Learning (UDL): design of instruction to be usable for all students without the need for adaptation or specialized design. • WCAG 2.0: a formal set of guidelines for developing accessible web content, made by the W3C’s Web Accessibility Initiative (WAI) • WAI-ARIA: suite that especially helps with dynamic content and advanced user interface controls developed with AJAX, HTML, JavaScript, JS Frameworks and related technologies
  • 11. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Color Blindness About 8% of the male population (compared to 0.5% of females) has some sort of color blindness http://empat.io/tim
  • 12. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Color Blindness • Consider contrast when it comes to foreground and backgrounds • (max(R1, R2) - min(R1, R2)) + (max(G1, G2) - min(G1, G2)) + (max(B1, B2) - min(B1, B2)) >= 500
  • 13. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Color Blindness
  • 14. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Color Blindness • Avoid using color as a sole communicator of information • If you have to communicate with color, provide alternate formats like a text description • Graphs – be explicit with keys https://developers.google.com/chart/?csw=1
  • 15. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Visual Disabilities • Total (all ages): 6,670,300 – Total (16 to 75+): 6,211,700 • Women: 3,411,000 • Men: 2,800,700 – Age 18 to 64: 3,412,900 – Age 65 and older: 2,724,600 -Cornell University's Employment and Disability Institute (2012)
  • 16. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Low Vision • Use relative font sizes • Allow for the functionality of increasing the size of your fonts – Consider font resizing widgets Text+ Text- • Don’t disable pinch zoom functionality
  • 17. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Blindness • Screen readers – Freedom Scientific’s JAWS – GW Micro Window-Eyes – Apple Voiceover (native on all iDevices) – Android Talk Back • Refreshable Braille display • http://empat.io/arend
  • 18. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Blindness • Begins with intent • Avoid flooding your pages with too much information • Specify the “lang” attribute your html tag • Don’t automatically play anything with audio on the page load
  • 19. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Blindness • Consider your navigation • Keyboard accessible – Source order matches reading order – tabindex html attribute • Provide “skip links”
  • 20. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Blindness • <section> the content source into logical reading order • Use proper <h*> tags – don’t use them in place of CSS – <h1> has some reseblence <title> – <h1>…<h2>…<h3> • Use role, aria-label and aria-labelledby attributes when not using semantic HTML5
  • 21. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Blindess <ul role="menubar"> <!-- Rule 2A: "File" label via aria-labelledby --> <li role="menuitem" aria-haspopup="true" aria-labelledby="fileLabel"> <span id="fileLabel">File</span> <ul role="menu"> <!-- Rule 2C: "New" label via Namefrom:contents --> <li role="menuitem">New</li> <li role="menuitem">Open…</li> … </ul> </li> … </ul>
  • 22. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Blindness • Consider the intent of images on your pages – Do they convey information? – Purely decorative? • “alt” HTML attribute for <img /> • Background images that convey information should have text equivalent
  • 23. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Hearing Disabilities • Provide text alternatives to audio content • Transcripts • Closed Captioning for videos – Consider positioning – 16pt font with high contrast – YouTube Captioning – MagPie
  • 24. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Mobility/Dexterity Disabilities • Unable to use a mouse • Compensate with Assistive Technology
  • 25. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Mobility/dexterity Disabilities One hand keyboard Eye Tracking
  • 26. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Mobility/Dexterity Disabilities Mouth Stick Puff and Sip Device
  • 27. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Mobility/Dexterity Disabilities • Web pages and applications need to be keyboard accessible • Source order is reading order • Provide Visual cues – When you use “hover” use “focus” as well – Consider contrast for color blindness • Test it manually • http://webstandards.wvu.edu
  • 28. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Vestibular Disabilities • Vestibular system is comprised of pieces of the nervous system and the inner ear • Symptoms are dizziness, feelings of vertigo, imbalance, vision/hearing impairment
  • 29. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Considering Vestibular Disabilities • Avoid creating visual noise • Animation (if used) should be smooth and the focus of the content • No moving pieces peripheral of the content • Background video – Provide controls to stop the video – Avoid overlaying any widgets on top of the video
  • 30. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Accessible Math • Word and PDF are not screen reader friendly when creating math formulas • Plain text is fine for simple formulas: (2a+3b) = x • High resolution (SVG) images with simple alt text • More complex formulas use: MathML and MathJax
  • 31. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Accessible Math
  • 32. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES <math> <mrow> <mi>x</mi><mo>=</mo> <mfrac> <mrow> <mo>−</mo><mi>b</mi><mo>±</mo> <msqrt> <mrow> <msup> <mi>b</mi><mn>2</mn> </msup> <mo>−</mo><mn>4</mn><mi>a</mi><mi>c</mi> </mrow> </msqrt> </mrow> <mrow> <mn>2</mn><mi>a</mi> </mrow> </mfrac> </mrow> </math>
  • 33. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Tools and resources • a11yproject.com • Free QA Software • Screen Readers • Books • Blogs • Guidelines • Tutorials
  • 34. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Tools and resources • webaim.org • WAVE • Services • Training • Surveys • Other Tools
  • 35. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Tools and resources • tenon.io • Karl Groves • Tests for Section 508 and WCAG 2.0 compliance • Robust API works with all server side languages • Works with Gulp and Grunt task runners
  • 36. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Tools and resources • #a11y • @karlgroves • @pauljadam • @feather • @jfc3 • @marcysutton • @jbockcet
  • 37. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES Tools and resources webstandards.wvu.edu jmbock@hsc.wvu.edu
  • 38. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES For more Information 304-293-4692 www.cedwvu.org Providing leadership in the development of services and supports for persons with disabilities.
  • 39. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES References Watson, L., and McCathie Nevile, C., (2015, March 16th). Accessibility APIS: A Key To Web Accessibility. Retrieved from http://www.smashingmagazine.com WebAIM. (2007). Web accessibility in mind. Retrieved from http://webaim.org/ University of Minnesota Duluth.( 2013, October 23rd). Higher Ed Accessibility Lawsuits. Retrieved from http://blog.lib.umn.edu/ Colblindor. (2006, April 28th). Colorblind Population. Retrieved from http://color-blindness.com World Wide Web Consortium, W3C. (2007). Introduction to web accessibility. Retrieved from http://www.w3.org/WAI/intro/accessibility.php
  • 40. WEST VIRGINIA UNIVERSITY CENTER FOR EXCELLENCE IN DISABILITIES References World Wide Web Consortium, W3C. (2008). Web Content Accessibility Guidelines (WCAG) 2.0. Retrieved from http://www.w3.org/TR/2008/RECWCAG20-20081211 Section 508. (n. d.). Section 508.gov: Opening doors to IT. Retrieved from http://www.section508.gov Center for Excellence in Disabilities. (2011). Higher education access: On-site training manual. Morgantown, WV. Retrieved from http://wvats.cedwvu.org/ National Federation of the Blind. (2012). Blindness Statistics. Retrieved from http://nfb.org/blindness-statistics Vestibular Disorders Association. (2015). About Vestibular Disorders. Retrieved from http://vestibular.org/understanding- vestibular-disorder Averitt, CB., Bahram, S., and MacDonald D. (2015). Enabling math on the Web, in Word & PDF, emerging solutions & overcoming issues. Retrieved from http://davidmacd.com/mathml/making-math-accessible-CSUN-2015L.pdf

Editor's Notes

  1. Published by the Association on Higher Education and Disability in the Journal of Postsecondary Education on Disability
  2. Introduction – What is web axs? Why do we care? Consider Different Disabilities – What obstacles do people with disabilities have when browsing the web? How do they overcome them with AT? What can we do as developers to make it easier? Math – How to make math formulas accessible? What tools are out there for us. Tools and Resources – References for more a11y content and what tools we can use to QA our own design and code Q & A – If you came in with a question, please hold it until the end. Feel free to speak up if you need something that I’m trying to communicate clarified.
  3. Does this sound like UX principles? If it does, it’s because this is where web accessibility starts. If a page is truly accessible then it’s good for everyone regardless of ability.
  4. ----- Meeting Notes (3/25/15 15:35) ----- Section 508 federal dollars CED Title II - Web is a communication tool Title III - Ecommerce/building analogy/Target
  5. LA Tech – Course materials Montana – class assignments, live chat, discussion board, registration system Florida State – E-Learning Northwestern – Google Apps Penn State – Web site and course materials AZ State - Kindle
  6. Educators – As developers, we disseminate the necessary information for people to get an education. No one receiving that information should be discriminated against. When we remove that discrimination from our work… we can broaden our audience.
  7. Section 508 Universe Training still uses table layouts. Public hearings were held on March 5 in San Diego and DC on March 11. Public Webinar on March 31 to review the proposal. The guidelines will be available for public comment until May 28. Implementation… ?? At the speed of the Federal Government.
  8. UDL – Web design starts with content first. Designing accessible courses is no different. Flexible and accessible course content is where it begins and this is where we can advocate for people with disabilities first to the instructors and the course creators. Is the content understandable to everyone regardless of ability? If not, is the material/course requirements adaptable to accommodate someone with a disability? WCAG 2 – This is where we get into how we structure our code. Necessary attributes for our HTML tags, design requirements etc. WAI ARIA – Not going to get into it too much. But with these tools we do not have to limit design. We like nuances in our apps, subtle transitions different easing, etc. Good design does not have to be sacrificed in the name of accessibility. We can have it all. I promise.
  9. http://empat.io/tim
  10. W3Cs Tools to give Color blindr
  11. Bargraphs – label under the bar Piecharts – hover animation that adds the key Line charts – multiple labels; broken lines
  12. These estimates (for adults age 16 and older reporting significant vision loss, who were in the non-institutionalized, civilian population) are all derived from the American Community Survey results for 2012, as interpreted by Cornell University's Employment and Disability Institute (EDI). Show video here http://empat.io/arend
  13. Don’t forget to consider your containers. Font size should not break your design/usability Show video here http://empat.io/arend
  14. Our job as designers and developers concerned with accessibility to alter our design and code to play well with these AT
  15. Keyboard – quick custom navigation for screen readers to pull all desired content by section, heading order, or they may ‘tab’ through it
  16. Mention flexbox and source order WAI-ARIA roles will only act on ‘focusable’ content for IE. Need more planning for this last bullet Roles: widget roles, document structure, landmark roles
  17. Example is from the WAI-ARIA guidelines
  18. Automatic alt attributes for CMS
  19. Access for All: Public Television for Boston
  20. MathML is a markup language that’s native to Firefox and can be extended to all browsers with MathJax. MathJax JS plugin.
  21. Mi = math identifier
  22. WAVE is an automated checker
  23. Karl Groves (Tenon) Paul J. Adam (Deque) Derek Featherstone (W3C WAI simplyaccessible.com) John F. Croston III (WebDev Department of Labor) Marcy Sutton Accessibility advocate and developer for axs tools for Angular.js
  24. Adam Glenn
  25. Key Talking Points: How to contact the program, Center, make a referral, etc.