216digital.
Web Accessibility

Phase 1
Web Remediation for Lawsuit Settlement & Prevention


Phase 2
Real-World Accessibility


a11y.Radar
Ongoing Monitoring and Maintenance


Consultation & Training

Is Your Website Vulnerable to Frivolous Lawsuits?
Get a Free Web Accessibility Audit to Learn Where You Stand
Find Out Today!

Web Design & Development

Marketing

PPC Management
Google & Social Media Ads


Professional SEO
Increase Organic Search Strength

Interested in Marketing?
Speak to an Expert about marketing opportunities for your brand to cultivate support and growth online.
Contact Us

About

Blog

Contact Us
  • Why Accessible Buttons Matter for Your Website

    Why Accessible Buttons Matter for Your Website

    As a website owner, developer, or content creator, you’ve probably heard the term “web accessibility” tossed around. But what does it really mean, and why should you care? Specifically, how do accessible buttons fit into this equation? In today’s blog post, we’ll break down everything you need to know about web accessibility for buttons. We’ll cover why it’s essential, the guidelines you need to follow, and practical tips on creating buttons that everyone can use.

    Why Web Accessibility for Buttons is Important

    Let’s start with the basics: what is web accessibility? Simply put, web accessibility means designing websites and digital tools so that everyone, including people with disabilities, can use them. This includes people with visual, auditory, cognitive, and motor impairments. Accessible buttons play a huge role in this.

    Think about how often you click a button online—whether you’re submitting a form, making a purchase, or navigating to another page. Now imagine trying to do those things if the buttons were hard to see, difficult to click, or didn’t make sense when read by a screen reader. For millions of people, this is a daily reality.

    Creating accessible buttons isn’t just about following guidelines—it’s about ensuring that everyone can interact with your website easily and effectively. By making your buttons accessible, you’re not only improving the user experience but also reaching a wider audience, boosting your SEO, and demonstrating social responsibility.

    Understanding the WCAG Guidelines for Accessible Buttons

    The Web Content Accessibility Guidelines (WCAG) are the go-to resource when it comes to web accessibility. They provide a set of recommendations designed to make web content more accessible to people with disabilities. When it comes to buttons, there are specific guidelines to keep in mind.

    Perceivable

    Text Alternatives (WCAG 1.1.1)

    Every button should have a text alternative that conveys the same information as the visual button. This can be done using alt text or aria-labels. This ensures that users who rely on screen readers can understand the button’s purpose.

    Contrast (WCAG 1.4.3)

    Buttons should be easily noticeable by all users, not just those with disabilities. Color plays a significant role in this. You’ll want to ensure that both the button color and the text have sufficient contrast. Buttons should have a high contrast ratio of at least 4.5:1 between the text and background colors to ensure they are easy to see, even for users with visual impairments.

    Operable

    Keyboard Accessibility (WCAG 2.1.1)

    Make sure that all buttons can be accessed and activated using a keyboard. This is crucial for users who cannot use a mouse. Not all users are able to use a mouse to navigate the web which means users need to be able to navigate and click on buttons using just their keyboard.

    Focus Indicators ( WCAG 2.4.13)

    When a button is selected or “focused,” it should be visually distinct so users can easily see which button they’re interacting with. Button elements should be designed to give a clear visual cue to the user. WCAG 2.4.13 recommends at least a 2 CSS pixel thick perimeter around the button.

    Understandable

    Clear Labels (WCAG 3.3.2)

    When creating buttons, make sure the labels are clear and easy to understand, so that users know what will happen when they click the button. You can use WAI-ARIA (ARIA roles) to help with this. By including ARIA labels in your HTML, you can avoid confusion and anxiety around buttons and clearly communicate what action will follow when the button is clicked.

    Consistent Navigation (WCAG 3.2.3)

    If your website uses buttons for navigation, ensure that the buttons are consistent across pages to avoid confusion.  

    Robust

    Screen Reader Compatibility (WCAG 4.1.2)

    Did you know that buttons have different states besides their default one? This includes hover, click, active, and more. Each of these states needs to have clear cues so that users with disabilities and assistive technologies can easily use them. It’s important to make sure your buttons work on different devices and web browsers, including with tools like screen readers. 

    We recommend testing your content with different types of screen readers, like NVDA, Voiceover, or JAWS, to ensure that they are being announced as buttons and not links.

    How to Create Accessible Buttons

    Now that you understand the importance and guidelines of web accessibility for buttons, let’s explore the practical steps you can take to make them accessible.

    Use Semantic HTML

    One of the simplest ways to make your buttons accessible is to use the correct HTML elements. For example, use the <button> tag for buttons rather than trying to repurpose other tags like <div> or <span>. The <button> tag is designed for user interaction and is inherently more accessible because it’s recognized by assistive technologies.

    Here’s a quick example:

    <button type="submit">Submit</button>

    This button is easy for screen readers to identify and interact with. It also works well with keyboards, making it accessible to a broader audience.

    Make Sure Button Labels are Clear and Descriptive

    Button labels should be straightforward and describe the action that will occur when clicked. Avoid using vague labels like “Click Here” or “More” because they don’t provide enough context. Instead, be specific. For instance, “Submit Form,” “Download Report,” or “Add to Cart” are much better options.

    A clear label helps everyone, but it’s especially crucial for screen reader users. When the screen reader announces the button, the user should instantly understand what will happen if they activate it.

    Provide Alt Text or ARIA Labels for Buttons

    If your button uses an image or icon instead of text, you need to provide an accessible name for the button. This can be done with alt text or an aria-label. This ensures that screen readers can announce the button’s function to the user.

    Here’s an example:

    <button aria-label="Search">
    <img src="search-icon.png" alt="">
    </button>

    In this case, the aria-label tells the screen reader that this is a search button, even though the button itself only displays an image.

    Ensure High Contrast for Better Visibility

    High contrast between the button text and background is essential for users with visual impairments, including color blindness. WCAG recommends a contrast ratio of at least 4.5:1 for normal text and 3:1 for large text.

    For example, if your button has white text on a blue background, make sure the shade of blue is dark enough to provide sufficient contrast.

    Test Keyboard Accessibility

    Many users rely on a keyboard rather than a mouse to navigate a website. Ensure that all buttons can be accessed using the Tab key and activated with the Enter or Space key.

    To test this, try navigating your site using only the keyboard. If you can’t reach or activate a button, you’ll need to adjust your code to make it keyboard accessible.

    The Role of Button Labels in Web Accessibility

    Button labels are crucial in web accessibility. They guide users on what to do next and are particularly important for those using screen readers or other assistive technologies. Here’s how to get button labels right:

    Write Alt Text as Simple Sentences

    If your button includes an image or icon, write alt text that clearly and succinctly describes the button’s action. Alt text should be simple, direct, and written as a complete sentence whenever possible. 

    For example:

    <button aria-label= "Download report">
    <img src="download-icon.png" alt="Download report">
    </button>

    This alt text tells the user exactly what the button does. Avoid overly complex or vague descriptions, as they can confuse users.

    Avoid Repeat or Redundant Button Labels

    On some websites, you might find multiple buttons with the same label, like several “Learn More” buttons on a single page. This can be confusing for users who rely on screen readers, as they won’t know which “Learn More” button corresponds to which section of content.

    To avoid this, make sure each button label is unique and descriptive. If you have several buttons that perform similar actions, differentiate them by adding context. For example:

    • “Learn More About Our Services”
    • “Learn More About Our Products”
    • “Learn More About Our Team”

    Testing and Maintaining Accessible Buttons

    Once you’ve created accessible buttons, it’s important to test them regularly to ensure they work as expected. Here are some ways to test your buttons:

    Screen Reader Testing

    Use a screen reader like NVDA (Windows), Voiceover (Mac), or JAWS to navigate your website. Ensure that each button is announced correctly and that its purpose is clear.

    Keyboard Navigation

    Test your site using only a keyboard to make sure that all buttons are accessible and functional. Check that the focus state is visible and that buttons can be activated with the Enter or Space key.

    Color Contrast Testing

    Use tools like the WCAG Contrast Checker to verify that your button colors meet accessibility standards.

    Ongoing Maintenance

    Web accessibility is not a one-time task. As you add new content and features to your website, make sure that any new buttons meet accessibility guidelines. Regularly audit your site to catch and fix any issues.

    216digital’s a11y.Radar ADA Monitoring

    With 216digital’s a11y.Radar, maintaining an ADA-compliant website is easier than ever. This automated platform continuously audits your site, reporting on accessibility efforts by your team or an external agency. You’ll get real-time updates on potential issues, access to an intuitive dashboard, and tools to manage and resolve problems.

    Key Features:

    • Dynamic Dashboard
    • Compliance Scans
    • Detailed Issue Reports
    • Issues Over Time Tracking
    • Manual Testing Reports
    • Email Alerts
    • Current Compliance Status

    Schedule a complimentary ADA Strategy Briefing to speak with one of our accessibility experts about a11y.Radar ADA Monitoring today.

    Button Up for Web Accessibility

    Web accessibility is essential for creating an inclusive online experience, and accessible buttons are a crucial part of that equation. By following the WCAG guidelines, using clear and descriptive labels, and testing your buttons for accessibility, you can ensure that your website is usable by everyone.

    Remember, accessible buttons not only help users with disabilities—they improve the overall user experience for everyone. As a website owner, developer, or content creator, making your buttons accessible is a simple yet powerful way to make your site more inclusive and effective.

    So, the next time you add a button to your website, take a moment to consider its accessibility. It’s a small effort that can make a big difference.

    Greg McNeil

    July 23, 2024
    How-to Guides
    Accessibility, Accessible Buttons, ADA Compliance, ADA Website Compliance, web development, Website Accessibility
  • What Are The Most Accessible Shopify Themes?

    What Are The Most Accessible Shopify Themes?

    Hey there, Shopify store owners, developers, and content creators! If you’re reading this, having a stunning online store is critical to attracting customers. But have you ever thought about making your store accessible to everyone, including people with disabilities? In today’s digital age, digital accessibility is crucial and more than just a buzzword. It’s about ensuring everyone can enjoy your site, no matter their abilities. Let’s dive into accessible Shopify themes and why they matter.

    Understanding Digital Accessibility

    Digital accessibility means designing websites and digital tools so everyone, including people with disabilities, can use them. Disabilities can be visual, auditory, physical, speech, cognitive, or neurological. When your site is accessible, you’re not just following best practices but also reaching a broader audience, enhancing your SEO, and showing you care about all your visitors.

    Why Accessibility Matters for Shopify Stores

    Shopify is one of the best e-commerce platforms for creating beautiful online stores. But beauty isn’t everything. Accessibility matters because:

    1. Inclusivity: Making your site accessible ensures everyone can use it, including those with disabilities. This increases your potential customer base.
    2. Legal Compliance: In the US, websites must comply with the Americans with Disabilities Act (ADA). Not following these guidelines can lead to lawsuits.
    3. SEO Benefits: Accessible sites are often better optimized for search engines, meaning better rankings and more traffic.
    4. Better User Experience: An accessible site is usually more user-friendly, keeping customers returning.

    What Makes a Shopify Theme Accessible?

    So, what should you look for in an accessible Shopify theme? Here are some key features:

    1. Keyboard Navigation: Users should be able to perform actions on your site using just a keyboard.
    2. Screen Reader Compatibility: Your site should work well with screen readers, which helps visually impaired users navigate the web.
    3. Text Alternatives: All images should have alt text so screen readers can describe them to users.
    4. Color Contrast: Text should have enough contrast with the background to be easily readable.
    5. Resizing Text: Users should be able to zoom and resize text without breaking your site’s layout.
    6. Clear Labels and Instructions: Forms and buttons should be clearly labeled so users know what they’re for.

    Top Accessible Shopify Themes Compatible with Online Store 2.0

    Now, let’s get into some of the most accessible Shopify themes compatible with Online Store 2.0. These themes are designed with digital accessibility in mind, ensuring your store is usable for everyone.

    Dawn

    Dawn is Shopify’s flagship theme for Online Store 2.0 and is built with accessibility in mind.

    • Keyboard Navigation: Dawn is fully navigable via keyboard, making it accessible for users who can’t use a mouse.
    • Screen Reader Support: The theme is compatible with screen readers, ensuring visually impaired users can access all content.
    • High Contrast: Dawn offers excellent contrast between text and background, which helps users with low vision.

    Craft

    Craft is perfect for stores with a focus on aesthetics and usability.

    • Text Alternatives: Every image in Craft can have alt text, making it accessible for screen readers.
    • Flexible Design: The theme’s layout adjusts well when text is resized, ensuring it remains readable.
    • Clear Instructions: Forms and interactive elements in Craft are clearly labeled.

    Sense

    Sense is a clean and modern theme designed for ease of use and accessibility.

    • High Contrast Mode: Sense offers a high-contrast color scheme, improving readability for low-vision users.
    • Accessible Forms: Forms are well-labeled and easy to use, ensuring everyone can complete purchases without hassle.
    • Keyboard-Friendly: Like the others, Sense is designed to work well with keyboard navigation.

    Crave

    Crave is a stylish theme that combines modern design with robust accessibility features.

    • Responsive Design: Crave’s responsive design ensures it looks great and works well on all devices, which is crucial for accessibility.
    • Alt Text: All images can have alt text, which is essential for screen reader users.
    • Clear Navigation: The navigation is straightforward to use, making it accessible to everyone.

    Refresh

    Refresh is ideal for stores that want a clean, modern look without compromising on accessibility.

    • Keyboard Navigation: The theme supports full keyboard navigation, ensuring users with disabilities can easily browse.
    • High Contrast: Refresh uses high contrast in its design, improving readability.
    • Screen Reader Friendly: It’s built to work seamlessly with screen readers.

    Tips for Enhancing Accessibility on Your Shopify Store

    Choosing an accessible theme is just the first step. Here are some additional tips to make your Shopify store even more accessible:

    1. Add Alt Text to Images: Every image on your site should have alternative text. This action helps screen reader users understand what’s on your site.
    2. Use Descriptive Links: Instead of “click here,” use descriptive text like “view our latest collection.”
    3. Ensure Text Readability: Use large, clear fonts and high-contrast colors.
    4. Test Your Site: Regularly check your site with the WAVE Web Accessibility Evaluation Tool for accessibility issues.
    5. Provide Keyboard Shortcuts: Offer keyboard shortcuts for common actions to make navigation easier.
    6. Accessible Forms: Make sure forms are easy to use and clearly labeled.
    7. Regular Updates: Keep your site and theme updated to fix any accessibility issues.

    Conclusion

    Digital accessibility isn’t just about ticking a box; it’s about creating an inclusive and user-friendly experience for all your visitors. Choosing an accessible Shopify theme like Dawn, Craft, Sense, Crave, or Refresh is a great start.

    Remember, an accessible site broadens your customer base, boosts your SEO, and helps you comply with legal requirements. So, take the time to invest in digital accessibility—it’s worth it!

    Starting your web accessibility journey on Shopify has never been easier with 216digital by your side. Schedule a complimentary ADA Strategy Briefing with our experts to craft a tailored plan for integrating WCAG 2.1 compliance into your development roadmap. We’re here to guide you every step of the way, ensuring that your online store meets accessibility standards while you focus on growing your business.

    Happy selling, and here’s to a more inclusive web!

    Greg McNeil

    July 18, 2024
    WCAG Compliance
    Accessibility, digital accessibility, Shopify, Shopify Themes, web development, Website Accessibility
  • Creating Web Accessible Links

    Creating Web Accessible Links

    The Internet has always been about connectivity. The links that crisscross every site play a vital role in guiding users as they explore the online realm. As one of the most basic elements of web accessibility, hyperlinks help users navigate to another page to access different types of digital content. While creating hyperlinks is easy, making them web accessible takes careful consideration. But how can we make sure they are accessible to everyone?

    What are Descriptive Links?

    A descriptive link provides clear information about where the link will take the user. Instead of generic terms like “click here” or “read more,” a descriptive link might say “learn about our sustainability practices” or “view our summer collection.” 

    Why Use Descriptive Links?

    People using screen readers either tab through links or bring up a list. This can take the link out of the context of the surrounding text. However, descriptive link text provides clarity, aiding users with assistive tools in grasping the destination of a link without additional information. By ensuring links are descriptive, users can confidently know the link’s destination, allowing those using assistive technologies to navigate more efficiently.

    Types of Links That Need to Be Accessible

    There are three types of links that need to be accessible: 

    Anchor Text

    Anchor text is clickable text linking to another page or file. The best practice is to ensure it’s descriptive. For example, instead of “Click here for more information about web accessibility,” use “Learn more about web accessibility.”

    Image Links

    Images links are clickable images or call-to-action buttons that link to another page or file. When using an image or button, an alternative text (alt text) must describe its purpose. This helps screen readers in conveying the link’s purpose to the user.

    Adjacent Links

    Adjacent links are two links next to each other that point to the same destination—for example, an image with text beneath it both linking to the same page.

    Creating Valid and Accessible Links

    Start with Valid HTML

    The foundation of any accessible website is its underlying code. Think of your site’s HTML as the skeleton, providing structure and meaning. Just as a well-built house begins with a solid foundation, a fully accessible website starts with clean, valid HTML.

    When crafting links, it’s essential to use the correct tags and attributes. The <a> (anchor) tag is the standard for creating links. 

    Here’s a basic example:

    <a href="https://www.example.com">Visit our homepage</a>

    This link is valid and clear, ensuring that screen readers and other assistive devices can interpret and present it correctly to the user.

    To be a valid link, it must have the following:

    • A href Attribute: The location or URL of the anchor, page, or resource. Without the href attribute, the <a> tag won’t work.
    • Link Content Text describing where the link is going. This could be plain text or the alt attribute of an image.
    • Opening and closing tags: An opening tag begins the link, and a closing tag ends it. A closing tag always precedes the element with a /.

    Write Helpful Link Text

    The actual text of your link is crucial for web accessibility. Avoid generic terms like “click here” or “read more.” Instead, aim for descriptive, context-rich text that clearly indicates the link’s destination or purpose. 

    For example:

    Instead of using

     <a href= "#">click here</a>.

    Use:

     <a href="#">View our comprehensive guide</a>.

    This approach benefits those using assistive technologies and improves the user experience for everyone, making your content more intuitive and navigable.

    What About the Title Attribute?

    The title attribute can provide additional information about a link. However, not all browsers present the title attribute accessibly, so individuals using keyboards or touch-only devices might not see this information. Therefore, using the title attribute on <a> elements is not recommended.

    Focus State and Keyboard Navigation

    Web accessibility isn’t just about screen readers. Many users use keyboards for navigation due to motor disabilities or personal preferences. It’s essential to ensure that all links are navigable and clearly highlighted when accessed via a keyboard.

    This is where the WCAG’s success criteria 2.4.7,  focus visible, comes into play. Essentially, when someone tabs through a website using the keyboard, the “focused” element (like a link) should have a clear visual indicator, such as a border or a change in background color.

    If you’re using CSS, you might apply a focus style like:

    a: focus { 
    outline: 2px solid black; }

    This will give a black outline to any link that’s currently selected via keyboard navigation.

    Moreover, make sure that the tab order (the sequence in which elements are selected when tabbing through) is logical and follows the flow of your content.

    When Should You Use a Button Instead?

    Links and buttons are often used interchangeably on the web. However, they serve distinct purposes:

    • Links: Primarily navigate users from one page or resource to another.
    • Buttons: Used for actions like submitting a form, opening a popup, or toggling content.

    From an accessibility standpoint, it’s essential to use them appropriately. Screen reader users, for instance, might need clarification if a link behaves like a button or vice versa.

    So, if you’re leading users to a different resource, use a link. Consider using a button if you’re prompting an action on the same page.

    Designing Accessible Buttons and Linked Images

    Design plays a significant role in digital accessibility. For buttons and linked images:

    1. Clear Labels: Ensure every button or link has a clear label. This assists not just visually impaired users but everyone. “Read more” is often ambiguous. Instead, be specific, like “Read more about web accessibility.”
    2. Contrast: Make sure there’s enough contrast between the button’s link text and its background. This helps people with visual impairments and disabilities easily identify and read content.
    3. Descriptive Alt Text for Linked Images: If an image acts as a link, ensure it has descriptive alternative text. This allows screen reader users to understand the purpose of the link. For instance, instead of “image1.jpg”, use “Click to view our accessibility guide.”
    4. Focus Indicators: Ensure links and buttons have a visible focus indicator. This helps keyboard-only users identify which element is currently in focus.

    Understanding Touch Target Size Accessibility

    Touch target is the area that responds to a user can press or click. It’s especially vital for touchscreen devices. Here’s what you should consider:

    1. Minimum Size: According to many WCAG guidelines, the touch target size should be at least 24×24 pixels. This ensures even users with motor disabilities can easily tap the element.
    2. Spacing: Ensure there’s enough space between tappable elements. Crowded links or buttons can lead to mistaken taps or clicks, frustrating users.
    3. Visual Feedback: When a user taps a link or button, provide visual feedback, like a color change, so they know their tap was successful.
    4. Font Size: The smallest acceptable font size is 14 points, but anything between 14 to 18 points, or equivalently 18.5 to 24 pixels, is considered compliant by WCAG.

    Take the Next Steps Toward Web Accessibility

    The digital realm has evolved, and web accessibility has emerged as a fundamental right, not just a trend. Making your website accessible isn’t just about compliance but inclusion. It’s about ensuring everyone can access and enjoy the content you’ve painstakingly created, regardless of their abilities. And while the nuances of accessibility can seem daunting, there are experts available to assist you. 

    216digital has been at the forefront of web accessibility, armed with the tools, knowledge, and experience to make your online space both compliant and welcoming for all. We will help you take the steps towards web accessibility on your terms by developing a strategy to integrate WCAG 2.1 compliance into your development roadmap. 

    So, if you’re committed to creating a digital space where everyone feels valued, don’t leave it to chance. Schedule a Complimentary ADA Strategy Briefing with the experts at 216digital, where web accessibility is more than just a checklist—it’s a mission.

    Greg McNeil

    October 10, 2023
    How-to Guides
    Accessibility, ADA Compliance, ADA Website Compliance, Links, Web Accessible Links, web development, Website Accessibility
  • Heading Towards Web Accessible Content

    Heading Towards Web Accessible Content

    Content is the backbone of your website. You’ve crafted a brilliant website or churned out stellar content, but have you ever paused to consider if everyone can access and experience it? If your website’s content is not easy to find, navigate, and consume, you risk losing visitors and potential earnings.

    The importance of having web accessible content and structure can’t be stressed enough. If you’re new to this concept, fret not! This article shares the basics of building user-friendly web page content, from accessible headings to typography.

    Semantic HTML

    Have you ever wondered how screen readers help visually impaired users navigate websites? It all boils down to the magic of Semantic HTML.

    HTML, or HyperText Markup Language, is the foundation of your website. It’s the code behind the scenes that structures your website’s content. Using semantic HTML elements correctly is like setting a well-organized table for dinner: everything is in its right place, and the guests know where to find what they need.

    What is Semantic HTML?

    Semantic HTML enhances the accessibility and user-friendliness of web content. It gives context and meaning to web page content using tags that align with human language and logic instead of non-semantic tags, which are meant solely for computer interpretation and don’t hold inherent human meaning.

    Take the tag <p> for instance. This semantic tag denotes that a specific text block is a standalone paragraph, providing users with clarity about the text’s structure and informing the browser on how to present it. On the other hand, non-semantic tags like <b>, which merely instructs that the text be bold, dictate only visual presentation without conveying additional contextual significance.

    Why Semantic HTML Matters

    Well-structured and semantically sound HTML aids search engines and assistive tools like screen readers in deciphering the nature and context of the content you’re sharing. Such HTML constructs make it simpler for browsers and accessibility technologies to grasp the meaning and interrelations within your website content.

    To illustrate, through semantic HTML, screen readers can identify the hierarchy of headers on a page (from <h1> to <h6>), determine where the webpage or section footer (<footer>) is, or discern added navigation aids (<nav>) in data tables.

    With such semantic guidance in HTML, people using assistive technologies will be able to comprehend the layout and intent of your web content. In fact, heading navigation is very common. The 2021 Screen Reader User Survey by WebAIM, shows that 67.7% of users use headings to find information. 

    Page Formatting

    A well-structured webpage isn’t just visually appealing; it’s easier to understand and navigate. Think of your website as a book. It becomes easier to follow with a proper table of contents and clear headings.

    What are Headings?

    One of the fundamental elements in creating web accessible content is the proper use of headings. Headings aren’t just big, bold text. They’re the signposts that guide readers through your content. Think of headings as the chapter titles in a book. You wouldn’t flip open a book and find chapters named randomly. Similarly, your web content should be clearly labeled in your HTML markup.  

    A clear, well-structured heading system aids those using assistive technology and benefits your average reader by allowing them to skim and understand the flow of your content quickly. 

    What Does “Hierarchical” Mean?

    At its core, a hierarchical structure means organizing content in a specific order or rank. In the context of a webpage, this refers to the arrangement of headings from most to least important. For instance, just like a tree has a trunk, main branches, and then smaller branches, your content should have a main heading, subheadings, and further divisions if necessary. 

    The h1 is the most important heading level, while the h6 is the least. For example, you will use h1 for the page title, whereas h2 would be a subheading and so forth if needed. The hierarchical structure allows both readers and screen readers to navigate through content easily.

    One h1 per Page

    The cardinal rule of web accessibility is that there should be only one main heading (h1) per page. Like a book’s title, this serves as the page’s main topic or purpose. Subtopics or related points should be categorized under subheadings like h2, h3, etc.

    Having multiple h1s on a web page is bad practice for accessibility and SEO. It creates a flat and meaningless structure. However, it’s not a WCAG 2 AA violation. 

    WCAG on Headings

    The Web Content Accessibility Guidelines (WCAG) is the go-to standard for web accessibility. However, WCAG is not very specific on its requirements for headings. 

    However, a few WCAG 2 AA criteria do specifically address headings and structures. For instance:

    • Success Criterion 2.4.6 Headings and labels: Ensure headings and labels aid users in navigating content and understanding their current location by clearly describing the topic or objective
    • Success Criterion  3.2.3 Consistent Navigation Level: When navigation elements are repeated across different pages within a site, they should maintain a consistent order unless the user decides to alter it.
    • Success Criterion 1.3.1 Info and Relationships: The information and its structural relations provided visually should also be discernible through its code. This implies the necessity of using the correct HTML tags, like h1 through h6, to represent heading levels.

    In essence, headings should be used to define content clearly and should be applied in a consistent and meaningful manner. Doing so aids all users, especially those using screen readers, in navigating and comprehending a website more effectively.

    What Makes Good Heading Text?

    A screen reader user can access a list of headings and skim through them to decide where to start reading on a webpage. While there is no accessibility requirement for the length of a heading text, usability is a factor to consider. 

    Making complete paragraphs into headings results in a horrible screen reader experience. Write concise, meaningful headings that provide insight into the content. 

    When you are generating your headings, ask yourself the following:

    • Does the header describe the content being discussed?
    • Are you able to skim the content using only headings?
    • Does every page have a clear and unique heading above the content?

    Headings in Design

    Here are some factors to consider when incorporating headings into your website’s design.

    Using Heading Labels for Styling

    When used appropriately, headings guide the reader through the content, highlighting the main topics and their relative importance. However, choosing heading levels based on their visual appearance or sizing rather than their semantic meaning is a common mistake. 

    For example, using an h2 tag simply because it looks “right” visually rather than because it denotes the second level of importance or hierarchy is misguided. This can confuse both users and assistive technologies, making content less accessible.

    All Caps

    Using all capital letters makes the text more challenging to read. When every word is in uppercase, it loses its unique shape and starts to look like a rectangle. Research has shown that text in all caps is particularly hard for those with dyslexia. Make life easy for your readers; avoid using all capital letters.

    Crafting Web Accessible Content with 216digital

    Navigating the intricacies of web accessibility can be challenging, but the rewards are immense. An accessible website is not just a legal obligation but an opportunity for your voice to be heard. Your content is valuable, and it should be accessible to everyone. If you’re still unsure where to start or how to enhance your website’s accessibility, the experts at 216digital are here to help. 

    If you’d like to talk further about your web accessibility initiative, Schedule a Complimentary ADA Strategy Briefing with the experts at 216digital. We will help you take the steps towards making your content web accessible on your terms by developing a strategy to integrate WCAG 2.1 compliance into your development roadmap.

    Greg McNeil

    October 5, 2023
    How-to Guides
    Accessibility, ADA Compliance, ADA Website Compliance, web development, Website Accessibility, Website Accessibility Tools
Previous Page
1 … 4 5 6
216digital Scanning Tool

Audit Your Website for Free

Find Out if Your Website is WCAG & ADA Compliant













    216digital Logo

    Our team is full of expert professionals in Web Accessibility Remediation, eCommerce Design & Development, and Marketing – ready to help you reach your goals and thrive in a competitive marketplace. 

    216 Digital, Inc. BBB Business Review

    Get in Touch

    2208 E Enterprise Pkwy
    Twinsburg, OH 44087
    216.505.4400
    info@216digital.com

    Support

    Support Desk
    Acceptable Use Policy
    Accessibility Policy
    Privacy Policy

    Web Accessibility

    Settlement & Risk Mitigation
    WCAG 2.1/2.2 AA Compliance
    Monitoring Service by a11y.Radar

    Development & Marketing

    eCommerce Development
    PPC Marketing
    Professional SEO

    About

    About Us
    Contact

    Copyright 2024 216digital. All Rights Reserved.