Skip to Main Content
WCAG Standards07 July 2026

The POUR Principles: 4 Main Pillars of Web Accessibility

Author

Redaksi Disabilitas.com

3 Min Read2 Views

When you first dive into the Web Content Accessibility Guidelines (WCAG), you are immediately confronted with hundreds of technical success criteria that can feel intimidating. However, before you drown in the code, it's a good idea to return to the core concepts.

WCAG is built upon 4 main pillars abbreviated as POUR: Perceivable, Operable, Understandable, and Robust.

Let's dissect these four pillars using everyday human language!

1. Perceivable

This first pillar states that information and user interface components must be presentable to users in ways they can perceive. This means no information can be invisible to all of a user's senses.

If someone cannot see your visual content, is there an audio alternative? If someone cannot hear your video, is there a text alternative?

Practical Examples:

  • Providing Alt Text for informative images so they can be read by Screen Readers (for blind users).
  • Providing Captions/Subtitles on YouTube videos for deaf users.
  • Ensuring color is not the only means of conveying information. For example: don't just mark an error on a form with a "red outline", but also add an explicit error text message like "Invalid email".

2. Operable

User interface components and navigation must be operable. This means users must be able to interact with your website regardless of their physical limitations.

Remember, not everyone uses a mouse or touchscreen. Many people with motor disabilities or tremors rely solely on a Keyboard, Switch Access devices, or voice commands to navigate.

Practical Examples:

  • Ensuring all navigation menus, buttons, and links can be accessed using the TAB key on a keyboard (Try it now: put away your mouse and navigate this site using only your keyboard!).
  • Providing a clear Focus Indicator (visible outline) so keyboard users know exactly which element is currently active.
  • Avoiding content or animations that move too fast without a pause button, or anything that risks triggering seizures (like flashing strobe lights).

3. Understandable

Information and the operation of user interface must be understandable. Web design should not deceive, confuse, or suddenly surprise its users.

This is highly critical for everyone, but especially for users with dyslexia, ADHD, or other cognitive disabilities.

Practical Examples:

  • Using clear and concise language. Avoid complex jargon if it can be explained with simple words.
  • Providing clear instructions when filling out registration forms. If there's an error, tell the user what went wrong and how to fix it.
  • Layout consistency. Do not drastically change the position of the main menu from one page to another.

4. Robust

Content must be robust enough that it can be interpreted reliably by a wide variety of user agents, including assistive technologies (Screen Readers, screen magnifiers, etc).

This pillar is closely tied to the cleanliness of your source code. If your HTML code is messy and non-compliant with W3C standards, screen reader software won't be able to "digest" it properly.

Practical Examples:

  • Using Semantic HTML. Use the <button> element for buttons, rather than a <div> styled to look like a button. Use <nav> for navigation blocks, and a logical Heading structure (<h1>, <h2>, <h3>).
  • Ensuring you implement WAI-ARIA correctly for complex custom interface elements (such as accordions, tabs, or modal popups).

By adhering to the POUR principles, you don't just meet legal compliance standards (like the ADA or Disability Acts); you genuinely throw the digital doors wide open for humanity as a whole.

Remember: Inclusive Web, Better World.


Main References

This guide was compiled and synthesized from the following literature: - Mancilla, Rae. Guide to Digital Accessibility. - Firth, Ashley. Practical Web Accessibility. - Revilla Munoz, Olga & Carrera, Olga. Web Accessibility: WCAG 2.2 made easy. - Lived Experience from visually impaired users (Disabilitas.com Team).

What do you think?

Give your reaction to this article