Web Accessibility Essentials

Size: px
Start display at page:

Download "Web Accessibility Essentials"

Transcription

1 Web Accessibility Essentials 2017 Presentation More accessible. More usable. More people.

2 Purpose and Audience This training is intended to be an accessibility guide for those creating and managing digital web content, with the ultimate goal of creating the most accessible and usable content for all users, regardless of their individual abilities. The information provided in this document is based on international guidelines provided by the World Wide Web Consortium (W3C). More accessible. More usable. More people. 2

3 About WCAG 2.0 The Web Content Accessibility Guidelines cover a wide range of recommendations and best practices that designers, developers, and accessibility stakeholders should follow in order to make web content more accessible. The guidelines include a technology-agnostic list of testable statements that, when followed, ensure a high degree of access to the largest possible audience of consumers of the content. For those interested in gaining a more comprehensive understanding of the Web Content Accessibility Guidelines published by the World Wide Web Consortium (W3C), the full text of the WCAG 2.0 is published here: More accessible. More usable. More people. 3

4 Skip to Main Content Link A standard practice for all accessible websites is to provide users with a simple link to quickly bypass header and navigation information and jump directly into the main content of a page. Recommendation(s): This link should be the first focusable element on the page and adhere to color contrast specifications. Code example <body><a href="#main">skip to Main Content</a> Why its important Keyboard Navigation: not all users rely on the mouse for navigation. When navigating using key commands, having quick access to bypass navigation links makes for a much more efficient user experience. Who does this impact? More accessible. More usable. More people. 4

5 Color Contrast Not all users are able to distinguishing one color from another. Recommendation(s): Don t use color as the only visual means of conveying information. Instead, color should be used to highlight or complement what is already visible. Ensure sufficient contrast between the text/images and the background Helpful Tip Tool for checking the contrast between two colors: contrastchecker/ You will need the hex codes for the each of the colors. After you enter the colors, it calculates the contrast ratio. It then uses that value to determine if the ratio passes or fails the standards for WCAG AA Normal Text and Large Text. Believe it or Not Who does this impact? 1 in 12 men, 1 in 200 women are red-green color blind in some way or another, whether it is one color, a color combination, or another mutation. More accessible. More usable. More people. 5

6 Color Contrast (Continued) Believe it or Not 1 in 12 men, 1 in 200 women are red-green color blind in some way or another, whether it is one color, a color combination, or another mutation. More accessible. More usable. More people. 6

7 Keyboard/Tab Visible Focus All focusable elements (interactive elements) must use additional visual cues/ indictors on focus for links or controls where color alone is used to identify them. Providing visual focus indication for keyboard focus is imperative. Recommendation(s): Use focus and blur events on checkboxes and radio buttons to change the styling of not only the form control, but also the label text to make it easier to see. Recommend creating a border around the interactive element and its label, typically using the CSS border or outline properties Use the a:focus style for a:hover and depending on the situation even a:active; Helpful hints Use a combination of highly contrasting color, a thick line, and other visual indicators such as glow. Must adhere to color contrast rules. A visual cue/ indicator can be an underline (highly recommended for links), bold, italic or increase in font size or it can be the addition of a glyph or images. Who does this impact? If you remove default focus (i.e. :focus {outline: 0;}), you MUST replace it with a custom accessible focus and hover state More accessible. More usable. More people. 7

8 Form Elements Highly interactive elements like forms need special attention to ensure that they Did you know? are accessible to all users. If not coded properly, web forms can create keyboard traps for screen readers, creating an endless loop that leads to an unfair and frustrating user experience. Such errors are completely avoidable. Recommendation(s): All form elements need a label. The label-for attribute should be applied to all labels linking them to the id of the form input they label. The placeholder attribute for an input is NOT an accessible alternative to a label. All form elements and their associative labels should have a unique ID. While web standards dictate that all ID s be unique, it is extremely important that this is the case to ensure accessible forms. More accessible. More usable. More people. Who does this impact? 8

9 Form Elements (Continued) Recommendation(s): Tab indexes should be applied to all form elements so that keyboard only users can navigate a form without having to rely on a mouse. If required inputs are present, follow one of the options, below: Add (required) to the visible label for each required input, i.e. First Name (required). This is the preferred method to communicate required input fields to all users and does not require additional steps. If majority of the input fields are required, add a statement to the top of the form that states, All input fields are required unless marked as optional. Then, add optional to the visible label for each optional input field, i.e. Comments (optional). In addition, add aria-required= true to all required input fields. This is a second option if the first option is not followed. If above options are not used and required input fields currently have an asterisk*, add a statement at the top of the form that states "Fields marked with asterisk * are required. In addition, add aria-required= true to all required input fields. More accessible. More usable. More people. 9

10 Timed Content Content that moves, scrolls or blinks must be stoppable and safe Recommendation(s): Add pause/resume controls to auto-scrolling carousels Provide untimed options where timed responses are generally required (i.e. Quizzes) Avoid flashing content Did you know? For about 3 percent of people with epilepsy, exposure to flashing lights at certain intensities or to certain visual patterns can trigger seizures. This condition is known as photosensitive epilepsy.... They could just have seizures triggered by certain photic conditions. About 2.5 Million to 3 Million people in the U.S. have epilepsy. Who does this impact? More accessible. More usable. More people. 10

11 Images and Graphics One of the most critical issues when publishing web content is to ensure that there is an adequate text representation of all images and graphics present on the page. The rules around handling these images depend on the type, purpose, and complexity of the image. Think about it For all intents and purposes, failing to properly describe images is no different than publishing a fully transparent image for a visual person. To further illustrate the point, we ve included an invisible graphic directly above this paragraph. Now imagine if this image conveyed a profound description only screen reader users could hear. Who does this impact? More accessible. More usable. More people. 11

12 Decorative Images Decorative images are defined as any image that is used for display purposes only, one that does not add value to the content of the page. These may be background patterns, decorative borders, or horizontal separators. Recommendation(s): Apply a null alt attribute to the image. Add the aria role of presentation to the image tag. Add the aria-hidden attribute to the image and set it s state to true Code example <img src="desert-sunset.png" alt=" role= presentation aria-hidden= true > More accessible. More usable. More people. 12

13 Non-Decorative Images Non-Decorative images are defined as any image that is used to enhance the content and add value or information to the page. Most images on webpage fall into this category. Recommendation(s): All images should contain the alternative text (alt) attribute. If the images is linked, the alternative text should inform the user of the link destination. If there is space, a brief image description can follow the link destination text, but is not necessary. An image s alt attribute should contain a clear textual representation of the non-text content. If there is text present in the image, that text should appear in the alt attribute. More accessible. More usable. More people. 13

14 Non-Decorative Images (Continued) An image s alt attribute should be descriptive, but brief. If it requires more than 125 characters (excluding spaces) to describe an image, then the a long description should be used in conjunction with the alt attribute. Did you know? SEO Benefits too. Good alt text also provides the added benefit of increasing your site s traffic through image-based SEO results. Code example <img src="dog-bone.png" alt= Dog burying a bone"> More accessible. More usable. More people. 14

15 Complex Images & Long Description Generally, images in this category include graphs, diagrams, maps, or charts that relay detailed information/data where the use of alt text alone is insufficient or does not adequately convey the information being supplied, visually. Recommendation(s): Display long descriptions, inline, next to or adjacent to the image requiring detailed descriptions. ALT = "Velocity profile of laminar flow in a pipe. Long Description Used This diagram shows fluid flowing through a pipe along the x-axis in parallel layers with minimal disruption. Velocity arrows are shorter on the edges, representing a slower velocity vx and longer in the center, representing a faster More accessible. More usable. More people. 15

16 Images and Graphics (Decision Tree) More accessible. More usable. More people. 16

17 Headers Users of assistive technologies often rely on header elements to gain an understanding of the outline and regions of a web page. For this reason it is important to use headers as they were originally intended, which is to convey the hierarchical flow of the content, and not to use them as a means to style the display of information. Recommendation(s): Paragraph tags should not be used as headers Headers should not be used to establish or fortify vertical spacing. Headers should be used in their standard hierarchal flow. h1 tags should be used first followed by h2 for sub-sections with h3 for further subdivisions, and so on. Headers should not skip levels. Who does this impact? Headers should not be used to style elements, but rather to convey the information present on the page. More accessible. More usable. More people. 17

18 Headers (Continued) Recommendation(s) (Continued): If you wish to use heading elements for style purposes only, you can apply role= presentation to the heading element. Example: <h4 role= presentation >This test is a heading for purely style purposes and is not a proper heading</h4> To change a current headings level or to turn any other style of element into a heading of the specified level, add role= heading and aria-level= #, where the # is the correct heading level. More accessible. More usable. More people. 18

19 Anchors and Links Like Headers, users of Assistive Technologies regularly use hot keys to quickly list all of the anchor tags that exist on the page. This quick navigation through anchors helps a user understand the additional information that is available from the page. For this reason it is extremely important to ensure that anchors contain descriptive and pertinent information. Recommendation(s): Don t rely only on images inside of anchors. Use either text to supplement the image or use a <span> tag inside the anchor that describes the link action, and then use CSS to visually position the span outside of the viewport. Who does this impact? Don t rely on the anchor title attribute. Assistive technologies will only read anchor titles when there is no text present. More accessible. More usable. More people. 19

20 Anchors and Links (Continued) Avoid ambiguous text within the anchor. Click here or Read more are not helpful links when the context of the link is unknown. Join adjacent links that navigate to the same location. For example if an image and a text link both go to the same location don't use two different links, instead combine both the image and text in the same anchor. Code examples Think about it Design and Develop with Empathy. Screen readers often navigate a webpage by tabbing from link to link or by using a keyboard short cut to pull up a list of all the links available on the page. This helps them quickly get to and understand the content they are looking for. <a href="/bulldogs">history of Bulldogs</a> Standard link <a href="/natural-treats"><img src=/happy-dognatural-treats.png alt="">all Natural Dog Treats</ a> Combined adjacent image and link (avoid duplicate description) More accessible. More usable. More people. 20

21 Tables In the modern fluid web, tables should no longer be used for layout purposes. Instead, tables should only be used to present tabular data. Recommendation(s): Use table headers to categorize information. Be sure to use <th> tags to define headers so the information in each of the table cell is associated with the appropriate header description. Use the scope attribute to associate table headers with a row or column:<th scope= col > or <th scope= col > Rather than use a header to title a table, add a styled <caption> element to Who does this impact? the table. This will associate the intent of the information with the table. More accessible. More usable. More people. 21

22 Did you know? Frames Framed-in content is traditionally very difficult for users of assistive technology to interact with, and it should be avoided whenever possible. However in cases where cannot be avoided, such as social, advertising, or tracking content, best practices would dictate that the frame have a title attribute so that a user of assistive technology can be made aware of the content within the frame. Code example <frameset cols="10%, 90%"> <frame src="nav.html" title="main menu" /> More accessible. More usable. More people. Conforming to the WCAG 2.0 AA Standard includes 3rd Party Content. If vendor supplied information/services are not accessible, Statements of Partial Conformance should detail the specifics to inform end-users until the inaccessible content is either remediated or replaced with an accessible alternative. See the W3C resource for Understanding WCAG 2.0 Conformance: UNDERSTANDING-WCAG20/ conformance.html Who does this impact? 22

23 Abbreviations Whenever an abbreviation appears in text it should be wrapped in an <abbr> tag, this will allow assistive technologies to read/display the abbreviated words rather than attempt to convert the abbreviation into an unintelligible word. Code example <abbr title="world Health Organization">WHO</abbr> More accessible. More usable. More people. Who does this impact? 23

24 Language Attribute In order to provide users of assistive technologies, specifically screen reader users, with the best possible reader experience, it is important to apply a language attribute to content on a page. The attribute should contain the ISO language code of the language of the content on the page. This attribute can be applied to any block-level html element, and can be applied to multiple elements on a single pages if multiple languages are present on the page. If all page content is in a single language, standard practice recommends placing the language attribute in the html tag. Who does this impact? Code example <html lang= en"> More accessible. More usable. More people. 24

25 Q&A More accessible. More usable. More people. 25

26 Thank You AudioEye, Inc E Williams Circle, Suite 750 Tucson, Arizona AudioEye, Inc. AudioEye is a Registered Trademark of AudioEye, Inc. All Rights Reserved. More accessible. More usable. More people. 26

Web Accessibility Checklist

Web Accessibility Checklist Web Accessibility Checklist = Web Content Accessibility Guidelines published by the World Wide Web Consortium (W3C) 508 = Section 508 of the Rehabilitation Act = Both CATE and Moodle take care of the rule

More information

Salesforce1 - ios App (Phone)

Salesforce1 - ios App (Phone) Salesforce1 - ios App (Phone) Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) This Voluntary Product Accessibility Template, or VPAT, is a tool that

More information

YuJa Enterprise Video Platform WCAG 2.0 Checklist

YuJa Enterprise Video Platform WCAG 2.0 Checklist Platform Accessibility YuJa Enterprise Video Platform WCAG 2.0 Checklist Updated: December 15, 2017 Introduction YuJa Corporation strives to create an equal and consistent media experience for all individuals.

More information

FAO Web Content Accessibility Guidelines

FAO Web Content Accessibility Guidelines FO Web Content ccessibility Guidelines FO s ccessibility Guidelines have been derived from the W3C s Web Content ccessibility Guidelines (WCG), version 2.0, which have become an established standard for

More information

WCAG 2.0 Checklist. Perceivable Web content is made available to the senses - sight, hearing, and/or touch. Recommendations

WCAG 2.0 Checklist. Perceivable Web content is made available to the senses - sight, hearing, and/or touch. Recommendations WCAG 2.0 Checklist Perceivable Web content is made available to the senses - sight, hearing, and/or touch Guideline 1.1 Text Alternatives: Provide text alternatives for any non-text content Success Criteria

More information

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Marketplace Simulations Date: September 20, 2017 Contact information:

More information

Salesforce Lightning Experience Analytics (Dashboard and Reports)

Salesforce Lightning Experience Analytics (Dashboard and Reports) (Dashboard and Reports) Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) April 2017 This Voluntary Product Accessibility Template, or VPAT, is a tool

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Creating Accessible Word Documents 1 of 11 Creating Accessible Word Documents Contents 1. General principles... 1 2. Styles/ Headings... 2 3. Table of Contents... 3 Updating a Table of Contents... 5 4.

More information

Guideline 1.2 Time-based Media: Provide alternatives for time-based media Success Criteria Recommendations Met

Guideline 1.2 Time-based Media: Provide alternatives for time-based media Success Criteria Recommendations Met Perceivable Web content is made available to the senses - sight, hearing, and/or touch Guideline 1.1 Text Alternatives: Provide text alternatives for any non-text content 1.1.1 Nontext Content All images,

More information

Agilix Buzz Accessibility Statement ( )

Agilix Buzz Accessibility Statement ( ) Agilix Buzz Accessibility Statement (08 30 2016) Voluntary Product Accessibility Template (VPAT) Software Applications and Operating Systems (Section 1194.21) Web based intranet and Internet information

More information

Salesforce Lightning Experience

Salesforce Lightning Experience Salesforce Lightning Experience Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) July 2016 This Voluntary Product Accessibility Template, or VPAT,

More information

Service Cloud Lightning

Service Cloud Lightning Service Cloud Lightning Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) February 2017 This Voluntary Product Accessibility Template, or VPAT, is

More information

Salesforce Lightning Dialer

Salesforce Lightning Dialer Salesforce Lightning Dialer Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) October 2017 This Voluntary Product Accessibility Template, or VPAT,

More information

VPAT Web Content Accessibility Guidelines 2.0 level AA

VPAT Web Content Accessibility Guidelines 2.0 level AA VPAT Web Content Accessibility Guidelines 2.0 level AA It is strongly recommended Technical Staff who are trained in Accessibility complete this form. The comments portion must be filled in to further

More information

What is ADA Website Compliance?

What is ADA Website Compliance? What is ADA Website Compliance? More than 54 million Americans are disabled, and almost 10 percent of the online population has a disability. The Americans with Disabilities Act (ADA) was introduced in

More information

Web Content Accessibility Guidelines 2.0 level AA Checklist

Web Content Accessibility Guidelines 2.0 level AA Checklist Web Content Accessibility Guidelines 2.0 level AA Checklist Date: April, 2016 Name of Product: SoftChalk Create 10 (both desktop and cloud web-launch versions) Contact for more information: email: help@softchalk.com

More information

Web Content Accessibility Guidelines 2.0 Checklist

Web Content Accessibility Guidelines 2.0 Checklist ProQuest Ebook Central Web Content Accessibility Guidelines 2.0 Checklist Last updated March 28, 2017 by HT Sun, Senior Product Manager, ht.sun@proquest.com Principle 1: Perceivable information and user

More information

Salesforce Service Cloud Snap-Ins for Web

Salesforce Service Cloud Snap-Ins for Web Salesforce Service Cloud Snap-Ins for Web Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) November 2017 This Voluntary Product Accessibility Template,

More information

Salesforce Lightning Service Console

Salesforce Lightning Service Console Salesforce Lightning Service Console Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) November 2017 This Voluntary Product Accessibility Template,

More information

Product Accessibility Conformance Report

Product Accessibility Conformance Report Product Accessibility Conformance Report Name of Product / Version Number: Contact for more information: Gillian Neff / gillian.neff @clarivate.com Clarivate Analytics remains dedicated to developing software

More information

Web Content Accessibility Guidelines (WCAG) 2.0

Web Content Accessibility Guidelines (WCAG) 2.0 Web Content Accessibility Guidelines (WCAG) 2.0 This is YouSeeU s response to the Web Content Accessibility Guidelines (WCAG) 2.0 -- https://www.w3.org/tr/wcag20/. In this document, YouSeeU has provided

More information

Websites and Access for People with Disabilities

Websites and Access for People with Disabilities Websites and Access for People with Disabilities Connecticut Library Association Conference April 20, 2010 Kathy Gips, Director of Training Dennis Begany, Network Administrator New England ADA Center Institute

More information

The Ultimate Web Accessibility Checklist

The Ultimate Web Accessibility Checklist The Ultimate Web Accessibility Checklist Introduction Web Accessibility guidelines accepted through most of the world are based on the World Wide Web Consortium s (W3C) Web Content Accessibility Guidelines

More information

Creating Accessible Web Sites with EPiServer

Creating Accessible Web Sites with EPiServer Creating Accessible Web Sites with EPiServer Abstract This white paper describes how EPiServer promotes the creation of accessible Web sites. Product version: 4.50 Document version: 1.0 2 Creating Accessible

More information

HTML Text Editor and Accessibility

HTML Text Editor and Accessibility AgLearn has an HTML text editor and accessibility checking tool. While these tools are helpful and will assist with improving your courses accessibility, you still must validate your course through a certified

More information

Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance

Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance Name of Product: SIRS Knowledge Source (Includes SIRS Issues Researcher, SIRS Government Reporter, and SIRS Renaissance) Product

More information

Web Content Accessibility Template

Web Content Accessibility Template Web Content Accessibility Template The purpose of this template is to assist contracting officials and other buyers in making preliminary assessments regarding the availability of web products and services

More information

A Guide For Making Your Web Applications Accessible To Those With Disabilities

A Guide For Making Your Web Applications Accessible To Those With Disabilities A Guide For Making Your Web Applications Accessible To Those With Disabilities Section 508 is a set of guidelines that federal government websites are required by law to follow. These regulations also

More information

Fulcrum Accessibility Conformance Report

Fulcrum Accessibility Conformance Report Fulcrum Accessibility Report VPAT Version 2.1 August 2018 Name of Product/Version: Fulcrum v2.17.1 Date: August 2018 Contact information: fulcrum-info@umich.edu Evaluation Methods Used: NVDA with Mozilla

More information

Sales Cloud Lightning

Sales Cloud Lightning Sales Cloud Lightning Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) December 2017 This Voluntary Product Accessibility Template, or VPAT, is a

More information

ProQuest Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018

ProQuest Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018 ProQuest Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018 Name of Product/Version: ProQuest Platform / December 2018 release Product Description: The ProQuest platform

More information

Handshake Accessibility Overview

Handshake Accessibility Overview Handshake Accessibility Overview Handshake takes accessibility seriously. This document provides an overview of our commitment to making Handshake accessible to every user. Handshake takes the following

More information

Ex Libris Accessibility Conformance Report

Ex Libris Accessibility Conformance Report Name of Product/Version: Ex Libris Primo / February 2018 release Ex Libris Accessibility Conformance Report Level A and AA VPAT Version 2.0 Product Description: Ex Libris Primo provides a fast, comprehensive,

More information

CommonLook Office GlobalAccess Quick Start Guide using Microsoft PowerPoint

CommonLook Office GlobalAccess Quick Start Guide using Microsoft PowerPoint CommonLook Office GlobalAccess Quick Start Guide using Microsoft PowerPoint Welcome to the NetCentric Technologies CommonLook Office GlobalAccess Quick Start Guide. This tutorial is intended to help users

More information

Guide for Creating Accessible Content in D2L. Office of Distance Education. J u n e 2 1, P a g e 0 27

Guide for Creating Accessible Content in D2L. Office of Distance Education. J u n e 2 1, P a g e 0 27 Guide for Creating Accessible Content in D2L Learn how to create accessible web content within D2L from scratch. The guidelines listed in this guide will help ensure the content becomes WCAG 2.0 AA compliant.

More information

Making elearning Accessible

Making elearning Accessible Making elearning Accessible An ebook by Trivantis 2016 Trivantis Corporation. All rights reserved. Trivantis Corporation 311 Elm Street Suite #200 Cincinnati, OH 45202 Trivantis.com Info@Trivantis.com

More information

Product Accessibility Conformance Report

Product Accessibility Conformance Report Product Accessibility Conformance Report Name of Product / Version Number: * 5.27 * is the global name given to the software platform that incorporates the products: TM Core Collection, Biological Abstracts,

More information

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Gale Infotrac including VPAT Version 2.0 Beta 2 Academic OneFile, Educator's Reference

More information

Accessibility Checklist for elearning

Accessibility Checklist for elearning Accessibility Checklist for elearning Course tested: Developer: Date: High-level Checklist The high-level checklist below is used to summarize the accessibility status of an entire elearning module. Details

More information

A Step-by-Step Guide to Creating More Accessible Surveys

A Step-by-Step Guide to Creating More Accessible Surveys A Step-by-Step Guide to Creating More Accessible Surveys In order to be considered accessible, surveys and forms must be designed to assist hearing- or sight-impaired users. If you re planning on sharing

More information

DRAFT Section 508 Basic Testing Guide PDF (Portable Document Format) Version 0.1 September 2015

DRAFT Section 508 Basic Testing Guide PDF (Portable Document Format) Version 0.1 September 2015 DRAFT Section 508 Basic Testing Guide PDF (Portable Document Format) Version 0.1 September 2015 Contents Introduction... 3 Preconditions... 5 A. PDF Portfolio... 5 B. Adobe LiveCycle... 6 C. Tagged PDF...

More information

Online Accessibility Guidelines

Online Accessibility Guidelines Online Accessibility Guidelines Headings Lists Links Tables Color Guideline Why Is This Important? Use properly formatted headings to structure a page. Headings help to organize content, making it easier

More information

CSCI 311 WEB ACCESSIBILITY

CSCI 311 WEB ACCESSIBILITY CSCI 311 WEB ACCESSIBILITY The Plan Look at the importance of building accessible sites What accessibility means Accessibility guidelines Examples Motivating Example What is it like to navigate websites

More information

Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice

Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice July 19, 2016 This Voluntary Product Accessibility Template, or VPAT, is a tool that administrators and decision-makers

More information

What s New in WCAG 2.1. An overview

What s New in WCAG 2.1. An overview What s New in WCAG 2.1 An overview WCAG Introduction Web Content Accessibility Guidelines Guidelines to help make web content more accessible to people with disabilities. Developed by the Website Accessibility

More information

Apple Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT )

Apple Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) Apple Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) Name of Product: s 4.0 for ios Product Description: A word processor application for iphone, ipad, and ipod

More information

Web Content Accessibility Guidelines 2.0 Checklist

Web Content Accessibility Guidelines 2.0 Checklist Web Content Accessibility Guidelines 2.0 Checklist Principle 1: Perceivable information and user interface components must be presentable to users in ways they can perceive. 1 Standard Description Apply

More information

Blackboard Learn with the Ultra Experience WCAG 2.0 Support Statement November 2016

Blackboard Learn with the Ultra Experience WCAG 2.0 Support Statement November 2016 Blackboard Learn with the Ultra Experience WCAG 2.0 Support Statement November 2016 Blackboard November 2016 Page 1 of 24 Overview The following Support Statement provides an evaluation of accessibility

More information

Word Creating & Using Tables. IT Training & Development (818) Information Technology

Word Creating & Using Tables. IT Training & Development (818) Information Technology Information Technology Word 2007 User Guide Word 2007 Creating & Using Tables IT Training & Development (818) 677-1700 training@csun.edu www.csun.edu/it/training Table of Contents Introduction... 1 Anatomy

More information

UNIVERSITY OF NORTH CAROLINA WILMINGTON

UNIVERSITY OF NORTH CAROLINA WILMINGTON Department: Contact Person: Date: Email: Online - Web & Course Accessibility Checklist Text, presentation & content Text equivalent is provided for every non-text element (i.e., image) (Solution: add an

More information

Hoonuit Voluntary Product Accessibility Template (VPAT)

Hoonuit Voluntary Product Accessibility Template (VPAT) Hoonuit Voluntary Product Accessibility Template (VPAT) February 2018 Date: February 26 th, 2018 Name of Product: Hoonuit Website Contact Information: Emily Lachinski, emily.lachinski@hoonuit.com Compliance

More information

Technologies: Levels: Sections:

Technologies: Levels: Sections: 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 document lists all of

More information

Blackboard staff how to guide Accessible Course Design

Blackboard staff how to guide Accessible Course Design The purpose of this guide is to help online course authors in creating accessible content using the Blackboard page editor. The advice is based primarily on W3C s Web Content Accessibility Guidelines 1.0

More information

Salesforce Lightning Experience Analytics (Dashboard and Reports)

Salesforce Lightning Experience Analytics (Dashboard and Reports) Analytics (Dashboard and Reports) Voluntary Product Accessibility Template (VPAT) This Voluntary Product Accessibility Template, or VPAT, is a tool that helps officials and decision-makers to evaluate

More information

Adobe RoboHelp 11 Voluntary Product Accessibility Template

Adobe RoboHelp 11 Voluntary Product Accessibility Template Adobe RoboHelp 11 Voluntary Product Accessibility Template The purpose of the Voluntar y Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

Text and Lists Use Styles. What Are Styles?

Text and Lists Use Styles. What Are Styles? Creating Accessible Word Documents Using Microsoft Word 2003 Cassandra Tex, MBA Assistive Technology Specialist Student Disability Resource Center Humboldt State University Word documents are inherently

More information

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Gale Kids InfoBits Date: January 2018 VPAT Version 2.0 Beta 2 Contact information: Accessibility@Cengage.com

More information

Omeka Accessibility Conformance Report

Omeka Accessibility Conformance Report Omeka Accessibility Conformance Report VPAT Version 2.0 October 2017 Name of Product/Version: Omeka S version 1.1 Product Description: Omeka S is a web publishing platform designed for cultural heritage

More information

Salesforce1 - ios App (Phone)

Salesforce1 - ios App (Phone) Salesforce1 - ios App (Phone) Voluntary Product Accessibility Template (VPAT) This Voluntary Product Accessibility Template, or VPAT, is a tool that helps officials and decision-makers to evaluate Salesforce1

More information

Blackboard Collaborate WCAG 2.0 Support Statement August 2016

Blackboard Collaborate WCAG 2.0 Support Statement August 2016 Blackboard Collaborate WCAG 2.0 Support Statement August 2016 Overview The following Support Statement provides an evaluation of accessibility support levels for Blackboard s Collaborate (Ultra) based

More information

ACCESSIBLE DESIGN THEMES

ACCESSIBLE DESIGN THEMES WCAG GUIDELINES The Web Content Accessibility Guidelines (WCAG) has been made to guide the Web Content Developers and the Authoring Tools Developers in order to make the Web Content more accessible to

More information

Desire2Learn Learning Repository Web Content Accessibility Guidelines (WCAG 2.0) Checklist October 2013 Contents

Desire2Learn Learning Repository Web Content Accessibility Guidelines (WCAG 2.0) Checklist October 2013 Contents Desire2Learn Learning Repository Web Content Accessibility Guidelines (WCAG 2.0) Checklist October 2013 Contents Introduction Key accessibility features Keyboard-only navigation Screen magnification, zooming

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Cisco Accessibility Conformance Report VPAT Version 2.1

Cisco Accessibility Conformance Report VPAT Version 2.1 Cisco Accessibility Conformance Report VPAT Version 2.1 Name of Product/Version: Cisco Social Miner v12.0 Product Description: Cisco Social Miner is a social media customer care solution that can help

More information

Salesforce Service Cloud Snap-Ins for Web

Salesforce Service Cloud Snap-Ins for Web Salesforce Service Cloud Snap-Ins for Web Voluntary Product Accessibility Template (VPAT) November 2017 This Voluntary Product Accessibility Template, or VPAT, is a tool that helps officials and decision-makers

More information

EPiServer s Compliance to WCAG and ATAG

EPiServer s Compliance to WCAG and ATAG EPiServer s Compliance to WCAG and ATAG An evaluation of EPiServer s compliance to the current WCAG and ATAG guidelines elaborated by the World Wide Web Consortium s (W3C) Web Accessibility Initiative

More information

Designing Accessible Websites

Designing Accessible Websites A Checklist of Web Accessibility Guidelines Prepared by: Sylvia Chong July 13, 1998 This document is funded in part by the project "An Internet Based Curriculum on Math and Aeronautics for Children with

More information

The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect.

The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect. Web Accessibility The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect. Tim Berners-Lee, W3C Director and inventor of the World Wide Web 20% of

More information

Voluntary Product Accessibility Report

Voluntary Product Accessibility Report Voluntary Product Accessibility Report Compliance and Remediation Statement for Section 508 of the US Rehabilitation Act for OpenText Process Suite 16.3 October 2017 OPENTEXT PRODUCT VPAT ACCESSIBILITY

More information

Community Templates for Self-Service

Community Templates for Self-Service Voluntary Product Accessibility Template (VPAT) February 2016 This Voluntary Product Accessibility Template, or VPAT, is a tool that helps officials and decision-makers to evaluate design conformance the

More information

Introduction to the Learning Environment v8.3.0

Introduction to the Learning Environment v8.3.0 Introduction to the Learning Environment v8.3.0 User Guide March, 008 Contents My Home Accessing your courses Navigating inside a course Lists Actions Entering Dates Showing and hiding advanced options

More information

VPAT Web Content Accessibility Guidelines 2.0 level AA

VPAT Web Content Accessibility Guidelines 2.0 level AA The requested VPAT applies to the responder s website to be offered under the Contract. For products offered, VPATS are only to be provided upon request by the participating entity. It is strongly recommended

More information

Beyond Captioning: Tips and Tricks for Accessible Course Design

Beyond Captioning: Tips and Tricks for Accessible Course Design Minnesota elearning Summit 2017 Aug 2nd, 3:00 PM - 4:00 PM Beyond Captioning: Tips and Tricks for Accessible Course Design Jenessa L. Gerling Hennepin Technical College, JGerling@hennepintech.edu Karen

More information

How to Meet WCAG 2.0 AA Level

How to Meet WCAG 2.0 AA Level How to Meet WCAG 2.0 AA Level Source: https://www.w3.org/wai/wcag20/quickref/?currentsidebar=%23col_customize&showtechniques= 124&levels=aaa&technologies=css%2Cwai-aria%2Cjs%2Cserver%2Csmil%2Cpdf%2Cflash%2Csl

More information

Project MUSE Accessibility Conformance Report

Project MUSE Accessibility Conformance Report Project MUSE Accessibility Conformance Report Name of Product/Version: Project MUSE VPAT Version 2.0 March 2018 Product Description: Non-profit online database of academic journals and electronic books

More information

COURSE DESIGN ACCESSIBILITY CHECKLIST

COURSE DESIGN ACCESSIBILITY CHECKLIST COURSE DESIGN ACCESSIBILITY CHECKLIST Introduction This checklist is an internal document to be consulted by the Instructional Designer and Faculty member in examining web accessibility in a specific course.

More information

Creating Accessible Microsoft Word Documents

Creating Accessible Microsoft Word Documents Creating Accessible Microsoft Word Documents Microsoft Word is one of the most commonly used word processing software packages, making it a ubiquitous tool to create documents that may be viewed online

More information

Top Tips for School Website Accessibility

Top Tips for School Website Accessibility Top Tips for School Website Accessibility Presenter Today s Presenters Jared Smith Associate Director, WebAIM WebAIM.org @jared_w_smith Put your pencils down. A video copy of today s presentation will

More information

WCAG2-AAA accessibility report for

WCAG2-AAA accessibility report for WCG2- accessibility report for http://www.messiah.edu 207-07-3 ccessibility Issues Found 30 (7,98,760 unique issues a ecting 7,629 pages) Overall accessibility compliance Done 38 issues done 30 issues

More information

Voluntary Product Accessibility Template PowerBroker for Mac

Voluntary Product Accessibility Template PowerBroker for Mac Voluntary Product Accessibility Template PowerBroker for Mac The VPAT (Voluntary Product Accessibility Template) product is a tool developed by ITIC (Information Technology Industry Council) and government

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Voluntary Product Accessibility Template Starfish & Degree Planner May 1, 2017 Prepared by: Joe Karschnik, Compliance Engineer 50 E-Business Way, Suite 300, Cincinnati, OH 45241 Voluntary Product Accessibility

More information

Waterloo Drupal User Group

Waterloo Drupal User Group Waterloo Drupal User Group 2010-12- 16 Definition Legislation Guidelines and standards Resources and tools Tips Drupal Web accessibility Means that people with disabilities can use the Web (i.e., perceive,

More information

COURSE DESIGN RUBRIC

COURSE DESIGN RUBRIC COURSE DESIGN RUBRIC Sections D-E The Online Education Initiative (OEI) is a collaborative effort among California Community Colleges (CCCs) to ensure that significantly more students are able to complete

More information

Date: April 3, 2017 Name of Product: Cisco Prime Infrastructure v3.1 Contact for more information:

Date: April 3, 2017 Name of Product: Cisco Prime Infrastructure v3.1 Contact for more information: Date: April 3, 2017 Name of Product: Cisco Prime Infrastructure v3.1 Contact for more information: accessibility@cisco.com The following testing was done on a Windows 7 with Freedom Scientific s JAWs screen

More information

Typhon Group Website WCAG 2.0 Support Statement

Typhon Group Website WCAG 2.0 Support Statement Typhon Group Website WCAG 2.0 Support Statement Date of WCAG testing: 4/5/2016 Name of Product: Typhon Group Student Tracking Systems (web application) Contact Info: Aviva Bowman, aviva@typhongroup.com,

More information

Salesforce Lightning App Builder

Salesforce Lightning App Builder Voluntary Product Accessibility Template (VPAT) December 2015 This Voluntary Product Accessibility Template, or VPAT, is a tool that helps officials and decision-makers to evaluate Salesforce Lightning

More information

Ally Accessibility Checklist

Ally Accessibility Checklist Ally Accessibility Checklist PDF The PDF is malformed The PDF is encrypted The PDF is scanned o WCAG 2.0-1.4.5 Images of text The PDF is untagged o WCAG 2.0-1.3.2 Meaningful Sequence The PDF does not have

More information

Table of Contents. MySource Matrix Content Types Manual

Table of Contents. MySource Matrix Content Types Manual Table of Contents Chapter 1 Introduction... 5 Chapter 2 WYSIWYG Editor... 6 Replace Text... 6 Select Snippet Keyword... 7 Insert Table and Table Properties... 8 Editing the Table...10 Editing a Cell...12

More information

VPAT. Voluntary Product Accessibility Template. Version 1.3

VPAT. Voluntary Product Accessibility Template. Version 1.3 VPAT Version 1.3 The purpose of the Voluntary Product Accessibility Template, or VPAT, is to assist Federal contracting officials and other buyers in making preliminary assessments regarding the availability

More information

Section Software Applications and Operating Systems - Detail

Section Software Applications and Operating Systems - Detail 03/07/2016 16:24:35 EST VPAT for InfoPrint Manager for AIX 4.4.1, 4.5 VPAT comments: For a detailed description of the parent features and benefits, please refer to the following URL: The contents of this

More information

Welcome to WAG Meeting an AMAC Accessibility Webinar. WCAG 2.1 Discussion. Janet Sylvia, WAG Coordinator. June 6, 2018

Welcome to WAG Meeting an AMAC Accessibility Webinar. WCAG 2.1 Discussion. Janet Sylvia, WAG Coordinator. June 6, 2018 Welcome to WAG Meeting an AMAC Accessibility Webinar WCAG 2.1 Discussion Janet Sylvia, WAG Coordinator June 6, 2018 To Show Closed Captioning From Menu: Window>Show Closed Captioning Keyboard: CTRL or

More information

Kaltura Accessibility Conformance Report

Kaltura Accessibility Conformance Report Kaltura Accessibility Report Name of Product/Version: VPAT Version 2.1 Kaltura MediaSpace and Kaltura Application Framework (KAF) 5.69.x released February 12, 2018 Kaltura Video Editing Tools 2.22.1 released

More information

Voluntary Product Accessibility Template (VPAT) Applicable Sections

Voluntary Product Accessibility Template (VPAT) Applicable Sections Voluntary Product Accessibility Template (VPAT) Name of Product Reaxys Date January 6, 2014 Completed by Jack Bellis, Elsevier UCD, Philadelphia Contact for more Information Product Version Number 2.15859.10

More information

Dreamweaver: Accessible Web Sites

Dreamweaver: Accessible Web Sites Dreamweaver: Accessible Web Sites Introduction Adobe Macromedia Dreamweaver 8 provides the most complete set of tools available for building accessible web sites. This workshop will cover many of them.

More information

Adobe Sign Voluntary Product Accessibility Template

Adobe Sign Voluntary Product Accessibility Template Adobe Sign Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding the

More information

ArchivesSpace Accessibility Conformance Report International Edition

ArchivesSpace Accessibility Conformance Report International Edition ArchivesSpace Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018 Name of Product/Version: ArchivesSpace v2.5.1 Product Description: ArchivesSpace is an archival information

More information

Cisco Accessibility Conformance Report VPAT Version 2.1

Cisco Accessibility Conformance Report VPAT Version 2.1 Cisco Accessibility Conformance Report VPAT Version 2.1 Name of Product/Version: Cisco Prime Collaboration Assurance version 12.x Product Description: Cisco Prime Collaboration Assurance is a comprehensive

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Voluntary Product Accessibility Template Introduction A Voluntary Product Accessibility Template (VPAT) is a document that describes the compliance of a website or web application with the accessibility

More information

!Accessibility Issues Found

!Accessibility Issues Found WCG2- accessibility report for http://www.messiah.edu 207-07-28!ccessibility Issues Found (6,838,98 unique issues affecting 7,45 pages) Overall accessibility compliance Done 53 issues done issues to fix/review

More information

Adobe Flash Professional CS5.5 Voluntary Product Accessibility Template

Adobe Flash Professional CS5.5 Voluntary Product Accessibility Template Adobe Flash Professional CS5.5 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information