Javascript is required
·
6 min read

Why A Good Frontend Developer Should Care About Web Accessibility

Why A Good Frontend Developer Should Care About Web Accessibility Image

Cover image from Poakpong licensed under CC 2.0

Back in 2017, when I started frontend development, I heard an interesting talk with the title "Aesthetics of the invisible" from my former colleague Francesco Schwarz. It was all about accessibility in websites and the related blog post starts with a remarkable statement:

Sometimes one single hidden glyph in an HTML markup makes the difference between a good and an outstanding front-end.

As I learned soon, accessibility is a very polarizing topic. These are the typical statements I heard related to this topic:

  • "We have no time for accessibility features."
  • "There are only a few blind persons. We do not need to support this minority."
  • "I hate these ugly borders and I always remove them."
  • "We can care about accessibility later if we have more users."

In this article, I want to tell you what accessibility is, why it is essential for websites, why I care about it, and why you should care about it too.

What is Web Accessibility?

If I needed to describe it in my own words, I would define it as

Anyone can fully access and interact with a website

The official Wikipedia article describes it as

the inclusive practice of ensuring there are no barriers that prevent interaction with, or access to websites, by people with disabilities.

So a good website should enable access to its content to everybody, even people with disabilities.

By the way, accessibility is often abbreviated by A11Y.

A11Y is known as a numeronym, which is somewhat similar to an acronym. Unlike an acronym, numbers are used in place of letters to shorten the term. You may already be familiar with other numeronyms, such as “K-9” for “Canine” or “W3C” for “World Wide Web Consortium”.

What are disabilities?

As I mentioned in the beginning, there is the misbelief that web accessibility is only relevant to blind users.

According to a WHO report, approximately 1.3 billion people live with some form of vision impairment. Thereof, 36 million people are blind. But also, with mild and severe vision impairments, you can have trouble reading content on a website.

Of course, there exist not only visual disabilities. Google's Accessibility Fundamentals demonstrate some access impairments in real-world examples:

SituationalTemporaryPermanent
Visualdistracted driverconcussionblindness
Motorholding a babybroken arm
Hearingnoisy officedeaf
Cognitiveconcussion

So all of us could get in a situation where we need to interact with websites but have some situational, temporary, or permanent disability.

I like the quote from the article "Accessibility matters—and here's what we're doing about it":

We should never make assumptions about our users

Making a product accessible does not mean targeting a specific subset of people. Rather, accessible design, or universal design, is about > > making products usable by the greatest number of people possible. We should not assume we know how our users are engaging with our content, > and should understand that it may be "seen" by a number of assisting technologies, including automated tools, keyboard-only navigation, and > screen readers.

You probably are now thinking: "But my customers are different".

Nope, I don't think so!

As you can see in the table above, the chances are high that one of your website users has a situational, temporary or permanent disability.

You should care about everyone and not care about a minority.

Never forget: The website is the front door to your business!

Of course, you want to have as many people as possible in your business, so you should care. So extend them a warm welcome!

Tools that can assist in browsing a website

I want to introduce you to some tools which can help to browse a website if you have some disability:

  • Speech recognition software which allows dictating words and commands to the computer. Helpful for people who cannot use a keyboard or mouse to interact with the computer.
  • Subtitled or sign language versions for deaf people.
  • Software that enlarges the content of your monitor, which can help people with visual impairments.
  • Screen reader software which uses synthesized speech to read out elements on the computer display.

It would be best if you try them to get a feeling for them. I would especially recommend testing screen readers. You can read more about how to use them here.

This video shows the usage of a screen reader:

Screen Reader Video

How can I make a site more accessible?

User ConstraintAccessibility Solution
Cannot use a mouse or standard keyboardCode your page in a way that the navigation also works without a mouse. Therefore it is important to not remove the outline property.
Visual impairmentUse larger texts and images as well as a good color contrast on the page.
BlindnessFor screen readers, having a semantically meaningful HTML (more about that below the table) and textual description of images and links (e.g. using the alt-tag to describe an image: <img src =”image-location” alt=”this is where your image description goes”>) is helpful
Deaf and hard-of-hearingAdd closed captioned videos or provide a sign language version.
Color blindUnderline and color links (or differentiate otherwise) to help color blind users notice them.

These are just some of the examples, a good checklist with more information is available at Web Content Accessibility Guidelines 2.0.

In general using <div> as HTML tag should be avoided if possible. Therefore you can always check this amazing graphic from HTML5 Doctor:

HTML5 Doctor

I would also advise using tooling that assists during development like eslint-plugin-jsx-a11y, which is an npm package that provides a static AST checker for accessibility rules on JSX elements.

How to test if my website is accessible

I mainly use Google Lighthouse to check if my site is accessible.

You can use one of the many accessibility checklists available online, but I recommend using any of the tools described in Accessibility Testing Tools .

Is it time-consuming to implement accessibility?

Yes, if the project is already in a late-stage or you have a legacy code base with massive accessibility issues which you now need to fix.

No, if you can consider accessibility from the beginning of a project and care about it throughout the development.

Why an accessible website is a good website

  • A well-structured semantic HTML website helps to improve your SEO. A search engine bot is, for example, blind, can’t hear, and has the cognitive abilities of a young child. So he is one of your most crucial website visitors. If he cannot correctly access your website, you will get a lower rank in the search requests.
  • Nearly everyone can access & interact with your website
  • Caring about accessibility is a good attribute of a professional web developer
  • An accessible website feels way more professional
  • You will save money as you will not need to respond to support questions from users with disabilities.

Summary

After this article, I hope you understand why web accessibility is important and why you should care about it.

It is not about providing support for a minority of people but to providing a good user experience for every user of your website.

Your website is the front door of your business: Let your users know that they are welcome, that you care about them and that your business cares about quality and professionalism.

Hopefully, you are now also a mentor for other developers who still believe that accessibility is not necessary.

I will never share any of your personal data. You can unsubscribe at any time.

If you found this article helpful.You will love these ones as well.
Unlocking the Power of v-for Loops in Vue With These Useful Tips Image

Unlocking the Power of v-for Loops in Vue With These Useful Tips

Focus & Code Diff in Nuxt Content Code Blocks Image

Focus & Code Diff in Nuxt Content Code Blocks

Lazy Load Vue Component When It Becomes Visible Image

Lazy Load Vue Component When It Becomes Visible

A Comprehensive Guide to Data Fetching in Nuxt 3 Image

A Comprehensive Guide to Data Fetching in Nuxt 3