Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FHeading HierarchyAction41 headings, 3 skip(s)FIX
- H3 6 Musicals That Put a Modern Spin on Shakespeare
- H4 'This Is a Gardening Show' and 4 More Shows to Watch for Earth Day
- H4 10 Things From the 2000s That Are Suddenly Collectible—and Valuable
- H4 Why Is It Easier to Remember Faces Than Names?
- H3 Quiz: Can You Name These ‘80s Movie Stars in 8 Minutes or Less?
- H3 4 Unsettling Theories About Edgar Allan Poe’s Death That Experts Still Can’t Explain
- H3 6 Facts About Climate Change
- H3 The Beatles’ 5 Most Underrated Songs
- H3 Amazing Fact Generator
- H2 LANGUAGE
- H3 The Meaning of Viral Text Abbreviation "DTM," Explained
- H3 What Is “Girl Dinner” and Why Did It Go Viral?
- H3 Where Does the Saying “Bite the Bullet” Come From?
- H3 What Does "Maxxing" Mean? The Viral Internet Slang Term, Explained
- H3 The Word "Nitpicking" Might Not Mean What You Think It Means
- H2 HISTORY
- H4 SEE MORE skipped
- H3 The Beatles and 6 Bands That Broke Up at Their Peak
- H3 The Real Meaning Behind Angel Number 666
- H3 If the Titanic Sank Today, What Are the Odds You'd Survive?
- H3 4 Cults That Prophesied the End of the World
- H2 ENTERTAINMENT
- H4 SEE MORE skipped
- H3 'The Mummy' Movies, Ranked From Least to Most Cursed
- H3 8 Famous Albums Recorded in Less Than a Week
- H3 Quiz: Can You Match These ‘80s Sitcom Catchphrases to the TV Show?
- H3 Quiz: How Quickly Can You Name the Disney Movie Title With One Typo?
- H2 GEOGRAPHY
- H2 5 Luxury River Cruises That Double as Floating Hotels
- H3 5 Destinations Where Tourists Outnumber Locals (And Where to Travel Instead)
- H3 6 Quiet Towns Where Cars Are Banned
- H2 QUIZZES
- H4 SEE MORE skipped
- H3 Quiz: Can You Name the Disney Movie Based on the Villain’s Plan?
- H3 Quiz: Which 'Harry Potter' Character Are You?
- H3 Quiz: How Many Eastern Time Zone Cities Can You Name Before Time’s Up?
- H3 Quiz: Can You Match These Beatles Songs to the Year They Came Out?
- H2 Privacy Preference Center
- H3 Manage Consent Preferences
- H4 Targeting Cookies
- H3 Cookie List
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
Source: WCAG 2.4.6 / Google Search Central
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
DLink & Button QualityAction8 issue(s) across 78 links and 14 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.facebook.com/mentalflossmaga… | (empty) | empty | Add link text or aria-label |
| https://twitter.com/mental_floss | (empty) | empty | Add link text or aria-label |
| https://www.instagram.com/mental_floss/ | (empty) | empty | Add link text or aria-label |
| https://www.tiktok.com/@mental_floss | (empty) | empty | Add link text or aria-label |
| https://www.youtube.com/c/MentalFloss | (empty) | empty | Add link text or aria-label |
| https://www.minutemedia.com/ | Minute Media | new tab | Add '(opens in new tab)' to text |
| https://cookiepedia.co.uk/giving-consent… | More information about your pr… | new tab | Add '(opens in new tab)' to text |
| https://www.onetrust.com/products/cookie… | Powered by OneTrust Opens in a… | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://www.facebook.com/mentalflossmagazine; https://twitter.com/mental_floss; https://www.instagram.com/mental_floss/; https://www.tiktok.com/@mental_floss; https://www.youtube.com/c/MentalFloss
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://www.minutemedia.com/; https://cookiepedia.co.uk/giving-consent-to-cookies; https://www.onetrust.com/products/cookie-consent/
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
Icon-only buttons need an aria-label so screen readers can announce them.
button._1lj3pvf (#392 on page); button._1lj3pvf (#395 on page); button (#881 on page)
Buttons with no accessible text (icon-only, no aria-label) can't be activated by voice control or understood by screen readers.
Source: WCAG 2.1 SC 4.1.2
FFavicon & BrandingAction1 icon(s) detectedFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure39 landmarksREVIEW
Multiple navigations need aria-label to distinguish them for screen readers.
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.
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
C404 Error PageActionHTTP 404, custom pageREVIEW
CLighthouse Accessibility AuditsActionScore 75/100 — 6 failing, 17 passedREVIEW
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
Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. Learn more about prohibited ARIA roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Show More Menu Items div.headerFirstRow_yp7x2r > div.headerFirstRowItemsContainer_7pw4zh > div.style_c5fsgq > div.wrapper_mspo68 |
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
article._7a0a3f > header._a80qtg > menu._1fcr9k0 > button._1lj3pvf article._7a0a3f > header._a80qtg > menu._1fcr9k0 > button._1lj3pvf |
article._7a0a3f > header._a80qtg > menu._1fcr9k0 > button._1lj3pvf article._7a0a3f > header._a80qtg > menu._1fcr9k0 > button._1lj3pvf |
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
The Meaning of Viral Text Abbreviation "DTM," Explained div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 > article.wrapper_1l1hla > a.style_v87xme |
What Is “Girl Dinner” and Why Did It Go Viral? div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 > article.wrapper_1l1hla > a.style_v87xme |
Where Does the Saying “Bite the Bullet” Come From? div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 > article.wrapper_1l1hla > a.style_v87xme |
What Does "Maxxing" Mean? The Viral Internet Slang Term, Explained div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 > article.wrapper_1l1hla > a.style_v87xme |
The Word "Nitpicking" Might Not Mean What You Think It Means div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 > article.wrapper_1l1hla > a.style_v87xme |
Quiz: How Many Eastern Time Zone Cities Can You Name Before Time’s Up? div.section_vf2h3p-o_O-padding_mpeynb > div.thirdCard_1yehlh2-o_O-minorCard_1w3pa4f > article.style_1r31u9p-o_O-wrapper_qavtu4 > a.wrapper_1szuq01 |
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
NEWSLETTER ul.scrollableUl_1l8sepq > li.li_1jtlxvu > a.spanWrapper_xsrqq9 > span.span_5kaapu-o_O-tagStyle_j66l0-o_O-link_1jh80f4 |
AMAZING FACTS ul.scrollableUl_1l8sepq > li.li_1jtlxvu > a.spanWrapper_xsrqq9 > span.span_5kaapu-o_O-tagStyle_j66l0-o_O-link_1jh80f4 |
BIG QUESTIONS ul.scrollableUl_1l8sepq > li.li_1jtlxvu > a.spanWrapper_xsrqq9 > span.span_5kaapu-o_O-tagStyle_j66l0-o_O-link_1jh80f4 |
These are opportunities to improve the legibility of your content.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
SEE MORE div.padding_mpeynb-o_O-container_1eu48ni > div.titleItem_1wwpoag > a.base_1mjl8bb-o_O-style_db55wj-o_O-additionalStyle_1sawstz > h4.tagStyle_j66l0-o_O-linkText_1wkh9lf |
SEE MORE div.padding_mpeynb-o_O-container_1eu48ni > div.titleItem_1wwpoag > a.base_1mjl8bb-o_O-style_db55wj-o_O-additionalStyle_1sawstz > h4.tagStyle_j66l0-o_O-linkText_1wkh9lf |
SEE MORE div.padding_mpeynb-o_O-container_1eu48ni > div.titleItem_1wwpoag > a.base_1mjl8bb-o_O-style_db55wj-o_O-additionalStyle_1sawstz > h4.tagStyle_j66l0-o_O-linkText_1wkh9lf |
These are opportunities to improve keyboard navigation in your application.
Tables and lists
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1
The Meaning of Viral Text Abbreviation "DTM," Explained div.wrapper_v8g468-o_O-sectionStyle_r3acvb-o_O-padding_mpeynb > section.sectionStyle_r3acvb > div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 |
2
What Is “Girl Dinner” and Why Did It Go Viral? div.wrapper_v8g468-o_O-sectionStyle_r3acvb-o_O-padding_mpeynb > section.sectionStyle_r3acvb > div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 |
3
Where Does the Saying “Bite the Bullet” Come From? div.wrapper_v8g468-o_O-sectionStyle_r3acvb-o_O-padding_mpeynb > section.sectionStyle_r3acvb > div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 |
4
What Does "Maxxing" Mean? The Viral Internet Slang Term, Explained div.wrapper_v8g468-o_O-sectionStyle_r3acvb-o_O-padding_mpeynb > section.sectionStyle_r3acvb > div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 |
5
The Word "Nitpicking" Might Not Mean What You Think It Means div.wrapper_v8g468-o_O-sectionStyle_r3acvb-o_O-padding_mpeynb > section.sectionStyle_r3acvb > div.wrapper_1c773za-o_O-style_1tw771s > li.numberAndCardWrapper_camf91 |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
A+Alt Text QualityAll 29 images OKPASS
| Issue | Count |
|---|---|
| too long | 1 image(s) |
A+Form AccessibilityAll 6 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #ot-group-id-C0004 | checkbox | Targeting Cookies | for/id |
| #vendor-search-handler | text | Cookie list search | aria-label |
| #chkbox-id | checkbox | checkbox label | for/id |
| #select-all-hosts-groups-handler | checkbox | checkbox label | for/id |
| #select-all-vendor-groups-handler | checkbox | checkbox label | for/id |
| #select-all-vendor-leg-handler | checkbox | checkbox label | for/id |
A+Color Contrast (Screenshot)20 text elements analyzed, 0 fail WCAG AAPASS
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h2 LANGUAGE | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 HISTORY | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 ENTERTAINMENT | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 GEOGRAPHY | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 5 Luxury River Cruis… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 QUIZZES | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Privacy Preference C… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 6 Musicals That Put … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Quiz: Can You Name T… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 4 Unsettling Theorie… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 6 Facts About Climat… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 The Beatles’ 5 Mos… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Amazing Fact Generat… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 The Meaning of Viral… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 What Is “Girl Dinn… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Where Does the Sayin… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 What Does "Maxxing" … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 The Word "Nitpicking… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 The Beatles and 6 Ba… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 The Real Meaning Beh… | 21.00:1 | 3.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.