Download presentation
Presentation is loading. Please wait.
Published byElinor Atkinson Modified over 9 years ago
1
ACCESSIBILITY An Introduction
2
Accessibility Accessibility is the degree to which a product, device, service, or environment is available to as many people as possible. Accessibility can be viewed as the “ability to access” and benefit from some system or entity.
3
Accessibility Use up-to-date, well-formed HTML and CSS Use all recommended tags (!DOCTYPE, title, meta, etc.) Make sure all tags are properly nested and closed Make sure styles written correctly Don’t use deprecated tags like, Don’t use deprecated attributes like align=“” See http://www.tutorialspoint.com/html/html_deprecated_tags.htm
4
Accessibility Make sure each page has a unique, descriptive title Poor Good
5
Accessibility Provide metadata that identifies author, type of content, keywords, character set, etc.
6
Accessibility Make proper hierarchical use of headings (h1 first, followed by h2 for the first level of subheading, etc.).
7
Accessibility Mark up quotations properly; use tags around quotes and around actual blockquotes. Do not use quotation markup for formatting effects such as indentation. Place the tag with a title attribute around any (and every) abbreviation. For example: KISS. Use real horizontal rules, not images.
8
Accessibility Make sure all images have alt attributes. For example:
9
Accessibility Clearly identify the target of each link. For example, don't write: “For more information about baseball click here.”click here Instead write something more specific like: “ See more information about baseball.” See more information about baseball
10
Accessibility Add title attributes to link tags, especially if the target of the link is not clear from the context. For example: See more information about baseball
11
Accessibility Navigation menus should be grouped and labeled. For example, use an ordered or unordered list with an ID Another possibility is surrounding a group of links with a either a set of tags or tags with an ID
12
Accessibility Provided non-link, printable characters (surrounded by spaces) between adjacent links. For example: Home | Search | Contact –or– [Home] [Search] [Contact] [Site map] HomeSearchContactHomeSearchContactSite map
13
Accessibility Use navigation mechanisms in a consistent manner— navigation menus should look and behave the same on all pages (persistent navigation). Don’t use images as links
14
Accessibility If you choose to use graphic text—whether it be page titles, site ID's, fancy headings or buttons—make sure there is a text alternative, either visible on the page, or hidden in such a way that it will become visible when images are hidden and/or CSS turned-off. One way we can accomplish this by using a CSS-based image replacement method.
15
Accessibility Use high contrast for text. GoodBad
16
Accessibility Dark text on light backgrounds is preferable to light text on dark backgrounds GoodBad
17
Accessibility Organize documents so they may be read without style sheets. For example, when an HTML document is rendered without associated style sheets, it must still be possible to read the document.
18
Accessibility Put navigation links and menus after the page's main content in the markup. You can reposition the navigation using CSS.
19
Accessibility Put navigation links and menus after the page's main content in the markup. You can reposition the navigation using CSS.
20
Accessibility Put navigation links and menus after the page's main content in the markup. You can reposition the navigation using CSS. Alternatively, you could provide a "skip to main content" link at the top of each page.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.