ACCESSIBLE

You are viewing the well-designed version of this page.

UDL FRAMEWORK·UNIVERSAL DESIGN FOR LEARNING

UDL Framework

Universal Design for Learning is a research-based framework for designing flexible learning experiences that work for the full range of human variability — not as an afterthought, but from the start. This page lets you experience what happens when each principle is violated, and shows the design fix.

SECTION 01UDL OVERVIEW

The UDL framework, developed by CAST, organizes flexible design strategies into three principles — one for each dimension of learning. Together they ask: why does this learner engage, what are they learning, and how will they demonstrate it?

Principle I · The WHY of learning

Multiple Means of

Engagement

Learners differ in what motivates them and how they sustain attention. Provide options for choice, challenge level, relevance, and self-regulation.

Recruiting Interest
Sustaining Effort & Persistence
Self-Regulation

Principle II · The WHAT of learning

Multiple Means of

Representation

Learners differ in how they perceive and comprehend information. Offering the same content in multiple formats removes barriers for diverse learners.

Perception
Language & Symbols
Comprehension

Principle III · The HOW of learning

Multiple Means of

Action & Expression

Learners differ in how they navigate a learning environment and express what they know. Provide alternative ways to demonstrate mastery.

Physical Action
Expression & Communication
Executive Functions
SECTION 02MULTIPLE MEANS OF ENGAGEMENT
PRINCIPLE·0I·ENGAGEMENT

The WHY of Learning

Motivation is not a fixed trait — it is highly context-dependent. Learners who appear "unmotivated" are often responding rationally to a design that doesn't offer them choice, relevance, or appropriate challenge. UDL Principle I asks designers to build engagement in, not bolt it on.

UDL 7.1 / 8.2NO LEARNER CONTROL OVER PACING
ACCESSIBLE
Module 3 of 5 — Workplace Ergonomics

Setting Up Your Workstation

Proper ergonomic setup reduces fatigue and prevents repetitive strain injuries. Adjust your monitor to eye level, position your keyboard so your elbows are at 90°, and ensure your feet are flat on the floor or on a footrest.

✓ Fix Available·UDL 7.1 / 8.2·All learners — especially those who process at a different rate

Auto-advancing content removes learner agency — a direct violation of UDL Checkpoint 7.1 (Optimize individual choice and autonomy). Learners process information at different rates: a concept that takes one person 10 seconds may take another 60. Forced pacing disadvantages slow readers, learners with attention differences, and anyone connecting new content to existing knowledge. Always let learners advance on their own terms.

✕ Before
<!-- Auto-advance: removes learner control -->
<div class="timer-bar">
  Auto-advancing in <span id="countdown">8</span>s
  <div class="progress-bar" />
</div>
<button disabled class="btn muted">
  Next (auto)
</button>
✓ After
<!-- Learner-controlled: UDL 7.1 compliant -->
<!-- No timer. No forced pacing. -->
<button class="btn primary"
  aria-label="Proceed to the next slide">
  Next →
</button>
Switches when barrier mode is active above ↑
SECTION 03MULTIPLE MEANS OF REPRESENTATION
PRINCIPLE·II·REPRESENTATION

The WHAT of Learning

There is no single format that works for all learners. Learners vary in how they perceive information, what prior knowledge they bring, and how their brains process language. A wall of text is a design choice — and it's a choice that excludes visual learners, ESL learners, learners with reading differences, and anyone trying to follow a complex process step by step.

UDL 2.5 / 3.3INFORMATION PRESENTED IN ONE FORMAT ONLY
ACCESSIBLE

How to run a WAVE accessibility audit

01

Install the WAVE browser extension

Search "WAVE WebAIM" in your browser's extension store.

02

Navigate to the page you want to audit

Open any URL in your browser.

03

Click the WAVE icon in your toolbar

The icon appears near the address bar after installation.

04

Review the results panel

A sidebar shows errors (red), alerts (yellow), and features (green).

05

Click any icon on the page for details

Each overlay icon links to a specific element and its issue.

✓ Fix Available·UDL 2.5 / 3.3·Visual learners, ESL learners, learners with reading differences

A wall of continuous prose forces learners to extract structure from text — a cognitively demanding task that adds no learning value. UDL Checkpoint 2.5 (Illustrate through multiple media) and 3.3 (Guide information processing) call for structured, chunked content with visual scaffolding. Numbered steps, clear hierarchy, and sub-details aren't decorative — they're a different representation of the same information, dramatically more accessible to most learners.

✕ Before
<!-- Single format: dense prose only -->
<p>
  To complete your audit, navigate to the
  browser extension gallery and search for
  "WAVE WebAIM", then install... [continues
  for 150 more words with no structure]
</p>
✓ After
<!-- Multiple representations: structured -->
<ol>
  <li>
    <strong>Install WAVE extension</strong>
    <p>Search "WAVE WebAIM" in your
       browser's extension store.</p>
  </li>
  <li>
    <strong>Navigate to page to audit</strong>
    ...
  </li>
</ol>
Switches when barrier mode is active above ↑
SECTION 04MULTIPLE MEANS OF ACTION & EXPRESSION
PRINCIPLE·III·ACTION & EXPRESSION

The HOW of Learning

How learners navigate a learning environment and express what they know is deeply variable. A 500-word essay measures writing ability as much as it measures understanding. UDL Principle III challenges designers to ask: what are you actually assessing — and does your format measure that, or something else entirely?

UDL 5.1 / 5.2ONLY ONE WAY TO RESPOND
ACCESSIBLE

Reflection: Accessibility in Your Work

Describe a time when you encountered an accessibility barrier in a training context. What was the impact? How would you address it now?

Choose your response format:

Any format accepted — choose what works best for you.

✓ Fix Available·UDL 5.1 / 5.2·Neurodiverse learners, ESL learners, learners with dysgraphia

A text essay is one expression modality. UDL Checkpoints 5.1 (Use multiple media for communication) and 5.2 (Use multiple tools for construction) call for offering genuine alternatives — not because learners are incapable, but because different formats allow different learners to demonstrate their actual understanding rather than their facility with a single medium. When the goal is reflection on accessibility barriers, audio, video, diagrams, or written responses can all show understanding equally well.

✕ Before
<!-- Single modality: essay required -->
<label for="response">
  Required: 500-word written response
</label>
<textarea id="response"
  minlength="2500"
  placeholder="Write your essay here..."
/>
<p>0 / 500 words required</p>
✓ After
<!-- Multiple modalities: learner chooses -->
<fieldset>
  <legend>Choose your response format:</legend>
  <label>
    <input type="radio" name="format"
      value="written" />
    Written response (150+ words)
  </label>
  <label>
    <input type="radio" name="format"
      value="audio" />
    Audio recording (1–3 min)
  </label>
  <!-- + video, diagram options -->
</fieldset>
Switches when barrier mode is active above ↑
SECTION 05ALL 31 UDL CHECKPOINTS

The UDL framework organizes 31 checkpoints across the three principles. Each checkpoint names a specific design strategy — and each one is a barrier when absent. Practical L&D examples are included for each.

IDCheckpointL&D Example
GUIDELINE 7 — RECRUITING INTEREST
7.1

Optimize individual choice and autonomy

Let learners choose topic order, case studies, or self-set pacing.

7.2

Optimize relevance, value, and authenticity

Connect content to learners' actual job tasks and real-world scenarios.

7.3

Minimize threats and distractions

Reduce visual noise; avoid auto-playing media; use focused layouts.

GUIDELINE 8 — SUSTAINING EFFORT & PERSISTENCE
8.1

Heighten salience of goals and objectives

Show learning objectives upfront; remind learners of the goal mid-module.

8.2

Vary demands and resources to optimize challenge

Offer scaffolded support, optional hints, and differentiated paths.

8.3

Foster collaboration and community

Include peer review activities, discussion prompts, or team challenges.

8.4

Increase mastery-oriented feedback

Provide feedback describing progress toward mastery, not just pass/fail.

GUIDELINE 9 — SELF-REGULATION
9.1

Promote expectations and beliefs that optimize motivation

Normalize struggle; celebrate effort; frame learning as growth.

9.2

Facilitate personal coping skills and strategies

Include reflection prompts and stress-management tips in high-stakes modules.

9.3

Develop self-assessment and reflection

Add confidence checks, self-quizzes, and "what surprised you?" prompts.

10 checkpoints in this principle · 31 total across all three

SECTION 06UDL VS. ACCOMMODATION

Accommodation and UDL both aim to support diverse learners — but they operate from fundamentally different starting points. Understanding this distinction is essential for L&D professionals building scalable, equitable learning.

Accommodation
Universal Design for Learning

Reactive

Proactive

Individual need must be identified first

Anticipates the full range of human variability

Solution retrofitted to existing design

Flexibility is built in from the start

Benefits one specific learner

Available to every learner by default

Creates ongoing administrative overhead

Reduces barriers systemically

"This student needs extended time."

"All learners advance at their own pace."

Note: Accommodation is not wrong — it is sometimes the only option when UDL wasn't applied from the start. But UDL is always the better long-term strategy. The goal is to design experiences that don't require accommodation in the first place.