UC Irvine Division of Teaching Excellence & Innovation

General Accessibility Structuring/Documents

  1. Resources
  2.  | 
  3. How To
  4.  | 
  5. Teaching Accessibility Guide
  6.  | Accessible Documents

When creating digital content, such as web pages, documents, or presentation slides, it is crucial to follow accessibility guidelines to ensure that content is readable, navigable, and usable for all learners. The goal is to improve clarity, enhance compatibility with screen readers, and promote equitable access to information, creating a more inclusive learning environment. Utilize built-in accessibility checkers, such as those in  such as Microsoft Office, Adobe Acrobat, Google Doc, and Canvas, to help ensure your content is accessible to everyone.

By implementing these accessibility guidelines, you can improve usability for a broad range of users, including those with disabilities. Using structured formatting and accessibility checkers helps eliminate barriers, ensures compliance with accessibility standards, and creates a more inclusive digital space that supports all users in navigating and engaging with content effectively.

Formatting & Structure Guidelines

Title

Header

d

List

Tables

Color Contrasts

Hyperlinks

Readable Font and Spacing

Self-Evaluation Questions

Title

A descriptive title helps all users understand the purpose of a webpage or document. Titles provide context and assist with navigation, particularly for users relying on assistive technologies.

Best Practices

  • Use a clear, descriptive title that accurately introduces the content.
  • Place the title at the beginning of the document or webpage.
  • Format the title distinctly using a large, bold font to differentiate it from the rest of the text.

Use proper heading structure (e.g., <h1> in HTML or “Title” style in word processors) so assistive technologies can identify it easily.

d

List

A list is a structured collection of related items, typically presented using bullet points, letters, or numbers. Lists help organize content, improve readability, and enhance navigation for users, especially those relying on assistive technologies. When properly formatted, lists provide a clear structure that screen readers can interpret effectively.

  • Use unordered lists (<ul>) for bullet points and ordered lists (<ol>) for numbered or sequenced items.
  • Ensure lists improve content organization and readability for all users.
  • Avoid using lists for layout purposes—they should only be used to present structured content.

Use proper HTML markup (<li>, <ol>, <ul>) so screen readers can recognize and interpret lists correctly.

Tables

When presenting content in a table format on a document or webpage, it is essential to structure the table in an accessible way to ensure that all users—especially screen reader users—can navigate, comprehend, and engage with the content efficiently.

Best Practices

  • Use tables for structured data only, ensuring proper header rows and column headers.
  • Avoid using tables for layout purposes, as this can confuse assistive technologies.
  • Utilize accessibility features in document editors to ensure proper table formatting.
  • Layout tables must linearize properly, maintaining logical reading order when content is removed from the table structure.
  • Review layout tables and consider replacing them with a CSS-based layout (e.g., divs) to improve readability and accessibility.

Data tables

Data tables are used to present information in a grid or tabular format. To ensure accessibility, data tables must be correctly marked up using HTML table elements. Improperly structured data tables can result in screen readers presenting the data in an unclear order, causing users to lose context and meaning. All data tables should include the following elements:

  • <table>: Defines the table
  • <tr>: Defines a table row
  • <th>: Defines a table header cell
  • <td>: Defines a table data cell

A simple data table consists of a single header row and/or header column, while a complex data table includes two or more header rows or columns. For complex data tables to be accessible, additional markup is necessary:

  • When header cells span multiple rows, id attributes (id=” “) are recommended to associate the header with the corresponding data cell.
  • Each header cell must have an id attribute that links it to the appropriate data cell, and all ids must be unique.

The scope attribute is an alternative method for marking up complex data tables, though it is less commonly used today. This attribute specifies whether a header cell applies to a column, row, or group of rows/columns:

  • Row: Scope of a row
  • Col: Scope of a column
  • Rowgroup: Scope of a group of rows
  • Colgroup: Scope of a group of columns

Layout tables

Layout tables are used for organizing non-data content to create visually appealing layouts. However, this practice is not recommended, as it can disrupt the reading order for users relying on assistive technologies. For non-data content, using a CSS-based layout (e.g., <ul>) is highly recommended. This approach provides developers with more control over the visual display without compromising accessibility and structure.

Color Contrast

Color enhances the design and visual appeal of digital content, but it can also create accessibility barriers if not used thoughtfully. Color contrast refers to the difference in brightness between a foreground element (such as text) and its background. A high contrast ratio improves readability, making content more accessible to individuals with low vision or color blindness. Proper contrast ensures that text and other visual elements remain clear and distinguishable, allowing all users to engage with digital content effectively.

Best Practices

  • Ensure sufficient contrast between text and background to improve readability.
  • Use contrast-checking tools to meet WCAG standards (minimum contrast ratio: 4.5:1 for normal text, 3:1 for large text).
  • Black text on a white background offers the highest readability.
  • Warm and cold colors typically provide the best contrast.
  • Use color palettes to select appropriate color combinations (e.g., Viget offers a variety of tints, tones, and shades).
  • Avoid relying on color alone to convey meaning; use text labels, patterns, or other visual cues.
  • For links, do not rely on color alone to differentiate them from regular text; use underline and HTML link markup.
  • For forms, add symbols or highlights to emphasize important text.
  • Avoid using sensory characteristics (e.g., color) as the only method to emphasize information or content.
  • Provide textual information for all elements on the page, including images, glyphs, and buttons.
  • When using buttons, always provide textual information in addition to the sensory characteristic (e.g., color or shape).
  • Avoid instructions that rely on sound.
  • Use a grayscale tool to test for color-only reliance and ensure content is accessible for colorblind users.
  • Do not rely on shapes solely by color; use numbers or text in addition to color to convey meaning.

Readable Fonts and Spacing

Text displayed on a webpage or digital document should be easy to read, particularly for people with visual impairments and reading disabilities. Resizable text is typically managed by the web browser using features like zoom and font size adjustments. Developers must ensure that the code supports these features without interfering with or negatively impacting how the browser applies text styles, allowing for better readability and user customization.

Best Practices

  • Use sans-serif fonts such as Arial or Verdana with a minimum font size of 11pt.
  • Apply adequate spacing (at least 1.5x) and left-align text for improved readability.
  • Avoid using text images, as the text in the image cannot be resized when the user adjusts the page.
  • Ensure text is resizable up to 200% without content being truncated or losing functionality.

Self-Evaluation Questions

Use these questions to assess whether your document meets accessibility standards:

Title & Headings

  • Is the document title clear and formatted as a heading?
  • Are headings structured logically and sequentially without skipping levels?

Text Formatting & Readability

  • Have you used a readable sans-serif font and a minimum font size of 11pt?
  • Is text properly spaced (1.5x or greater) and left-aligned

List & Structure

  • Are lists used appropriately to break up content and improve readability?
  • Have you avoided using tables for layout purposes?

Color Contrast & Visual Elements

  • Does the text have sufficient contrast with the background?
  • Have you avoided using color alone to convey meaning?

Images & Alternative Text

  • Do all non-decorative images have meaningful alt text?
  • Have you marked decorative images correctly with alt=””?

Hyperlinks & Navigation

  • Do hyperlinks use descriptive text rather than generic phrases like “Click here”?
  • If applicable, does the document include a Table of Contents with working links?

Language & Accessibility Tools

  • Is the document language correctly specified in the file properties?
  • Have you run an accessibility checker to identify and fix any issues?