My Blog

Web Accessibility

Notes on web accessibility and what I learned about making websites more accessible.

Eliy Yang Tue Feb 24 2026 18:00:00 GMT-0600 (Central Standard Time)

Web Accessibility

Web accessibility is basically making sure your website can be used by everyone, including people with disabilities like people who are blind or deaf or have trouble using a mouse.

Why It Matters

Not everyone uses the internet the same way. Some people use screen readers instead of looking at the screen. If your website isn't built with accessibility in mind those users are going to have a hard time using it. It's also just good practice to make sure your site works for as many people as possible.

WCAG Guidelines

WCAG stands for Web Content Accessibility Guidelines. These are basically a set of rules to follow to make your site accessible. The main ideas are:

Semantic HTML

Using the right HTML elements is a big part of accessibility. For example using <button> for buttons instead of a <div> makes it work with keyboards automatically. Elements like <header>, <nav>, <main>, and <footer> help screen readers understand the layout of the page.

ARIA Attributes

ARIA attributes are extra attributes you can add to HTML elements to make them more accessible. Some ones I used in my project:

Forms

Forms need to be accessible too. Some things to keep in mind:

Keyboard Navigation

Your whole site should work using just the tab key. Users should be able to tab through links and form fields and there should always be a visible outline so they know where they are on the page.