Skip to content
https://boredpanda.com

Accessibility

· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.
SCORE
54
GRADE
F
FIX
6
REVIEW
4
PASS
3
INFO
0
Checks
13
3 PASS 4 REVIEW 6 FIX
F
Alt Text Quality
Action
14 of 115 images have issues
FIX
14 of 115 images have issues
Critical::
14 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.
Info::
4 decorative image(s) correctly marked
Info::
97 image(s) with good alt text
115 images 97 good alt text 4 decorative 14 missing
IssueCount
missing14 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
12 of 19 controls have issues
FIX
12 of 19 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="button">; <select>
Warning::
10 control(s) rely on placeholder only
Placeholder text disappears on focus and is not a reliable label.
Got: <input type="text" name="email">; <input type="password" name="password">; <input type="text" name="email">; <input type="text" name="fullname">; <input type="password" name="password">; <input type="text" name="email">; <input type="text">; <input type="search" name="s">; <input type="search" name="s">; <input type="email" name="email">
Info::
7 control(s) properly labeled
19 controls
7 labeled
10 placeholder only
2 unlabeled
ControlTypeLabelMethod
inputcheckboxnone
inputcheckboxnone
inputcheckboxnone
inputcheckboxnone
fields[email]emailemailaria-label
inputcheckboxnone
inputcheckboxnone
inputtext(name@example.com)placeholder only
ssearch(Search...)placeholder only
passwordpassword(Password)placeholder only
ssearch(Search Bored Panda)placeholder only
emailtext(name@example.com)placeholder only
emailtext(name@example.com)placeholder only
fullnametext(Full name)placeholder only
passwordpassword(Password)placeholder only
emailtext(name@example.com)placeholder only
emailemail(name@example.com)placeholder only
selectselect(none)none
inputbutton(none)none

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

<input type="button">; <select>

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" name="email">; <input type="password" name="password">; <input type="text" name="email">; <input type="text" name="fullname">; <input type="password" name="password">; <input type="text" name="email">; <input type="text">; <input type="search" name="s">; <input type="search" name="s">; <input type="email" name="email">

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
Dark Mode Support
Action
Theme color only
FIX
Theme color only
Info::
Theme-color present but no dark variant
A theme-color is set but no dark-specific variant was found. The browser toolbar may not adapt for dark mode users.
Got: #232529
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 ModePartial Dark Mode
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::
4 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 4 <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.
B
Landmark Structure
85 landmarks
REVIEW
85 landmarks
Info::
<main> landmark present
Info::
4 <nav> landmark(s) found
Warning::
4 of 4 <nav> elements are unlabeled
Multiple navigations need aria-label to distinguish them for screen readers.
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 header NAV MAIN ASIDE CONTENTINFO footer

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

B
Heading Hierarchy
88 headings
REVIEW
88 headings
Critical::
No H1 heading found
Every page should have one H1 that describes the page content.
  • H3 Join the Fun!
  • H3 Thank you!
  • H2 If You Haven’t Laughed For A While, These 37 Memes Might Crack You Up
  • H2 99 Light-Hearted “Evil” Moments People Couldn’t Help But Laugh At
  • H2 51 Hilarious Pics Of Pet Siblings That Might Convince You To Finally Adopt Another Animal (New Pics)
  • H2 “You’re Perfect”: 15 Stars Who Challenged Show Business' Beauty Standards
  • H2 “The Milk Has Spoiled”: Adam Levine’s New Red Carpet Look Leaves Fans Stunned
  • H2 15 Moments From Coachella 2026 That Made Fans Laugh, Cringe And Roll Their Eyes
  • H2 “Doorbell Chud” From Viral Home Invasion Video Smirks In Court As Case Takes Troubling Twist
  • H2 Teacher, 65, Who Spent Life Helping Disabled Children Hid Terrible Secret
  • H2 “In Shambles”: Noah Wyle Backlash Backfires As ‘The Pitt’ Smashes Its Own Record
  • H2 “Made Me Uncomfortable Just Driving Through”: 45 Of The Worst Places In The US
  • H3 If You Haven’t Laughed For A While, These 37 Memes Might Crack You Up
  • H3 “Adult Coffee Break”: 74 Memes For Anyone Who Needs A Break From The Real World (New Pics)
  • H3 77 “Hmmm” Images People Are Probably Still Thinking About (New Pics)
  • H3 51 Fascinating, Heartbreaking And Cool Photos That Don’t Let Us Forget The Past (New Pics)
  • H3 64 Hair Transformations Prove Some People Were Meant To Have A Drastic Change
  • H3 Devastated Bride-To-Be Exposed Fiancé After He Revealed Crime He “Got Away With” For Years
  • H3 Man Leaves Stable Marriage For “Exciting” Woman, Then Regrets Everything
  • H3 “As An Amateur Surgeon…”: 77 Hilarious Amazon Reviewers Who Missed Their True Calling As Comedians
  • H3 “Better Than Halloween!": The Most Cringeworthy Outfits From Coachella Weekend 2
  • H3 Guy Rewrites Custody Rules For 10YO The Second He Has A New Baby, Shocked His Ex Doesn’t Play Along
  • H3 Audio Of Athena Strand's Final Moments With FedEx Driver Makes Jurors Sob As Her Family Leaves Courtroom
  • H3 "Best Facial Harmonization I've Ever Seen": 25 Before-And-Afters By A Plastic Surgeon Whose Work Went Viral
  • H3 Lady Moves In With BF, Starts Having "Accidents" Everywhere, Realizes They're Not Accidents At All
  • H3 72 Best Comics That Catch The Reader With An Unexpected Ending By Ben Zaehringer
  • H3 Before The Filters: 109 Photos Tell The Stories That Got Left Behind As Time Kept Moving (New Pics)
  • H3 52 Photos That Show The Brutal Realities Of Life In The United States In 2026 (New Pics)
  • H3 "She Is Just Not There": Blake Lively And Ryan Reynold's Bleak New Lives Revealed In Report Amid Plans To Possibly Flee US
  • H3 “Best And Worst Of Twitter”: 33 Screenshots From X That Are Funnier Than They Should Be
  • H3 94 Pieces Of “Morbid Knowledge” For People Who Can’t Look Away From Creepy Facts
  • H3 New Details In Ruby Rose's Allegations Against Katy Perry As Video Of Night Emerges Amid Police Investigation
  • H3 84 Feel-Good Photos That Make People Stop And Appreciate Their Families
  • H3 17 Bizarre Medical Problems And Mysteries That Catapulted People Into The News
  • H3 People Try To Strike Cool Poses For Photos, End Up Creating 54 Moments Of Pure Comedy Gold
  • H3 Entitled Mom Brings Kids And Sleeping Bags To Dinner Party, Shocked To Hear “No” To Staying Over
  • H3 “Someone Lost Their Job Over It”: 71 Times Companies Immediately Regretted Their Marketing Campaigns
  • H3 52 Cat Posts Shared By This Page That Are Funny, Sweet, And Spot On
  • H3 67 Of The Wildest Things Parents Posted Online That You Are Allowed To Judge (New Pics)
  • H3 49 Patient Cases That Left Gynecologists Speechless
  • H3 34 Real-Life Plot Twists That People Would Never Believe If They Didn't Happen To Them
  • H3 “It’s Genuinely Disturbing”: 67 Instagram Vs. Reality Moments That Expose The Truth Behind The Glam (New Pics)
  • H3 87 Memes So Hilarious And Simple They Might Make Your Day Way Better
  • H3 49 Times People Got Ridiculous Things From Temu And Couldn’t Be Mad Because They Did It To Themselves
  • H3 Man Introduces GF To His Family And Ends Up With Getting Dumped After She Meets Family Friend
  • H3 “Would You Win Trivia Night?”: Prove It With These 36 General Knowledge Questions
  • H3 63 Posts That Show What Life In America Really Feels Like Right Now
  • H3 Why Paris Jackson Now Believes Disturbing Allegations Against Her Dad
  • H3 26 Massively Expensive Mistakes Made Throughout Human History That Should Serve As Lessons
  • H3 Husband Forced His Wife To Go To A Party Against Her Wishes, One Night Destroyed Their Entire Marriage
  • H3 If You Need Memes As Much As You Need Coffee, Here Are 33 Hilarious Ones For You To Scroll
  • H3 Jason Segel Gets Security Called On Him In Finland Over Simple American Cultural Habit
  • H2 “Did We Travel Back In Time”: ‘The Devil Wears Prada 2’ Cast’s Red Carpet Looks Then vs Now, 20 Years Later
  • H2 Crazy Cat Lady Wants K-Drama Romance, But Chooses Her Cat Over Men, Then Wonders Why They Leave
  • H2 “As An Amateur Surgeon…”: 77 Hilarious Amazon Reviewers Who Missed Their True Calling As Comedians
  • H2 53 Of The Wildest Moments That Show Just How Weird Florida Can Be (New Pics)
  • H2 40 Times People Realized Their Friends Were Actually Terrible (New Pics)
  • H2 58 Unexpected Wild Animal Encounters That Completely Caught People Off Guard
  • H2 61 Cringe Moments Of People Being Wrong With Full Confidence
  • H2 52 Photos That Show The Brutal Realities Of Life In The United States In 2026 (New Pics)
  • H2 Woman Invites Herself On Friend’s Family Trip, Furious When Couple Says Her Fam Can’t Join Them
  • H2 Coachella Slapped With Massive Fine After Justin Bieber’s Set Broke Golden rule
  • H2 Daily Guess The Timeline Game #029 (Apr 21, 2026)
  • H2 69 Of The Most Expensive Fails That Hurt So Bad To Look At, You May Physically Feel It (New Pics)
  • H2 Daily Guess The Timeline Game #029 (Apr 21, 2026)
  • H2 75 Animal Photos So Iconic They Went Viral All Over The World
  • H2 73 Cursed Foods That Look Like A Dare
  • H2 Mom Saves Up To Throw Her Daughter Her Dream B-Day Party, Is Perplexed By One Parent’s RSVP
  • H2 Wife Walks Into Husband And His Stepsis, Throws Up Everywhere And Then Exposes To Their Parents
  • H2 30 Times This Artist Turned The Most Unexpected Things Into Bold Fashion Statements
  • H2 “No One Knows Who He Is”: 69 Urban Legends That Are Too Strange To Be Made Up
  • H2 Daily Dice Of Drama: The Social Dilemma Game #003 (Apr 21, 2026)
  • H2 This Photographer Asked People About Their Favorite Movies And Uncovered Many Hidden Film Gems (24 New Pics)
  • H2 Only High IQs Beat This 28-Question Hard General Knowledge Quiz: Prove You’re One Of Them
  • H3 NYT Pips Hints, Answers For 21-April-2026
  • H3 NYT Mini Crossword Hints And Answers For 21-April-2026
  • H3 Wordle #1767: Hints & Answer (Apr 21, 2026)
  • H3 NYT Connections Hints And Answers For 21-April-2026
  • H3 NYT Pips Hints, Answers For 20-April-2026
  • H3 NYT Connections Hints And Answers For 20-April-2026
  • H3 Wordle #1766: Hints & Answer (Apr 20, 2026)
  • H3 NYT Mini Crossword Hints And Answers For 20-April-2026
  • H2 Daily Guess The Country Game #037 (Apr 21, 2026)
  • H2 50 Bold Murals By ‘The Color Wizard’ That Turn Streets And Buildings Into Art
  • H2 This Visual Challenge Is Nearly Impossible – Prove You Can Find The 18 Different Shades
  • H2 17 Bold Futuristic Car Designs That Never Made It To Production, As Shared By This Page (17 Pics)
  • H2 Artist Creates Wholesome And Soothing Comics That Might Brighten Up Your Day (43 New Pics)
  • H2 “AITA For Expecting My Girlfriend To Do My Half Of Her Chores As Well?”

Every page should have one H1 that describes the page content.

Why this matters

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

B
404 Error Page
HTTP 404, custom page
REVIEW
HTTP 404, custom page
Info::
Correct 404 status code returned
Got: HTTP 404
Info::
Custom styled 404 page
Info::
Navigation links present on 404 page
Info::
Search form present on 404 page
404 Page Quality Custom 404 Page
Status Code HTTP 404 Page Title Bored Panda Custom Styling Navigation Homepage Link Search Form
B
Favicon & Branding
9 icon(s) detected
REVIEW
9 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 Present
Multiple Sizes Present
A+
Web Manifest
PWA-ready
PASS
PWA-ready
Info::
Meets PWA install criteria
Info::
Name present: Bored Panda
Info::
192x192 icon present
Info::
512x512 icon present
Info::
Display mode: standalone
PWA Install Criteria Installable
Name Bored Panda 192×192 icon 512×512 icon Start URL /?utm_source=pwa&utm_medium=direct Display Mode standalone
Name Bored Panda Display Mode standalone Theme Color #232529 Background Color #232529 Icons 4 icon(s)
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
h3 If You Haven’t Lau…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 “Adult Coffee Brea…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 77 “Hmmm” Images…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 51 Fascinating, Hear…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 64 Hair Transformati…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 Devastated Bride-To-…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 Man Leaves Stable Ma…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 “As An Amateur Sur…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 “Better Than Hallo…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 Guy Rewrites Custody…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 Audio Of Athena Stra…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 "Best Facial Harmoni…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 Lady Moves In With B…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 72 Best Comics That …15.76:13.0:1
#000000
#DFDFDF
Pass
h3 Before The Filters: …15.76:13.0:1
#000000
#DFDFDF
Pass
h3 52 Photos That Show …15.76:13.0:1
#000000
#DFDFDF
Pass
h3 "She Is Just Not The…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 “Best And Worst Of…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 94 Pieces Of “Morb…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 New Details In Ruby …15.76:13.0:1
#000000
#DFDFDF
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.

A
Lighthouse Accessibility Audits
Score 93/100 — 2 failing, 31 passed
PASS
93

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.

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
Reject all & Close div.didomi-popup-view > div#buttons > button#didomi-notice-disagree-button > span
Agree & Close div.didomi-popup-view > div#buttons > button#didomi-notice-agree-button > span
Home nav.mobile-category-list > ul > li.popular > a
Trending nav.mobile-category-list > ul > li.trending > a
Latest nav.mobile-category-list > ul > li.latest > a
Community nav.mobile-category-list > ul > li.community > a
ADVERTISEMENT article.home-page-mobile-ad > div.dfp-ad > span > span.pg-ad-label
More from News & Entertainment section.posts > div.boredpanda-carousel-widget > div.boredpanda-carousel-footer > a
ADVERTISEMENT article.home-page-mobile-ad > div.dfp-ad > span > span.pg-ad-label
More from Lists by Bored Panda section.posts > div.boredpanda-carousel-widget > div.boredpanda-carousel-footer > a
ADVERTISEMENT article.home-page-mobile-ad > div.dfp-ad > span > span.pg-ad-label
Interview section.posts > article.post > div.title-container > span.title-interview
ADVERTISEMENT div.closeable-div > div.dfp-ad > span > span.pg-ad-label

These are opportunities to improve the legibility of your content.

Names and labels

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
div.mobile > div.right > div.search > a.search-icon div.mobile > div.right > div.search > a.search-icon
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div#swiper-wrapper-4992f8161dd5625c > article.top-post > div.top-post-header > a div#swiper-wrapper-4992f8161dd5625c > article.top-post > div.top-post-header > a
div#swiper-wrapper-4992f8161dd5625c > article.top-post > div.top-post-header > a div#swiper-wrapper-4992f8161dd5625c > article.top-post > div.top-post-header > a
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button div.vote-comments-block > div.vote-block > div.vote > a.post-vote-button
body.home > div.closeable-div > a.modal-close body.home > div.closeable-div > a.modal-close

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.

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-*]` attributes match their roles
`[aria-hidden="true"]` is not present on the document `<body>`
`[role]`s have all required `[aria-*]` attributes
`[role]` values are valid
`[aria-*]` attributes have valid values
`[aria-*]` attributes are valid and not misspelled
Buttons have an accessible name
Image elements have `[alt]` attributes
`[user-scalable="no"]` is not used in the `<meta name="viewport">` element and the `[maximum-scale]` attribute is not less than 5.
`button`, `link`, and `menuitem` elements have accessible names
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
`<frame>` or `<iframe>` elements have a title
`<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
Touch targets have sufficient size and spacing.
`[lang]` attributes have a valid value
Heading elements appear in a sequentially-descending order
Document has a main landmark.
Deprecated ARIA roles were not used
ARIA IDs are unique
All heading elements contain content.
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
ARIA input fields have accessible names
ARIA `meter` elements have accessible names
ARIA `progressbar` elements have accessible names
Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children.
`[role]`s are contained by their required parent element
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
`<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
Form elements have associated labels
Links are distinguishable without relying on color.
The document does not use `<meta http-equiv="refresh">`
`<object>` elements have alternate text
Select elements have associated label elements.
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.
`<video>` elements contain a `<track>` element with `[kind="captions"]`
Tables have different content in the summary attribute and `<caption>`.
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.
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback