SlideShare a Scribd company logo
Walking Down the A11y Road
Lessons Learned from Working on
Accessibility of a Django Project
Radina Matic
radina@learningequality.org
@RadinaMatic
Radina Matic
- translator & technical writer
- open software & technology enthusiast
Web and Data Visualization at Rectory
Stats Office, University of Barcelona
Foundation for Learning Equality
radina.matic@ub.edu
radina@learningequality.org
@RadinaMatic
Why do we care?
Who benefits?
World Health Organization fact sheet from 2014
Disabled people in the world
(1000 millions)
People living in Europe
(742 millions)
Who benefits?
EU-Statistics on Income and Living Conditions from 2014
Millions!
People with disabilites?
EVERYBODY
Good for Business
- Benefits SEO
- Improves mobile access and overall usability
- Increases market share
- PR impact derived from corporate social
responsibility
- Reduces legal risk
Don’t put up fires
Plan accessibility
as early as
possible, don’t
wait for QA
Standards & Laws
- US - Section 508 (1998) & ADA
- 21st Century &
Video Accessibility Act (2010)
- European Standard on accessibility
requirements for public procurement of ICT
products and services (EN 301 549 - 2014)
- Web Content Accessibility Guidelines
(WCAG) 2.0 as ISO/IEC 40500 (2012)
Accessibility mishaps
make headlines (and courtrooms)
- National Federation of the Blind v. TARGET (2008)
- National Association of the Deaf (NAD) v. Netflix (2012)
- Google Books (2012)
- Harvard & MIT (edX) MOOCs (2015)
http://www.karlgroves.com/2011/11/15/
list-of-web-accessibility-related-litigation-
and-settlements/ (~230 cases up to 2015)
OFFER
ALTERNATIVES
DISCOVERABILITY
FEEDBACK
&
It's not you. Bad doors are everywhere https://www.youtube.com/watch?v=yY96hTb8WgI
Don Norman about “Norman Doors”
Document Structure
• Page language
Document Structure
• Title
(unique and
descriptive; H1)
• Page landmarks
(semantic HTML5
or ARIA)
Headings
Keyboard navigation
- Tab & Shift Tab through all the links
- Arrow keys through menus
- Skip-to links on top (first element after <body>)
Define visible focus state!
:focus {
outline: 0;
}
Keyboard navigation
Keyboard navigation
Images - The elusive ALT attribute
- alt=“?????”
- DESCRIBE the image
convey both content and functionality
- Do not put text inside images (localization)
- Decorative images – empty alt=“”
Links and Forms
Links
- Concise
- Descriptive
Click
More
Here
Forms
-Labels
-Fieldsets for grouping
-Tabbing order
Color & Contrast
foreground vs. background
3:1 for large text
4.5:1 for smaller text
{% if settings.DEBUG %}
<script type="text/javascript" src="{% static 'js/tota11y.min.js' %}"></script>
{% endif %}
Color & Contrast
OFFER ALTERNATIVES
Color & Contrast
OFFER ALTERNATIVES
Accessible Multimedia Players
Able Video Player - http://www.washington.edu/doit/videos/
OFFER ALTERNATIVES
Don’t Autoplay!
http://devtoolschallenger.com/
OFFER ALTERNATIVES
Let it play!
Screenreader-only output
Screenreader-only output
Heading level two clickable link
What is addition? What is
subtraction?
two
two hundred percent
Heading level two clickable link
Converting between fractions and
decimals
ten forty percent sixty percent
three hundred percent
Screenreader-only output
<div class="sr-only">{{_ "In this topic " }}</div>
<div class="progress-indicator {{vid_status}}">
<span class="sr-only">{{_ "there are " }}</span>
<div class="sidebar-icon">
<span class="progress-indicator content-counter">
<div class="sr-only">{{#unless n_pl_videos}}no{{/unless}}</div>
{{#if n_pl_videos}}{{n_pl_videos}}{{/if}}
</span>
</div>
<span class="sr-only">{{_ " videos." }}</span>
</div>
{{#ifcond vid_pct_started "<" 100}}
<span class="sr-only">{{_ "You are still working on " }}</span>
<span aria-hidden="true" role="presentation">{{ >{{vid_pct_started}}%</span>
{{/ifcond}}
{{#ifcond vid_pct_started "===" 100}}
<span class="sr-only">{{_ "You are still working on all of them." }}</span>
<span aria-hidden="true" role="presentation">{{vid_pct_started}}%</span>
{{/ifcond}}
Screenreader-only output
Heading level two clickable link
What is addition? What is
subtraction?
In this topic there are two
videos. You haven't started to
watch videos!
There are two exercises. You are
still working on all of them.
Heading level two clickable link
Converting between fractions and
decimals
In this topic there are ten
videos. Of those you have
completed forty percent. You are
still working on sixty percent.
There are three exercises. You
are still working on all of them.
A11y from the start
A11y from the start
- Include a11y requirements into the Usability
Style Guide
- Leverage the standard HTML5 semantic elements
- Take a11y into account when choosing the
libraries and frameworks
- Make accessible web components available from the
beginning
- Start including automated a11y tests as soon as
possible
<a v-link="link">
<content-icon v-if="kind" :kind="kind" :progress="progress">
</content-icon>
<img :src="validatedThumbnail" class="thumbnail" v-if="showThumbnail" alt="">
<div class="thumbnail" v-else>&nbsp;</div>
<h3>
<span class="visuallyhidden">{{ progress }} {{ kind }} </span>{{ title }}
</h3>
</a>
<template>
<img :src="src" :alt="altText">
</template>
<script>
module.exports = {
props: {
…
computed: {
altText() {
// TODO - I18N
return `${this.progress} - ${this.kind}`;
},
…
},
};
</script>
/content-icon/index.vue
How did we get here?
A11Y Pills & Passion
@LearnEQ Accessibility Pills
A11y Tools Repository
Accessibility is
a shared responsibility
http://www.w3.org/
community/wai-engage/wiki/
Accessibility_Responsibility_Breakdown
Put A11Y in your
dev team life
• A11y Pills & lots of passion
• Make accessibility a SHARED responsibility
• Start a Tools Repository
• Don't rely exclusively on checklists and
automated testing (Involve the USERS!)
• Accessibility is a process, not a project
problem (John B. Metz)
Resources
Guidelines
-Web Content (WCAG)
-User Agent (UAAG)
-Authoring Tools (ATAG)
-WAI ARIA: Accessible Rich Interactive
Applications
POUR principles
Information must be:
Perceivable
Operable
Understandable
Robust
General A11y Tools
WAVE Web Accessibility Evaluation Tool
http://wave.webaim.org/ (Firefox toolbar & Chrome extension)
OpenAjax Alliance (OAA) Accessibility Extension
https://addons.mozilla.org/EN-US/firefox/addon/openajax-
accessibility-exte/
AInspector Sidebar
https://addons.mozilla.org/en-US/firefox/addon/ainspector-sidebar/
Accessibility Evaluation Toolbar
https://addons.mozilla.org/en-US/firefox/addon/accessibility-evaluation-
toolb/
Automated A11y testing
pa11y - https://github.com/nature/pa11y
quails - http://quailjs.org/
Tanaguru - https://github.com/Tanaguru/Tanaguru
TENON - http://tenon.io
Document Structure-Tools
Juicy Studio Accessibility Toolbar
https://addons.mozilla.org/en-uS/firefox/addon/juicy-studio-
accessibility-too/
Jim Thatcher’s Favelets
http://jimthatcher.com/favelets/
NCAM Accessibility QA Favelet
http://ncam.wgbh.org/invent_build/web_multimedia/tools-
guidelines/favelet
Visual ARIA Bookmarklet
http://whatsock.com/training/matrices/visual-aria.htm
tota11y - an accessibility visualization toolkit -
http://khan.github.io/tota11y/
http://webaim.org/articles/gonewild/#alttext
http://accessibility.psu.edu/images/
http://ncam.wgbh.org/experience_learn/educational_media/desc
ribing-images-for-enhanced
http://diagramcenter.org/webinars.html
(resources for accessible images & math)
Describing images -Tools
Color & Contrast - Tools
Contrast Analyzer -
http://www.paciellogroup.com/resources/contrastanalyser/
Accessibility Color Wheel -
http://gmazzocato.altervista.org/colorwheel/wheel.php
CONTRAST-A-WEB - http://dasplankton.de/ContrastA/ Color Safe -
http://colorsafe.co/
WCAG Contrast checker
https://addons.mozilla.org/ca/firefox/addon/wcag-contrast-checker/
Color Palette Accessibility Evaluator -
http://accessibility.oit.ncsu.edu/tools/color-contrast/
Color Extractor Bookmarklet - http://accessibility.oit.ncsu.edu/tools/color-
extractor/ & http://accessibility.oit.ncsu.edu/tools/color-contrast-chrome/
Color Contrast Visualizer
http://www.stainlessvision.com/blog/projects/colour-contrast-visualiser
Writing
-Plain language
-Sentences up to 25 words
-Paragraphs up to 3-4 sentences
-Active voice
-Consistent vocabulary
-Bulleted lists
-Consistent format & navigation
Accessible Video Players
http://www.icant.co.uk/easy-youtube/
Web-Based Media Player Accessibility Comparison Table
Thank you!
Radina Matic
radina@learningequality.org

More Related Content

What's hot

Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!
Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!
Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!
Parth Lawate
 
Html5 Overview
Html5 OverviewHtml5 Overview
Html5 Overview
Daniel Arndt Alves
 
Front end developer responsibilities what does a front-end developer do?
Front end developer responsibilities  what does a front-end developer do?Front end developer responsibilities  what does a front-end developer do?
Front end developer responsibilities what does a front-end developer do?
Katy Slemon
 
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Todaydavyjones
 
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
David Wesst
 
5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)
5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)
5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)
David Wesst
 
Apache Flex and the imperfect Web
Apache Flex and the imperfect WebApache Flex and the imperfect Web
Apache Flex and the imperfect Web
masuland
 
Building mobile applications with DrupalGap
Building mobile applications with DrupalGapBuilding mobile applications with DrupalGap
Building mobile applications with DrupalGap
Alex S
 
Internship review
Internship reviewInternship review
Internship review
PAWAN KUMAR
 
Client Building Functional webapps.
Client   Building Functional webapps.Client   Building Functional webapps.
Client Building Functional webapps.
Arun Kumar
 
Introduction to Browser Internals
Introduction to Browser InternalsIntroduction to Browser Internals
Introduction to Browser Internals
Siva Arunachalam
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
Ashlimarie
 
Front end for back end developers
Front end for back end developersFront end for back end developers
Front end for back end developers
Wojciech Bednarski
 
Sergey Ilinsky Presentation Ample Sdk
Sergey Ilinsky Presentation Ample SdkSergey Ilinsky Presentation Ample Sdk
Sergey Ilinsky Presentation Ample SdkAjax Experience 2009
 
Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...
Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...
Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...adamhorvath
 
HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK
HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SKHTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK
HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK
David Wesst
 
Booting up with polymer
Booting up with polymerBooting up with polymer
Booting up with polymer
Marcus Hellberg
 
WEB DEVELOPMENT
WEB DEVELOPMENTWEB DEVELOPMENT
WEB DEVELOPMENT
PAWAN KUMAR
 

What's hot (19)

Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!
Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!
Techjoomla Infrastructure Extensions - Adding an Enterprise Layer to Joomla!
 
Html5 Overview
Html5 OverviewHtml5 Overview
Html5 Overview
 
Front end developer responsibilities what does a front-end developer do?
Front end developer responsibilities  what does a front-end developer do?Front end developer responsibilities  what does a front-end developer do?
Front end developer responsibilities what does a front-end developer do?
 
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
 
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
 
5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)
5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)
5 Reasons Why Your Website Is[n’t] a Native App (PrDC 2015)
 
Apache Flex and the imperfect Web
Apache Flex and the imperfect WebApache Flex and the imperfect Web
Apache Flex and the imperfect Web
 
Building mobile applications with DrupalGap
Building mobile applications with DrupalGapBuilding mobile applications with DrupalGap
Building mobile applications with DrupalGap
 
Internship review
Internship reviewInternship review
Internship review
 
Client Building Functional webapps.
Client   Building Functional webapps.Client   Building Functional webapps.
Client Building Functional webapps.
 
Introduction to Browser Internals
Introduction to Browser InternalsIntroduction to Browser Internals
Introduction to Browser Internals
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
Front end for back end developers
Front end for back end developersFront end for back end developers
Front end for back end developers
 
Sergey Ilinsky Presentation Ample Sdk
Sergey Ilinsky Presentation Ample SdkSergey Ilinsky Presentation Ample Sdk
Sergey Ilinsky Presentation Ample Sdk
 
Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...
Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...
Chrome Extension Development - Adam Horvath, Google Technology User Group, Sy...
 
HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK
HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SKHTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK
HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK
 
Booting up with polymer
Booting up with polymerBooting up with polymer
Booting up with polymer
 
WEB DEVELOPMENT
WEB DEVELOPMENTWEB DEVELOPMENT
WEB DEVELOPMENT
 
PPT
PPTPPT
PPT
 

Viewers also liked

Web 2.0: perspectivas para a EAD
Web 2.0: perspectivas para a EADWeb 2.0: perspectivas para a EAD
Web 2.0: perspectivas para a EAD
EAD Amazon
 
Taller #3
Taller #3Taller #3
Taller #3
Abdiel Quintero
 
historia inspiradora
historia inspiradora historia inspiradora
historia inspiradora
Alejandra Gomez
 
Digitizing EFL materials 英語学習教材をディジタイズする
Digitizing EFL materials 英語学習教材をディジタイズするDigitizing EFL materials 英語学習教材をディジタイズする
Digitizing EFL materials 英語学習教材をディジタイズする
Parisa Mehran
 
Back to school, 2016
Back to school, 2016Back to school, 2016
Back to school, 2016
Parisa Mehran
 
How history of International Relations affect our everyday lives
How history of International Relations affect our everyday livesHow history of International Relations affect our everyday lives
How history of International Relations affect our everyday lives
Marvin Njau
 
The height of the Pilgrimages
The height of the PilgrimagesThe height of the Pilgrimages
The height of the Pilgrimages
J Luque
 
Curso de Moodle Tutorial Moodle Parte 2 de 5
Curso de Moodle Tutorial Moodle Parte 2 de 5Curso de Moodle Tutorial Moodle Parte 2 de 5
Curso de Moodle Tutorial Moodle Parte 2 de 5
EAD Amazon
 
Curso de Moodle Tutorial Moodle Parte 1 de 5
Curso de Moodle Tutorial Moodle Parte 1 de 5Curso de Moodle Tutorial Moodle Parte 1 de 5
Curso de Moodle Tutorial Moodle Parte 1 de 5
EAD Amazon
 
EU Food Regulation on Additives, Novel Foods and Food Contact Materials
EU Food Regulation on Additives, Novel Foods and Food Contact MaterialsEU Food Regulation on Additives, Novel Foods and Food Contact Materials
EU Food Regulation on Additives, Novel Foods and Food Contact Materials
Daniele Pisanello
 
Looking at Innovations in Curriculum through the Lens of 21st Century Skills
Looking at Innovations in Curriculum through the Lens of 21st Century SkillsLooking at Innovations in Curriculum through the Lens of 21st Century Skills
Looking at Innovations in Curriculum through the Lens of 21st Century Skills
Parisa Mehran
 
Minna no-nihongo-ngu phap-50_bai
Minna no-nihongo-ngu phap-50_baiMinna no-nihongo-ngu phap-50_bai
Minna no-nihongo-ngu phap-50_bai
Tung Nguyen
 
Mobinius Technology Infographics - Comparison Android vs. iOS
Mobinius Technology Infographics - Comparison Android vs. iOSMobinius Technology Infographics - Comparison Android vs. iOS
Mobinius Technology Infographics - Comparison Android vs. iOS
Mobinius Technology
 

Viewers also liked (16)

Visanet 5 pgr cometeu crime
Visanet 5   pgr cometeu crimeVisanet 5   pgr cometeu crime
Visanet 5 pgr cometeu crime
 
Web 2.0: perspectivas para a EAD
Web 2.0: perspectivas para a EADWeb 2.0: perspectivas para a EAD
Web 2.0: perspectivas para a EAD
 
EE_Portofolio_2017
EE_Portofolio_2017EE_Portofolio_2017
EE_Portofolio_2017
 
Taller #3
Taller #3Taller #3
Taller #3
 
Claudia, suellen
Claudia, suellenClaudia, suellen
Claudia, suellen
 
historia inspiradora
historia inspiradora historia inspiradora
historia inspiradora
 
Digitizing EFL materials 英語学習教材をディジタイズする
Digitizing EFL materials 英語学習教材をディジタイズするDigitizing EFL materials 英語学習教材をディジタイズする
Digitizing EFL materials 英語学習教材をディジタイズする
 
Back to school, 2016
Back to school, 2016Back to school, 2016
Back to school, 2016
 
How history of International Relations affect our everyday lives
How history of International Relations affect our everyday livesHow history of International Relations affect our everyday lives
How history of International Relations affect our everyday lives
 
The height of the Pilgrimages
The height of the PilgrimagesThe height of the Pilgrimages
The height of the Pilgrimages
 
Curso de Moodle Tutorial Moodle Parte 2 de 5
Curso de Moodle Tutorial Moodle Parte 2 de 5Curso de Moodle Tutorial Moodle Parte 2 de 5
Curso de Moodle Tutorial Moodle Parte 2 de 5
 
Curso de Moodle Tutorial Moodle Parte 1 de 5
Curso de Moodle Tutorial Moodle Parte 1 de 5Curso de Moodle Tutorial Moodle Parte 1 de 5
Curso de Moodle Tutorial Moodle Parte 1 de 5
 
EU Food Regulation on Additives, Novel Foods and Food Contact Materials
EU Food Regulation on Additives, Novel Foods and Food Contact MaterialsEU Food Regulation on Additives, Novel Foods and Food Contact Materials
EU Food Regulation on Additives, Novel Foods and Food Contact Materials
 
Looking at Innovations in Curriculum through the Lens of 21st Century Skills
Looking at Innovations in Curriculum through the Lens of 21st Century SkillsLooking at Innovations in Curriculum through the Lens of 21st Century Skills
Looking at Innovations in Curriculum through the Lens of 21st Century Skills
 
Minna no-nihongo-ngu phap-50_bai
Minna no-nihongo-ngu phap-50_baiMinna no-nihongo-ngu phap-50_bai
Minna no-nihongo-ngu phap-50_bai
 
Mobinius Technology Infographics - Comparison Android vs. iOS
Mobinius Technology Infographics - Comparison Android vs. iOSMobinius Technology Infographics - Comparison Android vs. iOS
Mobinius Technology Infographics - Comparison Android vs. iOS
 

Similar to Walking Down the A11y Road - Lessons Learned from Working on Accessibility of a Django Project

Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
Joe Seifi
 
Beyond the Checklists - Demystifying Accessibility Testing and Implementation...
Beyond the Checklists - Demystifying Accessibility Testing and Implementation...Beyond the Checklists - Demystifying Accessibility Testing and Implementation...
Beyond the Checklists - Demystifying Accessibility Testing and Implementation...
Radina Matic
 
Visualized Conference and jQuery Conference
Visualized Conference and jQuery ConferenceVisualized Conference and jQuery Conference
Visualized Conference and jQuery Conference
Keiichiro Ono
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
A Gentle introduction to Web Development & Django
A Gentle introduction to Web Development & DjangoA Gentle introduction to Web Development & Django
A Gentle introduction to Web Development & Django
PRASANNAVENK
 
Build 2017 - B8100 - What's new and coming for Windows UI: XAML and composition
Build 2017 - B8100 - What's new and coming for Windows UI: XAML and compositionBuild 2017 - B8100 - What's new and coming for Windows UI: XAML and composition
Build 2017 - B8100 - What's new and coming for Windows UI: XAML and composition
Windows Developer
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebGeorge Kanellopoulos
 
Data and Business Team Collaboration
Data and Business Team CollaborationData and Business Team Collaboration
Data and Business Team Collaboration
Apple
 
Introduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS PractitionersIntroduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS PractitionersEmanuele Della Valle
 
Responsive Responsive Design
Responsive Responsive DesignResponsive Responsive Design
Responsive Responsive Design
Tim Kadlec
 
Self Guiding User Experience
Self Guiding User ExperienceSelf Guiding User Experience
Self Guiding User Experience
Sri Ambati
 
Progressive web app PWA - il futuro del web
Progressive web app PWA - il futuro del webProgressive web app PWA - il futuro del web
Progressive web app PWA - il futuro del web
Angelo Gino Varrati
 
WSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected Business
WSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected BusinessWSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected Business
WSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected BusinessWSO2
 
WSO2Con-Asia-2014 : Build a Connected Business (final keynote)
WSO2Con-Asia-2014 : Build a Connected Business (final keynote)WSO2Con-Asia-2014 : Build a Connected Business (final keynote)
WSO2Con-Asia-2014 : Build a Connected Business (final keynote)
Asanka Abeysinghe
 
Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...
Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...
Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...
Radina Matic
 
Start Your Project
Start Your ProjectStart Your Project
Start Your Project
SiliconExpert Technologies
 
MPhil Lecture of Data Vis for Presentation
MPhil Lecture of Data Vis for PresentationMPhil Lecture of Data Vis for Presentation
MPhil Lecture of Data Vis for PresentationShawn Day
 
夜宴43期《Auto Tools》
夜宴43期《Auto Tools》夜宴43期《Auto Tools》
夜宴43期《Auto Tools》Koubei Banquet
 
Building Web Hack Interfaces
Building Web Hack InterfacesBuilding Web Hack Interfaces
Building Web Hack Interfaces
Christian Heilmann
 

Similar to Walking Down the A11y Road - Lessons Learned from Working on Accessibility of a Django Project (20)

Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
 
Beyond the Checklists - Demystifying Accessibility Testing and Implementation...
Beyond the Checklists - Demystifying Accessibility Testing and Implementation...Beyond the Checklists - Demystifying Accessibility Testing and Implementation...
Beyond the Checklists - Demystifying Accessibility Testing and Implementation...
 
Visualized Conference and jQuery Conference
Visualized Conference and jQuery ConferenceVisualized Conference and jQuery Conference
Visualized Conference and jQuery Conference
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
 
A Gentle introduction to Web Development & Django
A Gentle introduction to Web Development & DjangoA Gentle introduction to Web Development & Django
A Gentle introduction to Web Development & Django
 
Build 2017 - B8100 - What's new and coming for Windows UI: XAML and composition
Build 2017 - B8100 - What's new and coming for Windows UI: XAML and compositionBuild 2017 - B8100 - What's new and coming for Windows UI: XAML and composition
Build 2017 - B8100 - What's new and coming for Windows UI: XAML and composition
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The Nextweb
 
Data and Business Team Collaboration
Data and Business Team CollaborationData and Business Team Collaboration
Data and Business Team Collaboration
 
Introduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS PractitionersIntroduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS Practitioners
 
Responsive Responsive Design
Responsive Responsive DesignResponsive Responsive Design
Responsive Responsive Design
 
Self Guiding User Experience
Self Guiding User ExperienceSelf Guiding User Experience
Self Guiding User Experience
 
Progressive web app PWA - il futuro del web
Progressive web app PWA - il futuro del webProgressive web app PWA - il futuro del web
Progressive web app PWA - il futuro del web
 
WSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected Business
WSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected BusinessWSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected Business
WSO2Con Asia 2014 - Complete Your Corporate Jigsaw - Build a Connected Business
 
WSO2Con-Asia-2014 : Build a Connected Business (final keynote)
WSO2Con-Asia-2014 : Build a Connected Business (final keynote)WSO2Con-Asia-2014 : Build a Connected Business (final keynote)
WSO2Con-Asia-2014 : Build a Connected Business (final keynote)
 
Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...
Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...
Inclusive Design: an Introduction to Accessibility - Radina Matic - DrupalCon...
 
Start Your Project
Start Your ProjectStart Your Project
Start Your Project
 
MPhil Lecture of Data Vis for Presentation
MPhil Lecture of Data Vis for PresentationMPhil Lecture of Data Vis for Presentation
MPhil Lecture of Data Vis for Presentation
 
Banquet 43
Banquet 43Banquet 43
Banquet 43
 
夜宴43期《Auto Tools》
夜宴43期《Auto Tools》夜宴43期《Auto Tools》
夜宴43期《Auto Tools》
 
Building Web Hack Interfaces
Building Web Hack InterfacesBuilding Web Hack Interfaces
Building Web Hack Interfaces
 

Recently uploaded

The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
Globus
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
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
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
UiPathCommunity
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 

Recently uploaded (20)

The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.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
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 

Walking Down the A11y Road - Lessons Learned from Working on Accessibility of a Django Project

  • 1. Walking Down the A11y Road Lessons Learned from Working on Accessibility of a Django Project Radina Matic radina@learningequality.org @RadinaMatic
  • 2. Radina Matic - translator & technical writer - open software & technology enthusiast Web and Data Visualization at Rectory Stats Office, University of Barcelona Foundation for Learning Equality radina.matic@ub.edu radina@learningequality.org @RadinaMatic
  • 3.
  • 4.
  • 5. Why do we care?
  • 6. Who benefits? World Health Organization fact sheet from 2014 Disabled people in the world (1000 millions) People living in Europe (742 millions)
  • 7. Who benefits? EU-Statistics on Income and Living Conditions from 2014 Millions!
  • 10. Good for Business - Benefits SEO - Improves mobile access and overall usability - Increases market share - PR impact derived from corporate social responsibility - Reduces legal risk
  • 11. Don’t put up fires Plan accessibility as early as possible, don’t wait for QA
  • 12. Standards & Laws - US - Section 508 (1998) & ADA - 21st Century & Video Accessibility Act (2010) - European Standard on accessibility requirements for public procurement of ICT products and services (EN 301 549 - 2014) - Web Content Accessibility Guidelines (WCAG) 2.0 as ISO/IEC 40500 (2012)
  • 13. Accessibility mishaps make headlines (and courtrooms) - National Federation of the Blind v. TARGET (2008) - National Association of the Deaf (NAD) v. Netflix (2012) - Google Books (2012) - Harvard & MIT (edX) MOOCs (2015) http://www.karlgroves.com/2011/11/15/ list-of-web-accessibility-related-litigation- and-settlements/ (~230 cases up to 2015)
  • 15. DISCOVERABILITY FEEDBACK & It's not you. Bad doors are everywhere https://www.youtube.com/watch?v=yY96hTb8WgI Don Norman about “Norman Doors”
  • 17. Document Structure • Title (unique and descriptive; H1) • Page landmarks (semantic HTML5 or ARIA)
  • 19. Keyboard navigation - Tab & Shift Tab through all the links - Arrow keys through menus - Skip-to links on top (first element after <body>) Define visible focus state! :focus { outline: 0; }
  • 22. Images - The elusive ALT attribute - alt=“?????” - DESCRIBE the image convey both content and functionality - Do not put text inside images (localization) - Decorative images – empty alt=“”
  • 23. Links and Forms Links - Concise - Descriptive Click More Here Forms -Labels -Fieldsets for grouping -Tabbing order
  • 24. Color & Contrast foreground vs. background 3:1 for large text 4.5:1 for smaller text
  • 25. {% if settings.DEBUG %} <script type="text/javascript" src="{% static 'js/tota11y.min.js' %}"></script> {% endif %}
  • 28. OFFER ALTERNATIVES Accessible Multimedia Players Able Video Player - http://www.washington.edu/doit/videos/
  • 32. Screenreader-only output Heading level two clickable link What is addition? What is subtraction? two two hundred percent Heading level two clickable link Converting between fractions and decimals ten forty percent sixty percent three hundred percent
  • 33. Screenreader-only output <div class="sr-only">{{_ "In this topic " }}</div> <div class="progress-indicator {{vid_status}}"> <span class="sr-only">{{_ "there are " }}</span> <div class="sidebar-icon"> <span class="progress-indicator content-counter"> <div class="sr-only">{{#unless n_pl_videos}}no{{/unless}}</div> {{#if n_pl_videos}}{{n_pl_videos}}{{/if}} </span> </div> <span class="sr-only">{{_ " videos." }}</span> </div> {{#ifcond vid_pct_started "<" 100}} <span class="sr-only">{{_ "You are still working on " }}</span> <span aria-hidden="true" role="presentation">{{ >{{vid_pct_started}}%</span> {{/ifcond}} {{#ifcond vid_pct_started "===" 100}} <span class="sr-only">{{_ "You are still working on all of them." }}</span> <span aria-hidden="true" role="presentation">{{vid_pct_started}}%</span> {{/ifcond}}
  • 34. Screenreader-only output Heading level two clickable link What is addition? What is subtraction? In this topic there are two videos. You haven't started to watch videos! There are two exercises. You are still working on all of them. Heading level two clickable link Converting between fractions and decimals In this topic there are ten videos. Of those you have completed forty percent. You are still working on sixty percent. There are three exercises. You are still working on all of them.
  • 35. A11y from the start
  • 36. A11y from the start - Include a11y requirements into the Usability Style Guide - Leverage the standard HTML5 semantic elements - Take a11y into account when choosing the libraries and frameworks - Make accessible web components available from the beginning - Start including automated a11y tests as soon as possible
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43. <a v-link="link"> <content-icon v-if="kind" :kind="kind" :progress="progress"> </content-icon> <img :src="validatedThumbnail" class="thumbnail" v-if="showThumbnail" alt=""> <div class="thumbnail" v-else>&nbsp;</div> <h3> <span class="visuallyhidden">{{ progress }} {{ kind }} </span>{{ title }} </h3> </a>
  • 44. <template> <img :src="src" :alt="altText"> </template> <script> module.exports = { props: { … computed: { altText() { // TODO - I18N return `${this.progress} - ${this.kind}`; }, … }, }; </script> /content-icon/index.vue
  • 45. How did we get here?
  • 46. A11Y Pills & Passion @LearnEQ Accessibility Pills
  • 48. Accessibility is a shared responsibility http://www.w3.org/ community/wai-engage/wiki/ Accessibility_Responsibility_Breakdown
  • 49. Put A11Y in your dev team life • A11y Pills & lots of passion • Make accessibility a SHARED responsibility • Start a Tools Repository • Don't rely exclusively on checklists and automated testing (Involve the USERS!) • Accessibility is a process, not a project problem (John B. Metz)
  • 51. Guidelines -Web Content (WCAG) -User Agent (UAAG) -Authoring Tools (ATAG) -WAI ARIA: Accessible Rich Interactive Applications
  • 52. POUR principles Information must be: Perceivable Operable Understandable Robust
  • 53. General A11y Tools WAVE Web Accessibility Evaluation Tool http://wave.webaim.org/ (Firefox toolbar & Chrome extension) OpenAjax Alliance (OAA) Accessibility Extension https://addons.mozilla.org/EN-US/firefox/addon/openajax- accessibility-exte/ AInspector Sidebar https://addons.mozilla.org/en-US/firefox/addon/ainspector-sidebar/ Accessibility Evaluation Toolbar https://addons.mozilla.org/en-US/firefox/addon/accessibility-evaluation- toolb/ Automated A11y testing pa11y - https://github.com/nature/pa11y quails - http://quailjs.org/ Tanaguru - https://github.com/Tanaguru/Tanaguru TENON - http://tenon.io
  • 54. Document Structure-Tools Juicy Studio Accessibility Toolbar https://addons.mozilla.org/en-uS/firefox/addon/juicy-studio- accessibility-too/ Jim Thatcher’s Favelets http://jimthatcher.com/favelets/ NCAM Accessibility QA Favelet http://ncam.wgbh.org/invent_build/web_multimedia/tools- guidelines/favelet Visual ARIA Bookmarklet http://whatsock.com/training/matrices/visual-aria.htm tota11y - an accessibility visualization toolkit - http://khan.github.io/tota11y/
  • 56. Color & Contrast - Tools Contrast Analyzer - http://www.paciellogroup.com/resources/contrastanalyser/ Accessibility Color Wheel - http://gmazzocato.altervista.org/colorwheel/wheel.php CONTRAST-A-WEB - http://dasplankton.de/ContrastA/ Color Safe - http://colorsafe.co/ WCAG Contrast checker https://addons.mozilla.org/ca/firefox/addon/wcag-contrast-checker/ Color Palette Accessibility Evaluator - http://accessibility.oit.ncsu.edu/tools/color-contrast/ Color Extractor Bookmarklet - http://accessibility.oit.ncsu.edu/tools/color- extractor/ & http://accessibility.oit.ncsu.edu/tools/color-contrast-chrome/ Color Contrast Visualizer http://www.stainlessvision.com/blog/projects/colour-contrast-visualiser
  • 57. Writing -Plain language -Sentences up to 25 words -Paragraphs up to 3-4 sentences -Active voice -Consistent vocabulary -Bulleted lists -Consistent format & navigation
  • 58. Accessible Video Players http://www.icant.co.uk/easy-youtube/ Web-Based Media Player Accessibility Comparison Table
  • 59.