SlideShare ist ein Scribd-Unternehmen logo
1 von 36
Downloaden Sie, um offline zu lesen
Neue Infos rund um WCAG 2.0Neue Infos rund um WCAG 2.0Neue Infos rund um WCAG 2.0Neue Infos rund um WCAG 2.0
Eric Eggert, W3C/WAI, @yatil, w3.org/People/yatil
Web AccessibilityWeb Accessibility
TutorialsTutorials
Seitenstruktur (Entwurf)
Menüs (Entwurf)
Bilder
Tabellen
Formulare
Karussells (Entwurf)
KonzepteKonzepte
Why is this important?
Related WCAG 2.0
resources
Technologies covered in this
Tutorial:
CSS Fonts
CSS Transforms HTML5
MathML WAI-ARIA
Images must have text alternatives that describe the
information or function represented by the images. This
ensures that images can be used by people with various
disabilities. This tutorial demonstrates how to provide
appropriate text alternatives based on the purpose of the
image:
Informative images: Images that graphically represent
concepts and information, typically pictures, photos and
illustrations. The text alternative should be at least a
short description conveying the essential information
presented by the image.
Decorative images: Provide a null text alternative (
alt="") when the only purpose of an image is to add
visual decoration to the page, rather than to convey
information that is important to understanding the
page.
Functional images: The text alternative of an image
used as a link or as a button should describe the
functionality of the link or button rather than the visual
Tutorials home Images Images Concepts
1
2
3
4
5
6
7
This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at
w3.org/WAI/tutorials/.
Web Accessibility Tutorials
Guidance on how to create websites that meet WCAG
Images Concepts
On this page
Images Tutorial
Images Concepts
Informative Images
Decorative Images
Functional Images
Images of Text
Complex Images
Groups of Images
Image Maps
An alt Decision Tree
Tips and Tricks
All Tutorials
Page Structure DRAFT
Menus DRAFT
Images
Tables
GrundStrukturGrundStruktur
Associating labels explicitly
Hiding label text
Approach 1: Hiding the label element
Approach 2: Using aria-label
Approach 3: Using the title attribute
Note on hiding elements
Associating labels implicitly
Labelling buttons
Visual position of label text
Related WCAG 2.0 resources
Provide labels to identify all form controls, including text fields, checkboxes, radio buttons, and
drop-down menus. In most cases this is done by using the <label> element.
Labels need to describe the purpose of the form control. This section of the tutorial describes
how to provide labels that are properly associated with form controls. Later sections explain
how to provide instructions, validate user input, and provide feedback to help users complete
your form.
A label and a form control need to be associated with each other either implicitly or explicitly.
Web browsers provide the label as a larger clickable area, for example, to select or activate the
control. It also ensures that assistive technology is able to refer to the correct label when
presenting a form control.
Associating labels explicitly
Whenever possible, use the label element to explicitly associate text with form elements.
The for attribute of the label must exactly match the id of the form control.
EXAMPLE:
First name:
Subscribe to newsletter
CODE SNIPPET: HTML
<label for="firstname">First name:</label>
<input type="text" name="firstname" id="firstname"><br>
<input type="checkbox" name="subscribe" id="subscribe">
<label for="subscribe">Subscribe to newsletter</label>
Hiding label text
Tutorials home Forms Labeling Controls
1
2
3
4
5
6
7
This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/.
Web Accessibility Tutorials
Guidance on how to create websites that meet WCAG
Labeling Controls
On this page
Forms Tutorial
Forms Concepts
Labeling Controls
Grouping Controls
Form Instructions
Validating Input
User Notifications
Multi-page Forms
Custom Controls
All Tutorials
Page Structure
DRAFT
Menus DRAFT
Images
Tables
Forms
Carousels DRAFT
SHARE
SHARE
StylingStyling
Vertical menu
Horizontal menu
Styling menu items
Menu feedback
Related WCAG 2.0 resources
With a consistent styling users are able to find menus more easily. There are two basic design
patterns that are commonly used on web sites: vertical and horizontal menus.
Regardless of the orientation, each menu item should have enough space so it doesn’t overlap
other content on the page or gets cut off. Such items are a potential accessibility barrier,
especially for users increasing the font size and can also be a problem when translating the
menu into another language. Try to avoid line breaks or hyphenation in menu items as they are
harder to understand.
Vertical menu
Ensure that the menu column is wide enough to accommodate all current and future menu
items.
EXAMPLE:
Home
Shop
SpaceBears
MarsCars
Contact
Horizontal menu
Horizontal menus should be positioned near the top of the screen so they are easier to find.
EXAMPLE:
Tutorials home Menus Menu Styling
1
2
3
4
This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/.
Web Accessibility Tutorials
Guidance on how to create websites that meet WCAG
[APPROVED DRAFT]
Menu Styling
On this page
SHARE
SHARE
Menus Tutorial
Menu Concepts
Structure
Styling
Fly-out Menus
Applications Menus
All Tutorials
Page Structure
DRAFT
Menus DRAFT
Images
Tables
Forms
Carousels DRAFT
Funktionalität eines KarussellsFunktionalität eines Karussells
Position slides
Adding previous and next buttons
Announcing slides
Items navigation
Focusing carousel items
Putting it all together
Related WCAG 2.0 resources
Carusels display the one content item at a time while hiding the others. They allow users to
browse through them.
Position slides
If the JavaScript is enabled, a class active is added to the carousel region so we can
distinguish between that state and the non-JavaScript fallback. The slides are positioned
absolutely in the carousel, and the current slide is positioned frontmost using z-index.
CODE SNIPPET:
.active .slide {
display: none;
position: absolute;
top: 0;
left: 0;
border: none;
}
.slide.current {
display: block;
z-index: 500;
}
The outcome looks like this:
EXAMPLE:
Featured Articles:
Tutorials home Carousels Functionality
Status: This is not ready for detailed review. It is an in-progress, unapproved editor’s draft.
1
2
3
This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/.
Web Accessibility Tutorials
Guidance on how to create websites that meet WCAG
[ROUGH DRAFT]
Functionality
On this page
SHARE
Carousels Tutorial
Carousel Concepts
Structure
Functionality
Animations
Complete code
example
All Tutorials
Page Structure
DRAFT
Menus DRAFT
Images
Tables
Forms
Carousels DRAFT
menüs für Anwendungenmenüs für Anwendungen
EXAMPLE:
Web application menus use the same basic structure as navigation menus: They often consist of
a horizontal menu bar and use fly-out functionality.
Some additional WAI-ARIA roles help users with assistive technology to operate those menus in a
way that is similar to the way they use menus in desktop software. When using those roles, the
keyboard interaction should be similar to desktop software as well: the tab key is used to
iterate through the top-level items only, the up and down arrows are used to navigate the sub
menus.
Note that the keyboard behavior is not automatically changed when adding those roles, but
needs to be added using scripting. A detailed explanation on the WAI-ARIA attributes and
keyboard behavior can be found in the WAI-ARIA Authoring Practices document (draft) .
In addition to the aria-expanded and aria-haspopup attributes, the following roles are
used in the example:
menubar: Represents a (usually horizontal) menu bar.
menu: Represents a set of links or commands in a menu bar, it is used for the fly-out
menus.
menuitem: Represents an individual menu item.
The markup has no links at all: It is a nested list with WAI-ARIA roles as the application would be
non-functional without JavaScript available anyway.
Tutorials home Menus Web Application Menus
1
2
3
4
This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/.
Web Accessibility Tutorials
Guidance on how to create websites that meet WCAG
[APPROVED DRAFT]
Web Application Menus
File Edit Format View Help
Menus Tutorial
Menu Concepts
Structure
Styling
Fly-out Menus
Applications Menus
All Tutorials
Page Structure
DRAFT
Menus DRAFT
Images
Tables
Forms
Carousels DRAFT
DemoDemo
tutorialstutorials
https://w3.org/WAI/tutorials
https://w3c.github.io/wai-tutorials/
Tips for Getting StartedTips for Getting Started
with Web Accessibilitywith Web Accessibility
Tips for getting startedTips for getting started
Tips for getting startedTips for getting started
Designing
Writing
Developing
http://w3c.github.io/wai-quick-start/
EvaluationEvaluation
tools listtools list
evaluation tools listevaluation tools list
Evaluation Tools ListEvaluation Tools List
https://www.w3.org/WAI/ER/tools/
WCAG-EMWCAG-EM
Report ToolReport Tool
WCAG-EM Report ToolWCAG-EM Report Tool
WCAG-EM Report Tool
Website Accessibility Evaluation Report Generator
This tool helps you generate a report according to the Website Accessibility Conformance Evaluation Methodology (WCAG-EM). It does not perform any
accessibility checks. It helps you follow the steps of WCAG-EM, to generate a structured report from the input that you provide. It is designed for experienced
evaluators who know Web Content Accessibility Guidelines (WCAG) 2.0 and are somewhat familiar with WCAG-EM. For an introduction to WCAG-EM, see the
WCAG-EM Overview.
Note: This tool does not automatically save the information that you enter. To save your data in a file locally on your computer, use Windows shortcut keys
Ctrl+S or Mac shortcut keys ⌘S to open the Save dialog. (Or the 'Save' link at the top of the page will open the Save Evaluation Report page and from there
the 'Save data file locally to your computer' link will open the Save dialog.)
How this tool works
Tips for using this tool
Feedback: We welcome ideas, bug reports, and comments via GitHub or e-mail to wai-eo-editors@w3.org (a publicly archived list) or wai@w3.org (a WAI staff-only list).
Status: Version 1.0, 26 Febuary 2015
Development Team: Shadi Abou-Zahra, W3C/WAI (Project Lead) and Wilco Fiers, accessibility.nl (Design and development). Contributors: Shawn Lawton Henry and the Education and Outreach Working Group.
Developed with support from the WAI-ACT Project, a project of the European Commission IST Programme.
[WAI Site Map] [Help with WAI Website] [Search] [Contacting WAI]
Copyright © 2014 W3C (MIT, ERCIM, Keio, Beihang) Usage policies apply.
New Report Open Save Key Resources
Start 1. Define Scope 2. Explore Website 3. Select Sample 4. Audit Sample 5. Report Findings View Report


Next step: Define Scope 
®
WCAG-EM Report ToolWCAG-EM Report Tool
http://www.w3.org/WAI/eval/report-tool/#/
WCAG QuickWCAG Quick
referencereference
Heute:Heute:
http://www.w3.org/WAI/WCAG20/quickref/
Customize this Quick Reference
Technologies:
Show HTML techniques and failures
Show CSS techniques and failures
Show SMIL techniques and failures
Show Client-side Scripting techniques and failures
Show Server-side Scripting techniques and failures
Show Flash techniques and failures
Show PDF techniques and failures
Show Silverlight techniques and failures
Show WAI-ARIA techniques and failures
Levels:
Show Level A Success Criteria
Show Level AA Success Criteria
Show Level AAA Success Criteria
Sections:
Show Sufficient Techniques and Failures
Show Advisory Techniques
Save Settings Option:
Save these settings (requires cookies)
Customize with Settings Above
How to Meet WCAG 2.0
A customizable quick reference to Web Content Accessibility Guidelines 2.0 requirements
(success criteria) and techniques
Introduction
[Hide Introduction]
This web page can be used as a checklist for WCAG 2.0. It provides:
All of the requirements (called "success criteria") from Web
Content Accessibility Guidelines (WCAG) 2.0
Techniques to meet the requirements, which are linked to pages
with descriptions, code examples, browser and assistive technology
support notes, and tests.
Failures to avoid, which are linked to pages with descriptions,
examples, and tests.
"Understanding" links to pages that explain the intent of the
guideline or success criterion, how it helps people with different
disabilities, key terms, and resources.
You can customize what is included in this page by selecting from the
Customize this Quick Reference section which Technologies, Levels of
success criteria, and Sections of techniques you want to include.
For an introduction to WCAG, Techniques, and Understanding
documents, see the WCAG Overview.
Note that even content that conforms at the highest level (AAA) will not be
accessible to individuals with all types, degrees, or combinations of
disability, particularly in the cognitive language and learning areas. Authors
are encouraged to seek relevant advice about current best practice to
ensure that Web content is accessible, as far as possible, to this
community.
About the Techniques
For important information about the techniques, please see the Understanding Techniques for WCAG Success Criteria section of Understanding WCAG
2.0.
Note: The basis for determining conformance to WCAG 2.0 is the success criteria, not the techniques. (The success criteria have 3-level numbering (0.0.0) and in this
page they are followed by a link "Understanding Success Criterion".) All techniques are informative; that means they are not required. There may be other techniques
besides the ones listed here.
New Techniques and Comments
The Techniques for WCAG 2.0 document is updated periodically, and anyone can submit techniques that will be considered for inclusion in an update. Please submit
corrections, updates, or new information related to techniques, failures, or other WCAG documentation to the WCAG Working Group, per the instructions for
commenting.
In Zukunft:In Zukunft:
http://w3c.github.io/wai-wcag-quickref/
Status: This is an incomplete rough mockup of a redesign. The published version of the How to Meet WCAG 2.0 quick reference is at: www.w3.org/WAI/WCAG20/quickref/ More
[Mockup] How to Meet WCAG 2.0
A customizable quick reference to Web Content Accessibility Guidelines 2.0 requirements (success criteria) and techniques
About this Quick Reference
Principle 1 – Perceivable
Information and user interface components must be presentable to users in ways they can perceive.
1.1 Text Alternatives
Provide text alternatives for any non-text content so that it can be changed into other forms people need, such as large print, braille, speech, symbols or simpler language.
1.1.1 Non-text Content — Level A
All non-text content that is presented to the user has a text alternative that serves the equivalent purpose, except for the situations
listed below. Show full description
Understanding 1.1.1
BACK TO TOP
1.2 Time-based Media
Provide alternatives for time-based media.
1.2.1 Audio-only and Video-only (Prerecorded) — Level A
For prerecorded audio-only and prerecorded video-only media, the following are true, except when the audio or video is a media
alternative for text and is clearly labeled as such: Show full description
Understanding 1.2.1
BACK TO TOP
1.2.2 Captions (Prerecorded) — Level A
HideContents Filter
1.1 Text Alternatives
1.1.1 Non-text Content
1.2 Time-based Media
1.2.1 Audio-only and Video-only
(Prerecorded)
1.2.2 Captions (Prerecorded)
1.2.3 Audio Description or Media
Alternative (Prerecorded)
1.2.4 Captions (Live)
1.2.5 Audio Description
(Prerecorded)
1.2.6 Sign Language (Prerecorded)
1.2.7 Extended Audio Description
(Prerecorded)
1.2.8 Media Alternative
(Prerecorded)
1.2.9 Audio-only (Live)
1.3 Adaptable
1.3.1 Info and Relationships
1.3.2 Meaningful Sequence
1.3.3 Sensory Characteristics
1.4 Distinguishable
1.4.1 Use of Color
1.4.2 Audio Control
1.4.3 Contrast (Minimum)
1.4.4 Resize text
1.4.5 Images of Text
1.4.6 Contrast (Enhanced)
1.4.7 Low or No Background Audio
1. Perceivable
Show techniques for 1.1
SHARE
Show techniques for 1.1.1
SHARE
Show techniques for 1.2.1
SHARE
Showing all success criteria and all techniques. Link to this view
WCAG 2.0:WCAG 2.0:
Stabiler StandardStabiler Standard
TechnikenTechniken
UnderstandingUnderstanding
(2 Updates/Jahr)
WCAG 2.0:WCAG 2.0:
Neue InitiativenNeue Initiativen
Mobile AccessibilityMobile Accessibility
task forcetask forceWCAG WG & UAWG
http://www.w3.org/WAI/GL/mobile-a11y-tf/
Mobile Accessibility: How WCAG 2.0 andMobile Accessibility: How WCAG 2.0 and
Other W3C/WAI Guidelines Apply to MobileOther W3C/WAI Guidelines Apply to Mobile
Mobile Accessibility: How WCAG 2.0 and Other W3C/WAI Guidelines Apply to Mobile
W3C First Public Working Draft 26 February 2015
This version:
http://www.w3.org/TR/2015/WD-mobile-accessibility-mapping-20150226/
Latest published version:
http://www.w3.org/TR/mobile-accessibility-mapping/
Latest editor's draft:
http://w3c.github.io/Mobile-A11y-TF-Note/
Editors:
Kim Patch, Redstart Systems
Jeanne Spellman, W3C
Kathy Wahlbin, Interactive Accessibility
Copyright © 2015 W3C® (MIT, ERCIM, Keio, Beihang). W3C liability, trademark and document use rules apply.
Abstract
This document, “Mobile Accessibility: How WCAG 2.0 and Other W3C/WAI Guidelines Apply to Mobile” describes how the Web Content Accessibility Guidelines (WCAG) 2.0 [WCAG20] and
its principles, guidelines, and success criteria can be applied to mobile web content, mobile web apps, native apps, and hybrid apps using web components inside native apps. It provides
informative guidance, but does not set requirements. It also highlights the relevance of the User Agent Accessibility Guidelines 2.0 [UAAG20] in the mobile context.
This document is intended to become a Working Group Note and is part of a series of technical and educational documents published by the W3C Web Accessibility Initiative (WAI).
Status of This Document
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this
technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This document is a First Public Working Draft by the Mobile Accessibility Task Force (Mobile A11Y TF) operating under the terms of its Work Statement under the joint coordination and review
of the Web Content Accessibility Guidelines Working Group (WCAG WG) and the User Agent Accessibility Guidelines Working Group (UAWG), which is part of the Web Accessibility Initiative
(WAI) of the World Wide Web Consortium (W3C). This document is intended to become a W3C Note.
Feedback on this draft is essential to the success of this guidance. The Mobile Accessibility Task Force asks in particular:
1. Is this document helpful in understanding the applicability of WCAG 2.0 and UAAG 2.0 to the mobile environment?
2. Is the format of this information helpful for designers, developers and testers of content that can be viewed with mobile devices and in mobile apps? Is it useful for policymakers?
3. In Appendix A, is listing relevant existing WCAG 2.0 techniques helpful for mobile content and mobile app developers?
4. Are there additional accessibility needs in the mobile environment related to the WCAG principles that we should address?
Cognitive and Learning DisabilitiesCognitive and Learning Disabilities
Accessibility Task ForceAccessibility Task Force
PFWG & WCAG WG
http://www.w3.org/WAI/PF/cognitive-a11y-tf/
Low vision AccessibilityLow vision Accessibility
task forcetask force
„in Diskussion“
http://www.w3.org/WAI/GL/low-vision-a11y-tf/
NormativeNormativeNormativeNormative WCAG 2.0WCAG 2.0
ErweiterungenErweiterungen
ATAG 2.0ATAG 2.0
One more thing…One more thing…
VÖ: 24.09.2015VÖ: 24.09.2015
ATAG hilft WCAGATAG hilft WCAG
zu erreichenzu erreichen
BarrierefreieBarrierefreie
Content managementContent management
systemesysteme
Eric EggertEric Eggert
ee@w3.org
http://w3.org/People/yatil/
http://slides.com/yatil/atag-wcag-2015/

Weitere ähnliche Inhalte

Was ist angesagt?

Building Accessible Web Components
Building Accessible Web ComponentsBuilding Accessible Web Components
Building Accessible Web ComponentsRuss Weakley
 
Joomla Template Tutorial
Joomla Template TutorialJoomla Template Tutorial
Joomla Template Tutorialbrighteyes
 
Basics of Joomla!
Basics of Joomla! Basics of Joomla!
Basics of Joomla! Saurabh Shah
 
Building accessible web components without tears
Building accessible web components without tearsBuilding accessible web components without tears
Building accessible web components without tearsRuss Weakley
 
Joomla! Templates and Comparison of Frameworks
Joomla! Templates and Comparison of FrameworksJoomla! Templates and Comparison of Frameworks
Joomla! Templates and Comparison of FrameworksSaurabh Shah
 
Redlinesoft Joomla Basic Workshop
Redlinesoft Joomla Basic WorkshopRedlinesoft Joomla Basic Workshop
Redlinesoft Joomla Basic WorkshopAnuchit Chalothorn
 
Better Design Built Faster: Using New UI Technologies to Speed Development
Better Design Built Faster: Using New UI Technologies to Speed DevelopmentBetter Design Built Faster: Using New UI Technologies to Speed Development
Better Design Built Faster: Using New UI Technologies to Speed Developmentgoodfriday
 
The definitive guide to Web flowcharts
The definitive guide to Web flowchartsThe definitive guide to Web flowcharts
The definitive guide to Web flowchartsFelixDing
 
Selectionwidgetwhitepaper 140907120000-phpapp02
Selectionwidgetwhitepaper 140907120000-phpapp02Selectionwidgetwhitepaper 140907120000-phpapp02
Selectionwidgetwhitepaper 140907120000-phpapp02Nigel Abbott
 
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004brighteyes
 
anbu-new-resume
anbu-new-resumeanbu-new-resume
anbu-new-resumeAnparasu E
 
Using Ajax to improve your user experience at Web Directions South 2009
Using Ajax to improve your user experience at Web Directions South 2009Using Ajax to improve your user experience at Web Directions South 2009
Using Ajax to improve your user experience at Web Directions South 2009Peak Usability
 
Improving joomla's backend user experience
Improving joomla's backend user experienceImproving joomla's backend user experience
Improving joomla's backend user experienceLuke Summerfield
 
25+ mLearning Tools in 60 Minutes - DevLearn 2010
25+ mLearning Tools in 60 Minutes - DevLearn 201025+ mLearning Tools in 60 Minutes - DevLearn 2010
25+ mLearning Tools in 60 Minutes - DevLearn 2010B.J. Schone
 
The Audio User Experience for Widgets
The Audio User Experience for WidgetsThe Audio User Experience for Widgets
The Audio User Experience for Widgetstoddkloots
 
How HTML5 and WAI-ARIA Can Improve Virtual Space of Universities
How HTML5 and WAI-ARIA Can Improve Virtual Space of UniversitiesHow HTML5 and WAI-ARIA Can Improve Virtual Space of Universities
How HTML5 and WAI-ARIA Can Improve Virtual Space of UniversitiesRadek Pavlíček
 

Was ist angesagt? (20)

Building Accessible Web Components
Building Accessible Web ComponentsBuilding Accessible Web Components
Building Accessible Web Components
 
Joomla Template Tutorial
Joomla Template TutorialJoomla Template Tutorial
Joomla Template Tutorial
 
Basics of Joomla!
Basics of Joomla! Basics of Joomla!
Basics of Joomla!
 
Building accessible web components without tears
Building accessible web components without tearsBuilding accessible web components without tears
Building accessible web components without tears
 
Joomla! Templates and Comparison of Frameworks
Joomla! Templates and Comparison of FrameworksJoomla! Templates and Comparison of Frameworks
Joomla! Templates and Comparison of Frameworks
 
Presentation joomla-introduction
Presentation joomla-introductionPresentation joomla-introduction
Presentation joomla-introduction
 
Redlinesoft Joomla Basic Workshop
Redlinesoft Joomla Basic WorkshopRedlinesoft Joomla Basic Workshop
Redlinesoft Joomla Basic Workshop
 
Better Design Built Faster: Using New UI Technologies to Speed Development
Better Design Built Faster: Using New UI Technologies to Speed DevelopmentBetter Design Built Faster: Using New UI Technologies to Speed Development
Better Design Built Faster: Using New UI Technologies to Speed Development
 
The definitive guide to Web flowcharts
The definitive guide to Web flowchartsThe definitive guide to Web flowcharts
The definitive guide to Web flowcharts
 
Selectionwidgetwhitepaper 140907120000-phpapp02
Selectionwidgetwhitepaper 140907120000-phpapp02Selectionwidgetwhitepaper 140907120000-phpapp02
Selectionwidgetwhitepaper 140907120000-phpapp02
 
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
 
anbu-new-resume
anbu-new-resumeanbu-new-resume
anbu-new-resume
 
Using Ajax to improve your user experience at Web Directions South 2009
Using Ajax to improve your user experience at Web Directions South 2009Using Ajax to improve your user experience at Web Directions South 2009
Using Ajax to improve your user experience at Web Directions South 2009
 
Improving joomla's backend user experience
Improving joomla's backend user experienceImproving joomla's backend user experience
Improving joomla's backend user experience
 
25+ mLearning Tools in 60 Minutes - DevLearn 2010
25+ mLearning Tools in 60 Minutes - DevLearn 201025+ mLearning Tools in 60 Minutes - DevLearn 2010
25+ mLearning Tools in 60 Minutes - DevLearn 2010
 
The Audio User Experience for Widgets
The Audio User Experience for WidgetsThe Audio User Experience for Widgets
The Audio User Experience for Widgets
 
How HTML5 and WAI-ARIA Can Improve Virtual Space of Universities
How HTML5 and WAI-ARIA Can Improve Virtual Space of UniversitiesHow HTML5 and WAI-ARIA Can Improve Virtual Space of Universities
How HTML5 and WAI-ARIA Can Improve Virtual Space of Universities
 
Template frameworks
Template frameworksTemplate frameworks
Template frameworks
 
Exp Web
Exp WebExp Web
Exp Web
 
A primer on ux design
A primer on ux designA primer on ux design
A primer on ux design
 

Andere mochten auch

Ein Strategie für viele Marken - IA Konferenz 2016 - Berlin
Ein Strategie für viele Marken - IA Konferenz 2016 - BerlinEin Strategie für viele Marken - IA Konferenz 2016 - Berlin
Ein Strategie für viele Marken - IA Konferenz 2016 - BerlinLutz Schmitt
 
User Interface Design Patterns
User Interface Design PatternsUser Interface Design Patterns
User Interface Design PatternsuxHH
 
Who evd guidance_lab_14.2_spa
Who evd guidance_lab_14.2_spaWho evd guidance_lab_14.2_spa
Who evd guidance_lab_14.2_spamaikach
 
Impulsreferat ng g gud z versand
Impulsreferat ng g gud z versandImpulsreferat ng g gud z versand
Impulsreferat ng g gud z versandJens Friedrich
 
Compliance Anforderungen an Computerisierte Systeme
Compliance Anforderungen an Computerisierte SystemeCompliance Anforderungen an Computerisierte Systeme
Compliance Anforderungen an Computerisierte SystemeInboundLabs (ex mon.ki inc)
 
Input Selbstgesteuertes Lernen
Input Selbstgesteuertes LernenInput Selbstgesteuertes Lernen
Input Selbstgesteuertes Lernenhse_unisg
 
Brucelosis infecto
Brucelosis infectoBrucelosis infecto
Brucelosis infectoPipo Nz
 
Clase prescripcion ejercicio fisico
Clase prescripcion ejercicio fisicoClase prescripcion ejercicio fisico
Clase prescripcion ejercicio fisicoRodulfo Alvarado
 
Exposición de ortodoncia extracciones seriadas y guia de erupcion
Exposición de ortodoncia extracciones seriadas y guia de erupcionExposición de ortodoncia extracciones seriadas y guia de erupcion
Exposición de ortodoncia extracciones seriadas y guia de erupcionSabina Mungi Castañeda
 
Modelo Estructural de Salvador Minuchin
Modelo Estructural de Salvador MinuchinModelo Estructural de Salvador Minuchin
Modelo Estructural de Salvador MinuchinAura Silva
 
User Interface Design Pattern
User Interface Design PatternUser Interface Design Pattern
User Interface Design PatternRainer Gibbert
 
Organization and Administration in Guidance
Organization and Administration in GuidanceOrganization and Administration in Guidance
Organization and Administration in GuidanceRODELoreto MORALESson
 
Tmu Calculator - first MTM application / MTM Software
Tmu Calculator - first MTM application / MTM SoftwareTmu Calculator - first MTM application / MTM Software
Tmu Calculator - first MTM application / MTM SoftwareCut Corners
 

Andere mochten auch (20)

Acceso a la innovación en el diseño y asistencia financiera a la pequeña y me...
Acceso a la innovación en el diseño y asistencia financiera a la pequeña y me...Acceso a la innovación en el diseño y asistencia financiera a la pequeña y me...
Acceso a la innovación en el diseño y asistencia financiera a la pequeña y me...
 
Ein Strategie für viele Marken - IA Konferenz 2016 - Berlin
Ein Strategie für viele Marken - IA Konferenz 2016 - BerlinEin Strategie für viele Marken - IA Konferenz 2016 - Berlin
Ein Strategie für viele Marken - IA Konferenz 2016 - Berlin
 
Informe urdangarin integro
Informe urdangarin integroInforme urdangarin integro
Informe urdangarin integro
 
User Interface Design Patterns
User Interface Design PatternsUser Interface Design Patterns
User Interface Design Patterns
 
Who evd guidance_lab_14.2_spa
Who evd guidance_lab_14.2_spaWho evd guidance_lab_14.2_spa
Who evd guidance_lab_14.2_spa
 
Impulsreferat ng g gud z versand
Impulsreferat ng g gud z versandImpulsreferat ng g gud z versand
Impulsreferat ng g gud z versand
 
Compliance Anforderungen an Computerisierte Systeme
Compliance Anforderungen an Computerisierte SystemeCompliance Anforderungen an Computerisierte Systeme
Compliance Anforderungen an Computerisierte Systeme
 
Input Selbstgesteuertes Lernen
Input Selbstgesteuertes LernenInput Selbstgesteuertes Lernen
Input Selbstgesteuertes Lernen
 
Brucelosis infecto
Brucelosis infectoBrucelosis infecto
Brucelosis infecto
 
El sector químic – Dagoberto Schmid
El sector químic – Dagoberto Schmid El sector químic – Dagoberto Schmid
El sector químic – Dagoberto Schmid
 
Modelo de CIO del Reino Unido
Modelo de CIO del Reino UnidoModelo de CIO del Reino Unido
Modelo de CIO del Reino Unido
 
Ricard Espelt - EAE
Ricard Espelt - EAERicard Espelt - EAE
Ricard Espelt - EAE
 
Clase prescripcion ejercicio fisico
Clase prescripcion ejercicio fisicoClase prescripcion ejercicio fisico
Clase prescripcion ejercicio fisico
 
Exposición de ortodoncia extracciones seriadas y guia de erupcion
Exposición de ortodoncia extracciones seriadas y guia de erupcionExposición de ortodoncia extracciones seriadas y guia de erupcion
Exposición de ortodoncia extracciones seriadas y guia de erupcion
 
Guidance Services
Guidance ServicesGuidance Services
Guidance Services
 
Modelo Estructural de Salvador Minuchin
Modelo Estructural de Salvador MinuchinModelo Estructural de Salvador Minuchin
Modelo Estructural de Salvador Minuchin
 
User Interface Design Pattern
User Interface Design PatternUser Interface Design Pattern
User Interface Design Pattern
 
Organization and Administration in Guidance
Organization and Administration in GuidanceOrganization and Administration in Guidance
Organization and Administration in Guidance
 
Tmu Calculator - first MTM application / MTM Software
Tmu Calculator - first MTM application / MTM SoftwareTmu Calculator - first MTM application / MTM Software
Tmu Calculator - first MTM application / MTM Software
 
Manejo de conducta
Manejo de conductaManejo de conducta
Manejo de conducta
 

Ähnlich wie Neue Infos rund um WCAG 2.0

3) web development
3) web development3) web development
3) web developmenttechbed
 
Ext Js In Action January 2010 (Meap Edition)
Ext Js In Action January 2010 (Meap Edition)Ext Js In Action January 2010 (Meap Edition)
Ext Js In Action January 2010 (Meap Edition)Goran Kljajic
 
Design And Documentation
Design And DocumentationDesign And Documentation
Design And DocumentationMiles Price
 
Authoring tool accessibility guidelines (ATAG)
Authoring tool accessibility guidelines (ATAG)Authoring tool accessibility guidelines (ATAG)
Authoring tool accessibility guidelines (ATAG)AdhithyaHarshan
 
You Can Take Your HAT Off
You Can Take Your HAT OffYou Can Take Your HAT Off
You Can Take Your HAT OffJeff Haas
 
5. ergonomic of www interface
5. ergonomic of www interface5. ergonomic of www interface
5. ergonomic of www interfaceKh Ravy
 
Accessibility in Practice: Integrating Web Accessibility into Cascade Training
Accessibility in Practice:  Integrating Web Accessibility into Cascade TrainingAccessibility in Practice:  Integrating Web Accessibility into Cascade Training
Accessibility in Practice: Integrating Web Accessibility into Cascade Traininghannonhill
 
Creating Style Guides with Modularity in Mind
Creating Style Guides with Modularity in MindCreating Style Guides with Modularity in Mind
Creating Style Guides with Modularity in MindNadya Rodionenko
 
Four Principles of Accessibility UK Version
Four Principles of Accessibility UK Version Four Principles of Accessibility UK Version
Four Principles of Accessibility UK Version Homer Gaines
 
Navigation Systems
Navigation SystemsNavigation Systems
Navigation SystemsMiles Price
 
Theming Drupal Menus
Theming Drupal MenusTheming Drupal Menus
Theming Drupal MenusMediacurrent
 
Demystifying S-Controls and AJAX
Demystifying S-Controls and AJAXDemystifying S-Controls and AJAX
Demystifying S-Controls and AJAXdreamforce2006
 
Top 10 tips for maximising accessibility - breakfast briefing March 2016
Top 10 tips for maximising accessibility - breakfast briefing March 2016Top 10 tips for maximising accessibility - breakfast briefing March 2016
Top 10 tips for maximising accessibility - breakfast briefing March 2016User Vision
 
User guide
User guideUser guide
User guidefoxyhat
 
Share point 2010-uiimprovements
Share point 2010-uiimprovementsShare point 2010-uiimprovements
Share point 2010-uiimprovementsLiquidHub
 
Web accessibility testing methodologies, tools and tips
Web accessibility testing methodologies, tools and tipsWeb accessibility testing methodologies, tools and tips
Web accessibility testing methodologies, tools and tipsHenny Swan
 
11039 ncs web_4_orientation
11039 ncs web_4_orientation11039 ncs web_4_orientation
11039 ncs web_4_orientationBrad Imotichey
 
What is java script
What is java scriptWhat is java script
What is java scriptsumanbaba_73
 

Ähnlich wie Neue Infos rund um WCAG 2.0 (20)

3) web development
3) web development3) web development
3) web development
 
Ext Js In Action January 2010 (Meap Edition)
Ext Js In Action January 2010 (Meap Edition)Ext Js In Action January 2010 (Meap Edition)
Ext Js In Action January 2010 (Meap Edition)
 
Design And Documentation
Design And DocumentationDesign And Documentation
Design And Documentation
 
Authoring tool accessibility guidelines (ATAG)
Authoring tool accessibility guidelines (ATAG)Authoring tool accessibility guidelines (ATAG)
Authoring tool accessibility guidelines (ATAG)
 
Aria interview questions
Aria interview questionsAria interview questions
Aria interview questions
 
You Can Take Your HAT Off
You Can Take Your HAT OffYou Can Take Your HAT Off
You Can Take Your HAT Off
 
Module 4 EMPOWERMENT TECHNOLOGY
Module 4 EMPOWERMENT TECHNOLOGYModule 4 EMPOWERMENT TECHNOLOGY
Module 4 EMPOWERMENT TECHNOLOGY
 
5. ergonomic of www interface
5. ergonomic of www interface5. ergonomic of www interface
5. ergonomic of www interface
 
Accessibility in Practice: Integrating Web Accessibility into Cascade Training
Accessibility in Practice:  Integrating Web Accessibility into Cascade TrainingAccessibility in Practice:  Integrating Web Accessibility into Cascade Training
Accessibility in Practice: Integrating Web Accessibility into Cascade Training
 
Creating Style Guides with Modularity in Mind
Creating Style Guides with Modularity in MindCreating Style Guides with Modularity in Mind
Creating Style Guides with Modularity in Mind
 
Four Principles of Accessibility UK Version
Four Principles of Accessibility UK Version Four Principles of Accessibility UK Version
Four Principles of Accessibility UK Version
 
Navigation Systems
Navigation SystemsNavigation Systems
Navigation Systems
 
Theming Drupal Menus
Theming Drupal MenusTheming Drupal Menus
Theming Drupal Menus
 
Demystifying S-Controls and AJAX
Demystifying S-Controls and AJAXDemystifying S-Controls and AJAX
Demystifying S-Controls and AJAX
 
Top 10 tips for maximising accessibility - breakfast briefing March 2016
Top 10 tips for maximising accessibility - breakfast briefing March 2016Top 10 tips for maximising accessibility - breakfast briefing March 2016
Top 10 tips for maximising accessibility - breakfast briefing March 2016
 
User guide
User guideUser guide
User guide
 
Share point 2010-uiimprovements
Share point 2010-uiimprovementsShare point 2010-uiimprovements
Share point 2010-uiimprovements
 
Web accessibility testing methodologies, tools and tips
Web accessibility testing methodologies, tools and tipsWeb accessibility testing methodologies, tools and tips
Web accessibility testing methodologies, tools and tips
 
11039 ncs web_4_orientation
11039 ncs web_4_orientation11039 ncs web_4_orientation
11039 ncs web_4_orientation
 
What is java script
What is java scriptWhat is java script
What is java script
 

Mehr von Eric Eggert

DrupalCamp Vienna 2015
DrupalCamp Vienna 2015DrupalCamp Vienna 2015
DrupalCamp Vienna 2015Eric Eggert
 
How to improve your website’s accessibility without going crazy
How to improve your website’s accessibility without going crazyHow to improve your website’s accessibility without going crazy
How to improve your website’s accessibility without going crazyEric Eggert
 
Github introduction for W3C WCAG WG and EOWG
Github introduction for W3C WCAG WG and EOWGGithub introduction for W3C WCAG WG and EOWG
Github introduction for W3C WCAG WG and EOWGEric Eggert
 
How to Learn about accessibility without going crazy #fronteers15
How to Learn about accessibility without going crazy #fronteers15How to Learn about accessibility without going crazy #fronteers15
How to Learn about accessibility without going crazy #fronteers15Eric Eggert
 
New developments in Web Accessibility
New developments in Web AccessibilityNew developments in Web Accessibility
New developments in Web AccessibilityEric Eggert
 
Internet und Webdesign (Historisches Dokument)
Internet und Webdesign (Historisches Dokument)Internet und Webdesign (Historisches Dokument)
Internet und Webdesign (Historisches Dokument)Eric Eggert
 
Vorteile von Webstandards (Historisches Dokument)
Vorteile von Webstandards (Historisches Dokument)Vorteile von Webstandards (Historisches Dokument)
Vorteile von Webstandards (Historisches Dokument)Eric Eggert
 
Internet-Geschichte und Webtechnologie (Historisches Dokument)
Internet-Geschichte und Webtechnologie (Historisches Dokument)Internet-Geschichte und Webtechnologie (Historisches Dokument)
Internet-Geschichte und Webtechnologie (Historisches Dokument)Eric Eggert
 
Fehler im Webdesign (Historisches Dokument)
Fehler im Webdesign (Historisches Dokument)Fehler im Webdesign (Historisches Dokument)
Fehler im Webdesign (Historisches Dokument)Eric Eggert
 
How I stopped worrying and learned to love with defaults – with Notes
How I stopped worrying and learned to love with defaults – with NotesHow I stopped worrying and learned to love with defaults – with Notes
How I stopped worrying and learned to love with defaults – with NotesEric Eggert
 
How I stopped worrying and learned to love with defaults — Without notes
How I stopped worrying and learned to love with defaults — Without notesHow I stopped worrying and learned to love with defaults — Without notes
How I stopped worrying and learned to love with defaults — Without notesEric Eggert
 
Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...
Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...
Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...Eric Eggert
 
Fronteers Jam Session: Principles of Accessible Web Design
Fronteers Jam Session: Principles of  Accessible Web DesignFronteers Jam Session: Principles of  Accessible Web Design
Fronteers Jam Session: Principles of Accessible Web DesignEric Eggert
 
Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01
Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01
Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01Eric Eggert
 
Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...
Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...
Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...Eric Eggert
 
Webtech ’09 – Die Zukunft des Webs beginnt jetzt
Webtech ’09 – Die Zukunft des Webs beginnt jetztWebtech ’09 – Die Zukunft des Webs beginnt jetzt
Webtech ’09 – Die Zukunft des Webs beginnt jetztEric Eggert
 
Nutze die Macht @ IKT-Forum 09 Linz
Nutze die Macht @ IKT-Forum 09 LinzNutze die Macht @ IKT-Forum 09 Linz
Nutze die Macht @ IKT-Forum 09 LinzEric Eggert
 

Mehr von Eric Eggert (20)

ARIA Serious
ARIA SeriousARIA Serious
ARIA Serious
 
What is EOWG?
What is EOWG?What is EOWG?
What is EOWG?
 
What is EOWG?
What is EOWG?What is EOWG?
What is EOWG?
 
DrupalCamp Vienna 2015
DrupalCamp Vienna 2015DrupalCamp Vienna 2015
DrupalCamp Vienna 2015
 
How to improve your website’s accessibility without going crazy
How to improve your website’s accessibility without going crazyHow to improve your website’s accessibility without going crazy
How to improve your website’s accessibility without going crazy
 
Github introduction for W3C WCAG WG and EOWG
Github introduction for W3C WCAG WG and EOWGGithub introduction for W3C WCAG WG and EOWG
Github introduction for W3C WCAG WG and EOWG
 
How to Learn about accessibility without going crazy #fronteers15
How to Learn about accessibility without going crazy #fronteers15How to Learn about accessibility without going crazy #fronteers15
How to Learn about accessibility without going crazy #fronteers15
 
New developments in Web Accessibility
New developments in Web AccessibilityNew developments in Web Accessibility
New developments in Web Accessibility
 
Internet und Webdesign (Historisches Dokument)
Internet und Webdesign (Historisches Dokument)Internet und Webdesign (Historisches Dokument)
Internet und Webdesign (Historisches Dokument)
 
Vorteile von Webstandards (Historisches Dokument)
Vorteile von Webstandards (Historisches Dokument)Vorteile von Webstandards (Historisches Dokument)
Vorteile von Webstandards (Historisches Dokument)
 
Internet-Geschichte und Webtechnologie (Historisches Dokument)
Internet-Geschichte und Webtechnologie (Historisches Dokument)Internet-Geschichte und Webtechnologie (Historisches Dokument)
Internet-Geschichte und Webtechnologie (Historisches Dokument)
 
Fehler im Webdesign (Historisches Dokument)
Fehler im Webdesign (Historisches Dokument)Fehler im Webdesign (Historisches Dokument)
Fehler im Webdesign (Historisches Dokument)
 
How I stopped worrying and learned to love with defaults – with Notes
How I stopped worrying and learned to love with defaults – with NotesHow I stopped worrying and learned to love with defaults – with Notes
How I stopped worrying and learned to love with defaults – with Notes
 
How I stopped worrying and learned to love with defaults — Without notes
How I stopped worrying and learned to love with defaults — Without notesHow I stopped worrying and learned to love with defaults — Without notes
How I stopped worrying and learned to love with defaults — Without notes
 
Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...
Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...
Neue aufregende Web Technologien, HTML5 + CSS3 anhand von Praxisbeispielen le...
 
Fronteers Jam Session: Principles of Accessible Web Design
Fronteers Jam Session: Principles of  Accessible Web DesignFronteers Jam Session: Principles of  Accessible Web Design
Fronteers Jam Session: Principles of Accessible Web Design
 
Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01
Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01
Accessibility 101 @ Webmontag Frankfurt Ignite, 2010-03-01
 
Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...
Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...
Webmontag Frankfurt 18.01.2010 — Beyond Borders and Boxes – Fortgeschrittene ...
 
Webtech ’09 – Die Zukunft des Webs beginnt jetzt
Webtech ’09 – Die Zukunft des Webs beginnt jetztWebtech ’09 – Die Zukunft des Webs beginnt jetzt
Webtech ’09 – Die Zukunft des Webs beginnt jetzt
 
Nutze die Macht @ IKT-Forum 09 Linz
Nutze die Macht @ IKT-Forum 09 LinzNutze die Macht @ IKT-Forum 09 Linz
Nutze die Macht @ IKT-Forum 09 Linz
 

Kürzlich hochgeladen

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 

Kürzlich hochgeladen (20)

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 

Neue Infos rund um WCAG 2.0

  • 1. Neue Infos rund um WCAG 2.0Neue Infos rund um WCAG 2.0Neue Infos rund um WCAG 2.0Neue Infos rund um WCAG 2.0 Eric Eggert, W3C/WAI, @yatil, w3.org/People/yatil
  • 4. KonzepteKonzepte Why is this important? Related WCAG 2.0 resources Technologies covered in this Tutorial: CSS Fonts CSS Transforms HTML5 MathML WAI-ARIA Images must have text alternatives that describe the information or function represented by the images. This ensures that images can be used by people with various disabilities. This tutorial demonstrates how to provide appropriate text alternatives based on the purpose of the image: Informative images: Images that graphically represent concepts and information, typically pictures, photos and illustrations. The text alternative should be at least a short description conveying the essential information presented by the image. Decorative images: Provide a null text alternative ( alt="") when the only purpose of an image is to add visual decoration to the page, rather than to convey information that is important to understanding the page. Functional images: The text alternative of an image used as a link or as a button should describe the functionality of the link or button rather than the visual Tutorials home Images Images Concepts 1 2 3 4 5 6 7 This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/. Web Accessibility Tutorials Guidance on how to create websites that meet WCAG Images Concepts On this page Images Tutorial Images Concepts Informative Images Decorative Images Functional Images Images of Text Complex Images Groups of Images Image Maps An alt Decision Tree Tips and Tricks All Tutorials Page Structure DRAFT Menus DRAFT Images Tables
  • 5. GrundStrukturGrundStruktur Associating labels explicitly Hiding label text Approach 1: Hiding the label element Approach 2: Using aria-label Approach 3: Using the title attribute Note on hiding elements Associating labels implicitly Labelling buttons Visual position of label text Related WCAG 2.0 resources Provide labels to identify all form controls, including text fields, checkboxes, radio buttons, and drop-down menus. In most cases this is done by using the <label> element. Labels need to describe the purpose of the form control. This section of the tutorial describes how to provide labels that are properly associated with form controls. Later sections explain how to provide instructions, validate user input, and provide feedback to help users complete your form. A label and a form control need to be associated with each other either implicitly or explicitly. Web browsers provide the label as a larger clickable area, for example, to select or activate the control. It also ensures that assistive technology is able to refer to the correct label when presenting a form control. Associating labels explicitly Whenever possible, use the label element to explicitly associate text with form elements. The for attribute of the label must exactly match the id of the form control. EXAMPLE: First name: Subscribe to newsletter CODE SNIPPET: HTML <label for="firstname">First name:</label> <input type="text" name="firstname" id="firstname"><br> <input type="checkbox" name="subscribe" id="subscribe"> <label for="subscribe">Subscribe to newsletter</label> Hiding label text Tutorials home Forms Labeling Controls 1 2 3 4 5 6 7 This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/. Web Accessibility Tutorials Guidance on how to create websites that meet WCAG Labeling Controls On this page Forms Tutorial Forms Concepts Labeling Controls Grouping Controls Form Instructions Validating Input User Notifications Multi-page Forms Custom Controls All Tutorials Page Structure DRAFT Menus DRAFT Images Tables Forms Carousels DRAFT SHARE SHARE
  • 6. StylingStyling Vertical menu Horizontal menu Styling menu items Menu feedback Related WCAG 2.0 resources With a consistent styling users are able to find menus more easily. There are two basic design patterns that are commonly used on web sites: vertical and horizontal menus. Regardless of the orientation, each menu item should have enough space so it doesn’t overlap other content on the page or gets cut off. Such items are a potential accessibility barrier, especially for users increasing the font size and can also be a problem when translating the menu into another language. Try to avoid line breaks or hyphenation in menu items as they are harder to understand. Vertical menu Ensure that the menu column is wide enough to accommodate all current and future menu items. EXAMPLE: Home Shop SpaceBears MarsCars Contact Horizontal menu Horizontal menus should be positioned near the top of the screen so they are easier to find. EXAMPLE: Tutorials home Menus Menu Styling 1 2 3 4 This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/. Web Accessibility Tutorials Guidance on how to create websites that meet WCAG [APPROVED DRAFT] Menu Styling On this page SHARE SHARE Menus Tutorial Menu Concepts Structure Styling Fly-out Menus Applications Menus All Tutorials Page Structure DRAFT Menus DRAFT Images Tables Forms Carousels DRAFT
  • 7. Funktionalität eines KarussellsFunktionalität eines Karussells Position slides Adding previous and next buttons Announcing slides Items navigation Focusing carousel items Putting it all together Related WCAG 2.0 resources Carusels display the one content item at a time while hiding the others. They allow users to browse through them. Position slides If the JavaScript is enabled, a class active is added to the carousel region so we can distinguish between that state and the non-JavaScript fallback. The slides are positioned absolutely in the carousel, and the current slide is positioned frontmost using z-index. CODE SNIPPET: .active .slide { display: none; position: absolute; top: 0; left: 0; border: none; } .slide.current { display: block; z-index: 500; } The outcome looks like this: EXAMPLE: Featured Articles: Tutorials home Carousels Functionality Status: This is not ready for detailed review. It is an in-progress, unapproved editor’s draft. 1 2 3 This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/. Web Accessibility Tutorials Guidance on how to create websites that meet WCAG [ROUGH DRAFT] Functionality On this page SHARE Carousels Tutorial Carousel Concepts Structure Functionality Animations Complete code example All Tutorials Page Structure DRAFT Menus DRAFT Images Tables Forms Carousels DRAFT
  • 8. menüs für Anwendungenmenüs für Anwendungen EXAMPLE: Web application menus use the same basic structure as navigation menus: They often consist of a horizontal menu bar and use fly-out functionality. Some additional WAI-ARIA roles help users with assistive technology to operate those menus in a way that is similar to the way they use menus in desktop software. When using those roles, the keyboard interaction should be similar to desktop software as well: the tab key is used to iterate through the top-level items only, the up and down arrows are used to navigate the sub menus. Note that the keyboard behavior is not automatically changed when adding those roles, but needs to be added using scripting. A detailed explanation on the WAI-ARIA attributes and keyboard behavior can be found in the WAI-ARIA Authoring Practices document (draft) . In addition to the aria-expanded and aria-haspopup attributes, the following roles are used in the example: menubar: Represents a (usually horizontal) menu bar. menu: Represents a set of links or commands in a menu bar, it is used for the fly-out menus. menuitem: Represents an individual menu item. The markup has no links at all: It is a nested list with WAI-ARIA roles as the application would be non-functional without JavaScript available anyway. Tutorials home Menus Web Application Menus 1 2 3 4 This is an Editor’s draft, for preview purposes only. Please see, and link to, released tutorials at w3.org/WAI/tutorials/. Web Accessibility Tutorials Guidance on how to create websites that meet WCAG [APPROVED DRAFT] Web Application Menus File Edit Format View Help Menus Tutorial Menu Concepts Structure Styling Fly-out Menus Applications Menus All Tutorials Page Structure DRAFT Menus DRAFT Images Tables Forms Carousels DRAFT
  • 10.
  • 12. Tips for Getting StartedTips for Getting Started with Web Accessibilitywith Web Accessibility
  • 13. Tips for getting startedTips for getting started
  • 14. Tips for getting startedTips for getting started Designing Writing Developing http://w3c.github.io/wai-quick-start/
  • 17. Evaluation Tools ListEvaluation Tools List https://www.w3.org/WAI/ER/tools/
  • 19. WCAG-EM Report ToolWCAG-EM Report Tool WCAG-EM Report Tool Website Accessibility Evaluation Report Generator This tool helps you generate a report according to the Website Accessibility Conformance Evaluation Methodology (WCAG-EM). It does not perform any accessibility checks. It helps you follow the steps of WCAG-EM, to generate a structured report from the input that you provide. It is designed for experienced evaluators who know Web Content Accessibility Guidelines (WCAG) 2.0 and are somewhat familiar with WCAG-EM. For an introduction to WCAG-EM, see the WCAG-EM Overview. Note: This tool does not automatically save the information that you enter. To save your data in a file locally on your computer, use Windows shortcut keys Ctrl+S or Mac shortcut keys ⌘S to open the Save dialog. (Or the 'Save' link at the top of the page will open the Save Evaluation Report page and from there the 'Save data file locally to your computer' link will open the Save dialog.) How this tool works Tips for using this tool Feedback: We welcome ideas, bug reports, and comments via GitHub or e-mail to wai-eo-editors@w3.org (a publicly archived list) or wai@w3.org (a WAI staff-only list). Status: Version 1.0, 26 Febuary 2015 Development Team: Shadi Abou-Zahra, W3C/WAI (Project Lead) and Wilco Fiers, accessibility.nl (Design and development). Contributors: Shawn Lawton Henry and the Education and Outreach Working Group. Developed with support from the WAI-ACT Project, a project of the European Commission IST Programme. [WAI Site Map] [Help with WAI Website] [Search] [Contacting WAI] Copyright © 2014 W3C (MIT, ERCIM, Keio, Beihang) Usage policies apply. New Report Open Save Key Resources Start 1. Define Scope 2. Explore Website 3. Select Sample 4. Audit Sample 5. Report Findings View Report   Next step: Define Scope  ®
  • 20. WCAG-EM Report ToolWCAG-EM Report Tool http://www.w3.org/WAI/eval/report-tool/#/
  • 22. Heute:Heute: http://www.w3.org/WAI/WCAG20/quickref/ Customize this Quick Reference Technologies: Show HTML techniques and failures Show CSS techniques and failures Show SMIL techniques and failures Show Client-side Scripting techniques and failures Show Server-side Scripting techniques and failures Show Flash techniques and failures Show PDF techniques and failures Show Silverlight techniques and failures Show WAI-ARIA techniques and failures Levels: Show Level A Success Criteria Show Level AA Success Criteria Show Level AAA Success Criteria Sections: Show Sufficient Techniques and Failures Show Advisory Techniques Save Settings Option: Save these settings (requires cookies) Customize with Settings Above How to Meet WCAG 2.0 A customizable quick reference to Web Content Accessibility Guidelines 2.0 requirements (success criteria) and techniques Introduction [Hide Introduction] This web page can be used as a checklist for WCAG 2.0. It provides: All of the requirements (called "success criteria") from Web Content Accessibility Guidelines (WCAG) 2.0 Techniques to meet the requirements, which are linked to pages with descriptions, code examples, browser and assistive technology support notes, and tests. Failures to avoid, which are linked to pages with descriptions, examples, and tests. "Understanding" links to pages that explain the intent of the guideline or success criterion, how it helps people with different disabilities, key terms, and resources. You can customize what is included in this page by selecting from the Customize this Quick Reference section which Technologies, Levels of success criteria, and Sections of techniques you want to include. For an introduction to WCAG, Techniques, and Understanding documents, see the WCAG Overview. Note that even content that conforms at the highest level (AAA) will not be accessible to individuals with all types, degrees, or combinations of disability, particularly in the cognitive language and learning areas. Authors are encouraged to seek relevant advice about current best practice to ensure that Web content is accessible, as far as possible, to this community. About the Techniques For important information about the techniques, please see the Understanding Techniques for WCAG Success Criteria section of Understanding WCAG 2.0. Note: The basis for determining conformance to WCAG 2.0 is the success criteria, not the techniques. (The success criteria have 3-level numbering (0.0.0) and in this page they are followed by a link "Understanding Success Criterion".) All techniques are informative; that means they are not required. There may be other techniques besides the ones listed here. New Techniques and Comments The Techniques for WCAG 2.0 document is updated periodically, and anyone can submit techniques that will be considered for inclusion in an update. Please submit corrections, updates, or new information related to techniques, failures, or other WCAG documentation to the WCAG Working Group, per the instructions for commenting.
  • 23. In Zukunft:In Zukunft: http://w3c.github.io/wai-wcag-quickref/ Status: This is an incomplete rough mockup of a redesign. The published version of the How to Meet WCAG 2.0 quick reference is at: www.w3.org/WAI/WCAG20/quickref/ More [Mockup] How to Meet WCAG 2.0 A customizable quick reference to Web Content Accessibility Guidelines 2.0 requirements (success criteria) and techniques About this Quick Reference Principle 1 – Perceivable Information and user interface components must be presentable to users in ways they can perceive. 1.1 Text Alternatives Provide text alternatives for any non-text content so that it can be changed into other forms people need, such as large print, braille, speech, symbols or simpler language. 1.1.1 Non-text Content — Level A All non-text content that is presented to the user has a text alternative that serves the equivalent purpose, except for the situations listed below. Show full description Understanding 1.1.1 BACK TO TOP 1.2 Time-based Media Provide alternatives for time-based media. 1.2.1 Audio-only and Video-only (Prerecorded) — Level A For prerecorded audio-only and prerecorded video-only media, the following are true, except when the audio or video is a media alternative for text and is clearly labeled as such: Show full description Understanding 1.2.1 BACK TO TOP 1.2.2 Captions (Prerecorded) — Level A HideContents Filter 1.1 Text Alternatives 1.1.1 Non-text Content 1.2 Time-based Media 1.2.1 Audio-only and Video-only (Prerecorded) 1.2.2 Captions (Prerecorded) 1.2.3 Audio Description or Media Alternative (Prerecorded) 1.2.4 Captions (Live) 1.2.5 Audio Description (Prerecorded) 1.2.6 Sign Language (Prerecorded) 1.2.7 Extended Audio Description (Prerecorded) 1.2.8 Media Alternative (Prerecorded) 1.2.9 Audio-only (Live) 1.3 Adaptable 1.3.1 Info and Relationships 1.3.2 Meaningful Sequence 1.3.3 Sensory Characteristics 1.4 Distinguishable 1.4.1 Use of Color 1.4.2 Audio Control 1.4.3 Contrast (Minimum) 1.4.4 Resize text 1.4.5 Images of Text 1.4.6 Contrast (Enhanced) 1.4.7 Low or No Background Audio 1. Perceivable Show techniques for 1.1 SHARE Show techniques for 1.1.1 SHARE Show techniques for 1.2.1 SHARE Showing all success criteria and all techniques. Link to this view
  • 24. WCAG 2.0:WCAG 2.0: Stabiler StandardStabiler Standard
  • 26. WCAG 2.0:WCAG 2.0: Neue InitiativenNeue Initiativen
  • 27. Mobile AccessibilityMobile Accessibility task forcetask forceWCAG WG & UAWG http://www.w3.org/WAI/GL/mobile-a11y-tf/
  • 28. Mobile Accessibility: How WCAG 2.0 andMobile Accessibility: How WCAG 2.0 and Other W3C/WAI Guidelines Apply to MobileOther W3C/WAI Guidelines Apply to Mobile Mobile Accessibility: How WCAG 2.0 and Other W3C/WAI Guidelines Apply to Mobile W3C First Public Working Draft 26 February 2015 This version: http://www.w3.org/TR/2015/WD-mobile-accessibility-mapping-20150226/ Latest published version: http://www.w3.org/TR/mobile-accessibility-mapping/ Latest editor's draft: http://w3c.github.io/Mobile-A11y-TF-Note/ Editors: Kim Patch, Redstart Systems Jeanne Spellman, W3C Kathy Wahlbin, Interactive Accessibility Copyright © 2015 W3C® (MIT, ERCIM, Keio, Beihang). W3C liability, trademark and document use rules apply. Abstract This document, “Mobile Accessibility: How WCAG 2.0 and Other W3C/WAI Guidelines Apply to Mobile” describes how the Web Content Accessibility Guidelines (WCAG) 2.0 [WCAG20] and its principles, guidelines, and success criteria can be applied to mobile web content, mobile web apps, native apps, and hybrid apps using web components inside native apps. It provides informative guidance, but does not set requirements. It also highlights the relevance of the User Agent Accessibility Guidelines 2.0 [UAAG20] in the mobile context. This document is intended to become a Working Group Note and is part of a series of technical and educational documents published by the W3C Web Accessibility Initiative (WAI). Status of This Document This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/. This document is a First Public Working Draft by the Mobile Accessibility Task Force (Mobile A11Y TF) operating under the terms of its Work Statement under the joint coordination and review of the Web Content Accessibility Guidelines Working Group (WCAG WG) and the User Agent Accessibility Guidelines Working Group (UAWG), which is part of the Web Accessibility Initiative (WAI) of the World Wide Web Consortium (W3C). This document is intended to become a W3C Note. Feedback on this draft is essential to the success of this guidance. The Mobile Accessibility Task Force asks in particular: 1. Is this document helpful in understanding the applicability of WCAG 2.0 and UAAG 2.0 to the mobile environment? 2. Is the format of this information helpful for designers, developers and testers of content that can be viewed with mobile devices and in mobile apps? Is it useful for policymakers? 3. In Appendix A, is listing relevant existing WCAG 2.0 techniques helpful for mobile content and mobile app developers? 4. Are there additional accessibility needs in the mobile environment related to the WCAG principles that we should address?
  • 29. Cognitive and Learning DisabilitiesCognitive and Learning Disabilities Accessibility Task ForceAccessibility Task Force PFWG & WCAG WG http://www.w3.org/WAI/PF/cognitive-a11y-tf/
  • 30. Low vision AccessibilityLow vision Accessibility task forcetask force „in Diskussion“ http://www.w3.org/WAI/GL/low-vision-a11y-tf/
  • 31. NormativeNormativeNormativeNormative WCAG 2.0WCAG 2.0 ErweiterungenErweiterungen
  • 32. ATAG 2.0ATAG 2.0 One more thing…One more thing…
  • 34. ATAG hilft WCAGATAG hilft WCAG zu erreichenzu erreichen