accessibility is not optional.

Making your web apps accessible ensures that everyone, regardless of their abilities, can use your product.

Semantic HTML

The easiest way to improve accessibility is to use proper HTML tags.

  • Use `<button>` for actions, not `<div>`.
  • Use `<nav>` for navigation.
  • Use `<main>` for the primary content.
  • ARIA Attributes

    When custom widgets are necessary, ARIA attributes bridge the gap.