WebAIM is another helpful tool for manually checking color contrast compliance of a single foreground and background color:
Navigation can be a challenge for visually impaired people. Many individuals may not use a mouse to interact with navigational or clickable elements throughout your site. Make sure you add a tabindex
attribute to these clickable elements to ensure the order they navigate these elements follows your page flow.
These types of elements can include:
alt
Text In ImagesScreen readers can't understand text embedded in images or provide context for those images. The alt
attribute is available for img
elements, making them accessible to users with visual disabilities.
The idea of this attribute is to give the displayed images context by providing as much information as possible. If you were to display a picture of a charcuterie board with different food items, you could write this detailed alt
description:
<img src="charcuterie-board.jpg" alt="Charcuterie board with different meats and cheeses" />
The alt
text you provide will also provide context for results in search engines, making your web page easier to find for people with or without disabilities.
The HTML5 video
and audio
tags allow you to create a captions track, adding the ability to caption the audio within specified timeframes.
Here is an example of the video
tag referencing a captions file:
<video controls>
<source type="video/mp4" src="video.mp4" />
<track type="text/vtt" src="captions.vtt" label="English Captions" srclang="en" kind="captions" default="" />
</video>
The referenced captions get stored in a WebVTT, or Web Video Text Tracks, format. Each caption starts with a timeframe narrowed down to the millisecond and ends with the caption text and multiple line breaks for more readability:
WEBVTT
Kind: captions
Language: en
00:00:00.859 --> 00:00:03.179
Here is the first caption.
00:00:03.179 --> 00:00:06.779
Here is the second caption.
Video and audio transcription capabilities are also available if you'd like to create a section on the web page for screen readers to read the content aloud.
ARIA, or Accessible Rich Internet Applications, are roles and attributes that provide information or context about a particular page element for screen readers and other assistive tools.
You can assign a page element a role as an attribute using the following syntax:
role="[role-type]"
Here are six of the most common ARIA roles:
ARIA labels are also helpful ways to build context on embedded page elements. One of the most common ways of adding this to a page is by using the aria-label
attribute within an anchor tag to describe what the link will open. It's best to be as descriptive as possible in your descriptions.
Here's an example of a hyperlink opening a new tab to another website:
<a href="https://www.google.com" target="_blank" aria-label="Opens new tab to Google.com" />
AccessiBe has a great tool to scan your website for ADA and WCAG compliance.
Axe DevTools has a Chrome extension available to install that runs through many of the same checks from the web-based checker above.
Chrome also has a built-in accessibility checker in the Lighthouse tab of the developer tools console. You can access it by pressing F12
on your keyboard (Fn+F12
for Mac users) and clicking the Lighthouse tab.
From there, you'll have the ability to run a bunch of different checks for desktop and mobile devices:
Web accessibility is crucial in many cases, makes good business sense, and is overall the morally right thing to do to assist people in all situations.
I hope the information and tips in the article help you make your website accessible.
If you have any additional tools not listed in this article, let everyone know in the comments section!
Comments
There are no comments yet. Start the conversation!