Skip to content
https://akc.org

Accessibility

· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.
SCORE
43
GRADE
F
FIX
10
REVIEW
1
PASS
2
INFO
0
Checks
13
2 PASS 1 REVIEW 10 FIX
D
Landmark Structure
Action
14 landmarks
FIX
14 landmarks
Critical::
No <main> landmark found
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Info::
13 <nav> landmark(s) found
Warning::
13 of 13 <nav> elements are unlabeled
Multiple navigations need aria-label to distinguish them for screen readers.
Info::
No banner (header) landmark
Info::
No contentinfo (footer) landmark
Warning::
Skip navigation link is missing (WCAG 2.4.1)
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Page Structure — as a screen reader sees it
BANNER (missing!) NAV MAIN (missing!) ASIDE CONTENTINFO (missing!)

Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.

Why this matters

Without a <main> landmark, screen-reader users can't skip past the navigation to the page content — every page starts with re-reading the menu.

Learn more

The <main> element marks the page's primary content area. Assistive tech offers a 'jump to main' shortcut — but only if <main> exists. Without it, every page navigation forces re-reading the header. Wrap your primary content in a single <main>.

Source: WAI-ARIA / WCAG 2.4.1

Multiple navigations need aria-label to distinguish them for screen readers.

Why this matters

Some <nav> elements lack aria-label — screen-reader users hear 'navigation' multiple times with no way to distinguish them.

Learn more

When a page has multiple <nav> regions (primary, footer, breadcrumb), each needs aria-label or aria-labelledby. AT users navigate by landmark; identical 'navigation' announcements force them to enter each one to discover purpose.

Source: WAI-ARIA Authoring Practices

Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.

Why this matters

Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.

Learn more

WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.

Source: WCAG 2.1 SC 2.4.1

F
Alt Text Quality
Action
56 of 162 images have issues
FIX
56 of 162 images have issues
Critical::
13 image(s) missing alt attribute
Images without alt text are invisible to screen readers.
Critical::
2 image-in-link without alt text
An image inside a link with no alt creates an empty link.
Warning::
43 image(s) with generic alt text
Info::
49 decorative image(s) correctly marked
Info::
57 image(s) with good alt text
162 images 57 good alt text 49 decorative 43 generic 13 missing
IssueCount
missing13 image(s)
generic43 image(s)

Images without alt text are invisible to screen readers.

Why this matters

Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.

Learn more

WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.

Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report

An image inside a link with no alt creates an empty link.

Why this matters

Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.

Learn more

An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.

Source: WCAG 2.1 SC 2.4.4

D
Form Accessibility
Action
7 of 8 controls have issues
FIX
7 of 8 controls have issues
Critical::
2 control(s) without accessible label
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
Got: <input type="checkbox" id="tablet-search-button">; <input type="checkbox" id="tablet-search-button">
Warning::
5 control(s) rely on placeholder only
Placeholder text disappears on focus and is not a reliable label.
Got: <input type="text">; <input type="text">; <input type="text" name="s" id="desktop-search">; <input type="text" name="s" id="mobile-search">; <input type="text" name="s" id="homepage-hero-aside__input">
Info::
1 control(s) properly labeled
8 controls
1 labeled
5 placeholder only
2 unlabeled
ControlTypeLabelMethod
#homepage-hero-breed-search-selectizedselect-oneSearch for a Breedfor/id
inputtext(Select Characteristic or Group...)placeholder only
#desktop-searchtext(Search)placeholder only
#mobile-searchtext(Search)placeholder only
inputtext(Select A Breed...)placeholder only
#homepage-hero-aside__inputtext(How can we help?)placeholder only
#tablet-search-buttoncheckbox(none)none
#tablet-search-buttoncheckbox(none)none

Form controls need a <label>, aria-label, or aria-labelledby for screen readers.

<input type="checkbox" id="tablet-search-button">; <input type="checkbox" id="tablet-search-button">

Why this matters

Form controls without labels — assistive tech announces 'edit text' with no context; users can't complete forms.

Source: WCAG 2.1 SC 3.3.2

Placeholder text disappears on focus and is not a reliable label.

<input type="text">; <input type="text">; <input type="text" name="s" id="desktop-search">; <input type="text" name="s" id="mobile-search">; <input type="text" name="s" id="homepage-hero-aside__input">

Why this matters

Placeholder-only labels disappear when the user starts typing — they must remember what the field was for.

Learn more

Placeholders are NOT labels. They vanish on input, fail color contrast checks (most are gray), and don't satisfy WCAG SC 3.3.2. Always use a real <label> alongside (or aria-labelledby).

Source: WCAG 2.1 SC 3.3.2 / Nielsen Norman

D
404 Error Page
Action
HTTP 404, custom page
FIX
HTTP 404, custom page
Info::
Correct 404 status code returned
Got: HTTP 404
Info::
Custom styled 404 page
404 Page Quality Custom 404 Page
Status Code HTTP 404 Custom Styling Navigation Homepage Link Search Form
D
Web Manifest
Action
Not found
FIX
Not found
Info::
No web manifest found
No manifest at standard paths (/manifest.json, /site.webmanifest). A manifest is optional but enables PWA features like home screen installation and standalone display.

No web manifest found.

D
Dark Mode Support
Action
No dark mode signals
FIX
No dark mode signals
Info::
No dark mode signals detected
Consider adding CSS with @media (prefers-color-scheme: dark) and <meta name='color-scheme' content='light dark'>.
Info::
Detection limited to meta tags and inline styles
External CSS files may contain prefers-color-scheme rules not visible to this scan.
Dark ModeNo Dark Mode Detected
color-scheme meta Not set Dark theme-color Not set CSS indicators Not detected

Detection limited to meta tags and inline styles.

D
Print Stylesheet
Action
No print styles
FIX
No print styles
Info::
No print-specific styles detected
When users print this page, they get the screen layout including navigation and non-essential elements. Add @media print rules to hide navigation and optimize layout for paper.
Print Stylesheet No Print Styles
Print stylesheet Not found Inline @media print Not detected
F
Navigation UX
Action
No navigation patterns
FIX
No navigation patterns
Info::
13 navigation landmark(s) detected
Info::
No breadcrumbs, search, or skip link detected
These navigation aids help users orient themselves and find content efficiently, especially on large sites.
Breadcrumbs
Search
Skip Link
Labeled Navigation 13 <nav> element(s)
Back to Top
Hamburger Menu
Sticky Navigation Cannot reliably detect (CSS-based)
1 of 6 testable patterns navigation patterns detected. Limited navigation support. Consider adding breadcrumbs, search, and skip link.
D
Lighthouse Accessibility Audits
Action
Score 60/100 — 10 failing, 23 passed
FIX
60

Accessibility

These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.

ARIA

Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. Learn how to match ARIA attributes to their roles.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Dog Info div > div > ul > li.AKC-Nav__mobile__single-tab
Registration div > div > ul > li.AKC-Nav__mobile__single-tab
Sports & Events div > div > ul > li.AKC-Nav__mobile__single-tab
Clubs & Delegates div > div > ul > li.AKC-Nav__mobile__single-tab
Expert Advice div > div > ul > li.AKC-Nav__mobile__single-tab

Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. Learn more about ARIA roles and required parent element.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Dog Info div > ul > li.AKC-Nav__mobile__single-tab > details#tab__dog-info
Registration div > ul > li.AKC-Nav__mobile__single-tab > details#tab__registration
Sports & Events div > ul > li.AKC-Nav__mobile__single-tab > details#tab__sports-events
Clubs & Delegates div > ul > li.AKC-Nav__mobile__single-tab > details#tab__clubs-delegates
Expert Advice div > ul > li.AKC-Nav__mobile__single-tab > details#tab__expert-advice

ARIA roles must have valid values in order to perform their intended accessibility functions. Learn more about valid ARIA roles.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Dog Info Registration Sports & Events Clubs & Delegates Expert Advice div.AKC-Nav__mobile > div > div > ul

Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more about valid values for ARIA attributes.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Dog Info div > ul > li.AKC-Nav__mobile__single-tab > details#tab__dog-info
Registration div > ul > li.AKC-Nav__mobile__single-tab > details#tab__registration
Sports & Events div > ul > li.AKC-Nav__mobile__single-tab > details#tab__sports-events
Clubs & Delegates div > ul > li.AKC-Nav__mobile__single-tab > details#tab__clubs-delegates
Expert Advice div > ul > li.AKC-Nav__mobile__single-tab > details#tab__expert-advice

These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.

Names and labels

When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div.autocomplete__wrap > div.search-with-icon > form.flex-search-form > button.button div.autocomplete__wrap > div.search-with-icon > form.flex-search-form > button.button

Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap > img.lozad div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap > img.lozad
div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap > img.lozad div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap > img.lozad

Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
body.home > div#slim-header > div.slim-header > a.site-header__logo body.home > div#slim-header > div.slim-header > a.site-header__logo
div.interactive-hero__inner > div#welcome > div.interactive-hero__item-inner > a.interactive-hero__image-wrap div.interactive-hero__inner > div#welcome > div.interactive-hero__item-inner > a.interactive-hero__image-wrap
div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap
div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap
div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap
div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap
div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-hero__image-wrap

These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.

Contrast

Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Register Today div.interactive-hero__inner > div#welcome > div.interactive-hero__item-inner > a.interactive-anchor
Training div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor
Find Puppies div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor
AKC TV div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor
Shop New Products div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor
Learn about Pet Insurance div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor
Sports & Events div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor
MAKE IT OFFICIAL TODAY div.content-block > div.content-block__bottom-content > div.content-block__button > a.button
What to Do When Your Dog Is Lost: First 48 Hours div.grid-col > div.content-card > div.content-card__body > a.content-card__title
The Rarest Dog Breeds of 2025 div.grid-col > div.content-card > div.content-card__body > a.content-card__title
Fun Facts About the Irish Wolfhound div.grid-col > div.content-card > div.content-card__body > a.content-card__title
Everything You Need to Know About Neosporin for Dogs div.grid-col > div.content-card > div.content-card__body > a.content-card__title
Junior Handler Spotlight: Kole Brown div.grid-col > div.content-card > div.content-card__body > a.content-card__title
Get tips and tricks from AKC’s experts in our lifestyle magazine for dog lovers div.grid-col > div.content-card > div.content-card__body > a.content-card__title
Everything You Need to Know About Hyperkeratosis in Dogs div.grid-col > div.content-card > div.content-card__body > a.content-card__title
EXPLORE BREEDS div.tool-grid > div.tool-grid__wrap > div.tool-grid__col > a.tool-grid__link
FIND YOUR MATCH div.tool-grid > div.tool-grid__wrap > div.tool-grid__col > a.tool-grid__link
DOG NAME FINDER div.tool-grid > div.tool-grid__wrap > div.tool-grid__col > a.tool-grid__link
Conformation div#slick-slide00 > a.event > div.event__title-area > h3.event__title
FIND EVENTS NEAR YOU section.page-section > div.event-slider > div.d-table > a.button
ABOUT US + div.site-footer__wrap > div.site-footer__column > div.site-footer__section > h3.site-footer__section-title
TOP SERVICES + div.site-footer__wrap > div.site-footer__column > div.site-footer__section > h3.site-footer__section-title
TOP RESOURCES + div.site-footer__wrap > div.site-footer__column > div.site-footer__section > h3.site-footer__section-title
GET INVOLVED + div.site-footer__wrap > div.site-footer__column > div.site-footer__section > h3.site-footer__section-title
FAVORITE THINGS + div.site-footer__wrap > div.site-footer__column > div.site-footer__section > h3.site-footer__section-title

These are opportunities to improve the legibility of your content.

Best practices

Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.

Why this matters

Informational: a Permissions-Policy directive showing feature -> allowed origins.

Source: MDN Permissions-Policy

Failing Elements
head > meta head > meta

Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Training div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor
AKC TV div.interactive-hero__inner > div.interactive-hero__item > div.interactive-hero__item-inner > a.interactive-anchor

These items highlight common accessibility best practices.

Interactive controls are keyboard focusable
Interactive elements indicate their purpose and state
The page has a logical tab order
Visual order on the page follows DOM order
User focus is not accidentally trapped in a region
The user's focus is directed to new content added to the page
HTML5 landmark elements are used to improve navigation
Offscreen content is hidden from assistive technology
Custom controls have associated labels
Custom controls have ARIA roles
`[aria-hidden="true"]` is not present on the document `<body>`
`[role]`s have all required `[aria-*]` attributes
Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children.
`[aria-*]` attributes are valid and not misspelled
Form elements have associated labels
Select elements have associated label elements.
ARIA attributes are used as specified for the element's role
Elements with `role="dialog"` or `role="alertdialog"` have accessible names.
`[aria-hidden="true"]` elements do not contain focusable descendents
Elements use only permitted ARIA attributes
Document has a `<title>` element
`<html>` element has a `[lang]` attribute
`<html>` element has a valid value for its `[lang]` attribute
Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`).
List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements
No element has a `[tabindex]` value greater than 0
Heading elements appear in a sequentially-descending order
Document has a main landmark.
Deprecated ARIA roles were not used
ARIA IDs are unique
Uses ARIA roles only on compatible elements
Identical links have the same purpose.
Elements with visible text labels have matching accessible names.
`[accesskey]` values are unique
`button`, `link`, and `menuitem` elements have accessible names
ARIA input fields have accessible names
ARIA `meter` elements have accessible names
ARIA `progressbar` elements have accessible names
Elements with the `role=text` attribute do not have focusable descendents.
ARIA toggle fields have accessible names
ARIA `tooltip` elements have accessible names
ARIA `treeitem` elements have accessible names
The page contains a heading, skip link, or landmark region
`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements.
Definition list items are wrapped in `<dl>` elements
No form fields have multiple labels
`<frame>` or `<iframe>` elements have a title
`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute.
Input buttons have discernible text.
`<input type="image">` elements have `[alt]` text
Links are distinguishable without relying on color.
The document does not use `<meta http-equiv="refresh">`
`<object>` elements have alternate text
Skip links are focusable.
Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table.
`<th>` elements and elements with `[role="columnheader"/"rowheader"]` have data cells they describe.
`[lang]` attributes have a valid value
`<video>` elements contain a `<track>` element with `[kind="captions"]`
Tables have different content in the summary attribute and `<caption>`.
All heading elements contain content.
Image elements do not have `[alt]` attributes that are redundant text.
Tables use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption.
`<td>` elements in a large `<table>` have one or more table headers.
B
Favicon & Branding
4 icon(s) detected
REVIEW
4 icon(s) detected
Info::
favicon.ico present at site root
Info::
HTML icon links detected
Info::
Apple touch icon present
Info::
Multiple icon sizes detected
favicon.ico Present
PNG Icons Present
Apple Touch Present
SVG Favicon Missing
Manifest Icons Missing
Multiple Sizes Present
A+
Heading Hierarchy
199 headings
PASS
199 headings
Info::
Single H1 present
  • H6 DISCOVER AKC DOG BREEDS
  • H6 View All AKC Breeds
  • H6 Read Expert Breed Articles
  • H6 Find Your Perfect Match
  • H6 Compare Dog Breeds
  • H6 SEARCH BREEDS
  • H6 QUICK ACCESS
  • H6 Register a Dog or Litter
  • H6 Advertise Your Litter
  • H6 Breeder Toolkit
  • H6 New to Breeding
  • H6 AKC DNA Program
  • H6 AKC DNA Kit Activation
  • H6 BREEDER PROGRAMS & SERVICES
  • H6 Breeder Education
  • H6 Bred with H.E.A.R.T Program
  • H6 Breeder of Merit Program
  • H6 AKC Breeder Inspections
  • H6 Breeder Webinars
  • H6 Puppy Folders
  • H6 Browse All Breeder Services
  • H6 QUICK ACCESS
  • H6 Register My Dog
  • H6 Can My Dog Eat..?
  • H6 Dog Training
  • H6 AKC Essentials
  • H6 Caring for your dog
  • H6 Browse All Expert Advice
  • H6 Health services
  • H6 Browse All Services
  • H6 QUICK ACCESS
  • H6 AKC Marketplace
  • H6 AKC PuppyVisor
  • H6 Find Your Perfect Match
  • H6 AKC Rescue Network
  • H6 Breeder Referral Contacts
  • H6 HELPFUL TOOLS
  • H6 Puppy Preparation Online Course
  • H6 Dog Name Finder
  • H6 Dog Breed Comparing Tool
  • H6 HELPFUL RESOURCES
  • H6 Quick Access
  • H6 Shop By Breed
  • H6 Browse all Supplies
  • H6 Browse AKC Shop Products
  • H6 AKC Pro Shop
  • H6 Breeder Reports
  • H6 Pedigrees
  • H6 AKC Competitor Reports
  • H6 Health & AKC DNA
  • H6 AKC DNA Program
  • H6 AKC DNA Kit Activation
  • H6 AKCRx Online Pharmacy
  • H6 Gifts For Dog Lovers
  • H6 Art & Custom Work
  • H6 Clothing & Accessories
  • H6 Seasonal
  • H6 AKC Magazine
  • H6 QUICK ACCESS
  • H6 Register My Dog
  • H6 Register My Litter
  • H6 Transfer Dog Ownership
  • H6 Breeder Toolkit
  • H6 SPECIAL REGISTRATION
  • H6 Canine Partners
  • H6 Foundation Stock Service
  • H6 Foreign Dog Registration
  • H6 Purebred Alternative Listing (PAL)
  • H6 Open Registration
  • H6 Helpful Links
  • H6 QUICK ACCESS
  • H6 Event Search
  • H6 Title Application Portal
  • H6 All Sports & Events
  • H6 Browse by sport type
  • H6 Conformation Dog Shows
  • H6 Companion Dog Sports
  • H6 Performance Dog Sports
  • H6 Title Recognition Program
  • H6 AKC Family Dog Program
  • H6 Sports for AKC Juniors
  • H6 Contact Information for All AKC Sports
  • H6 AKC Titles & Abbreviations
  • H6 AKC Sponsored Events
  • H6 QUICK ACCESS
  • H6 Rules & Regulations
  • H6 Points & Awards
  • H6 Downloadable Forms
  • H6 Event Resources
  • H6 Finding an Event
  • H6 Online Event Management
  • H6 Title Application Portal
  • H6 Event Results
  • H6 Title Recognition Program
  • H6 For Judges
  • H6 Judges Directory
  • H6 Judges Education: AKC Canine College
  • H6 Judging Resource Center
  • H6 EVENT UPDATES
  • H6 Upcoming Events
  • H6 Event Cancellations
  • H6 AKC Weekly Winners
  • H6 Award Corrections
  • H6 QUICK ACCESS
  • H6 Introduction to Dog Sports
  • H6 Get Started in Dog Training
  • H6 AKC Titles & Achievements
  • H6 Helpful Links
  • H6 Find the Dog Sport for You: Interactive Quiz
  • H6 Virtual Dog Sports: Get Started at Home
  • H6 AKC Sports for Beginners
  • H6 Conformation Starter Guide
  • H6 AKC Sports in Action
  • H6 Browse All Sports & Events
  • H6 QUICK ACCESS
  • H6 Search All Dog Clubs
  • H6 How to Form a Dog Club
  • H6 National Breed Club Directory
  • H6 Helpful Links
  • H6 QUICK ACCESS
  • H6 Delegate Portal
  • H6 Delegate Directory & Search
  • H6 Board Minutes
  • H6 Helpful Links
  • H6 QUICK ACCESS
  • H6 Legislative Action Center
  • H6 Legislative Alerts
  • H6 Government Relations Department
  • H6 Helpful Links
  • H6 FEATURED ARTICLES
  • H6 Keeping Your Dog Safe During Flea and Tick Season
  • H6 Your Dog’s First Obedience Class
  • H6 Dog Ownership Etiquette
  • H6 The History of Dog Shows
  • H6 Care for your dog
  • H6 Fun with your dog
  • H6 Other resources
  • H6 AKC Library
  • H6 Browse All Expert Advice
  • H1 Everything We Do, We Do for Dogs
  • H2 Declare Your Love and Register with the AKC
  • H2 Top Stories
  • H2 Latest Stories
  • H2 Find The Right Breed
  • H2 AKC Cares
  • H2 AKC Canine Health Foundation
  • H2 AKC Canine Health Foundation
  • H2 Rescue Network
  • H2 Rescue Network
  • H2 AKC Reunite
  • H2 AKC Reunite
  • H2 AKC Humane Fund
  • H2 AKC Humane Fund
  • H2 Museum of the Dog
  • H2 Museum of the Dog
  • H2 Protecting Your Rights
  • H2 Protecting Your Rights
  • H2 Sports & Events
  • H3 Coonhound
  • H3 Trick Dog
  • H3 Conformation
  • H3 Agility
  • H3 Rally
  • H3 Fast CAT
  • H3 Virtual Home Manners
  • H3 Scent Work
  • H3 Obedience
  • H3 Tracking
  • H3 Herding
  • H3 Earth Dog
  • H3 Field Trials
  • H3 Hunting
  • H3 Farm Dog Certified
  • H3 Lure Coursing
  • H3 Coursing Ability
  • H3 Coonhound
  • H3 Trick Dog
  • H3 Conformation
  • H3 Agility
  • H3 Rally
  • H3 Fast CAT
  • H3 Virtual Home Manners
  • H3 Scent Work
  • H3 Obedience
  • H3 Tracking
  • H3 Herding
  • H3 Earth Dog
  • H3 Field Trials
  • H3 Hunting
  • H3 Farm Dog Certified
  • H3 Lure Coursing
  • H3 Coursing Ability
  • H3 Coonhound
  • H3 Trick Dog
  • H3 ABOUT US +
  • H3 Top Services +
  • H3 Top Resources +
  • H3 Get Involved +
  • H3 Favorite Things +
A+
Color Contrast (Screenshot)
20 text elements analyzed, 0 fail WCAG AA
PASS

Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.

20 pass
Show all checked elements (20)
ElementRatioRequiredFGBGResult
h1 Everything We Do, We…21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Declare Your Love an…21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Top Stories21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Latest Stories21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Find The Right Breed21.00:13.0:1
#000000
#FFFFFF
Pass
h2 AKC Cares21.00:13.0:1
#000000
#FFFFFF
Pass
h2 AKC Canine Health Fo…21.00:13.0:1
#000000
#FFFFFF
Pass
h2 AKC Canine Health Fo…21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Rescue Network21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Rescue Network21.00:13.0:1
#000000
#FFFFFF
Pass
h2 AKC Reunite21.00:13.0:1
#000000
#FFFFFF
Pass
h2 AKC Reunite21.00:13.0:1
#000000
#FFFFFF
Pass
h2 AKC Humane Fund21.00:13.0:1
#000000
#FFFFFF
Pass
h2 AKC Humane Fund21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Museum of the Dog21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Museum of the Dog21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Protecting Your Righ…21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Protecting Your Righ…21.00:13.0:1
#000000
#FFFFFF
Pass
h2 Sports & Events21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Coonhound21.00:13.0:1
#000000
#FFFFFF
Pass

Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.

All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback