Web Accessibility 101 UW GAAD 2018

Slides:



Advertisements
Similar presentations
AHEAD HTML Accessibility Topics: Keyboard Accessibility Content and Structure Links Headings and Lists Images in HTML Pages Tables Forms.
Advertisements

CHAPTER 7 STYLING CONTENT WITH CASCADING STYLE SHEETS.
Making Things Look Nice: Visual Appearance and CSS CMPT 281.
Today’s Goals What is HTML?
WAHEP Website Check-up A Look at the Project Midway Website Evaluations.
California State University Fullerton Campus Information Technology Training Timothy Benbow EIGHT ESSENTIALS FOR CREATING ACCESSIBLE PDF DOCUMENTS.
HTML Semantic Structure
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
IV. “Regular” Web Pages: HTML A Web Accessibility Primer: Usability for Everyone Office of Web Communications.
Americans with Disabilities Act Ms. Sam Wainford.
Accessible Word Document Training Microsoft Word 2010.
Basics of HTML.
Chapter Objectives Discuss the relationship between page length, content placement, and usability Complete Step 4: Specify the website’s navigation system.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Cascading Style Sheets (CSS) 1.  What is CSS?  Why CSS?  How to write a CSS? 2.
Web Design, 4 th Edition 4 Planning a Successful Web Site: Part 2.
Web Accessibility PRESENTED BY CINDY BARRY, LITS.
Web Accessiblity Carol Gordon SIU Medical Library.
F-1 Management Information Systems for the Information Age Copyright 2004 The McGraw-Hill Companies, Inc. All rights reserved Extended Learning Module.
Measuring PDF Accessibility PDF a11y Testing for the Rest of a11yBOS 2013 Deque Systems, Inc.
Is Your Site Accessible? Web Site Testing for Accessibility Presented by: The NYS Forum IT Accessibility Committee The NYS Forum Webmasters Guild Northeast.
USABILITY An Introduction. Usability “..usability really just means making sure that something works well: that a person of average (or even below average)
WEB ACCESSIBILITY. WHAT IS IT? Web accessibility means that people with disabilities can use the Web. Web accessibility encompasses all disabilities that.
HTML: Hyptertext Markup Language Doman’s Sections.
Guideline 12 Provide context and orientation information.
IT Introduction to Website Development Welcome!
HTML – Organizing Page Content. HTML Images img tag Required attribute: src
HTML.
ACCESSIBILITY An Introduction. Accessibility Accessibility is the degree to which a product, device, service, or environment is available to as many people.
WEB ACCESSIBILITY TRAINING FOR CONTENT MANAGERS.
CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  float & clear  display & visibility.
Is Your Site Accessible? Validating Your Web Site.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Accessible Word Document Creation Using Microsoft Word 2010.
HTML5 SEMANTICS TO OR NOT TO THAT IS THE QUESTION BY WILLIAM MURRAY.
The User Experience “Keeping Web Accessibility In Mind” Video available online at:
1 Cascading Style Sheet (CSS). 2 Cascading Style Sheets (CSS)  a style defines the appearance of a document element. o E.g., font size, font color etc…
Web Accessibility training An introduction to web accessibility.
>> HTML: Tags – Hyperlink, Media, Lists
Awesome Docs: Creating Accessible Content Part 1
Web Page Elements Writing For the Web
Organizing Content with Lists and Tables
Making the Web Accessible to Impaired Users
Inserting and Working with Images
Introduction to CSS.
HTML Formatting.
MUG Tuesday, May 31, 2016.
Creating Accessible PDFs from Word Docs
Information Architecture and Design I
Web Accessibility Technology should be usable to everyone regardless of their individual characteristics.
HTML – Organizing Page Content
Accessibility Basics Series: Non-Text Elements
Creating Accessible Electronic Content
Basics of Accessibility in Adobe PDF
Context Is Everything Meaningful Alternative Text
Web Accessibility Allison Kidd, Accessibility Specialist
HTML Intro.
Fixed Positioning.
Web Content Accessibility Beata M. Ofianewska (DG COMM) 7 December 2006 December 2006 COMM C2.
Web Accessibility Clinic – Common Issues
Web Accessibility Guidelines
From compliance to usability
HTML ELEMENTS Ms. Olifer.
Information Architecture and Design I
Introduction to Web Accessibility
Introduction to HTML.
How To Make Accessible Word Documents
Demystifying Web Content Accessibility Guidelines
Accessible Design Top 10 List
Accessibility Evaluation
Presentation transcript:

Web Accessibility 101 UW GAAD 2018 Anna Marie Golden IT Accessibility Specialist amgolden@uw.edu

General Guidelines Assistive technologies rely on a web page’s mark-up to relay content to users Use HTML elements semantically Use the correct element for the job and not for its appearance Use CSS for formatting Minimize the use of inline styles, especially sizing Can affect user’s ability to zoom web page for better visibility “visibility:hidden” and “display:none” hides content from ALL users, including assistive technology users

Heading Structure Provide an outline of a page’s content Visual headings marked-up as HTML headings Headings in order without skipping levels Starting with <h1> Only one <h1> heading per web page Not used for their visual appearance

Images Alt text for images that convey meaning Alt=“textual equivalent or image’s purpose” Assistive technologies relay alt text to users Not necessary to say, “photo of …” Null alt text (alt = “”) for decorative images Purely decorative and do not convey meaning Allows assistive technology to ignore the image Use text for text instead of images of text Linked images need alt text for link’s purpose

Lists Marked-up as lists Provides context Provides orientation ATs announce a list and how many items in the list Provides orientation Unordered list Order doesn’t matter Ordered list <ol> with list items <li> Order matters Definition/description list List of terms with a description of each term

Unordered List <ul> <li>cat</li> <li>dog</li> </ul>

Ordered List <ol> <li>cat</li> <li>dog</li> </ol>

Definition/description List <dl> <dt>cat</dt> <dd>feline animal</dd> <dt>dog</dt> <dd>canine animal</dd> </dl>

Links Link text Meaningful link text Make sense out of context Omit the use of target attributes e.g. target=“_blank” It is best to let users decide where links will open

Color Contrast Meaning Adequate contrast between foreground and background Meaning Avoid conveying meaning through color alone Provide a backup

UW Web Accessibility Resources UW’s Accessible Technology website http://www.washington.edu/accessibility/ Developing Accessible Websites http://www.washington.edu/accessibility/web/ Anna Marie Golden, IT Accessibility Specialist amgolden@uw.edu Feel free to contact me anytime with your accessibility-related questions

Web Accessibility 101 UW GAAD 2018 Anna Marie Golden IT Accessibility Specialist amgolden@uw.edu