Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CLandmark StructureAction4 landmarksREVIEW
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
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.
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
B404 Error PageHTTP 404, custom pageREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 14 fail WCAG AAREVIEW
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 |
|---|---|---|---|---|---|
| h1 Resources for Develo… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 by Developers | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Featured articles | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Latest news | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Recent contributions | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Contributor Spotligh… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title MDN Web Docs | 1.19:1 | 4.5:1 | #000000 | #18191B | Fail |
| a Skip to main content | 1.24:1 | 4.5:1 | #000000 | #1C1D1F | Fail |
| a Skip to search | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| span HTML | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a HTML: Markup languag… | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| dt HTML reference | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a Elements | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a Global attributes | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a Attributes | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a See all… | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| dt HTML guides | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a Responsive images | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a HTML cheatsheet | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
| a Date & time formats | 1.35:1 | 4.5:1 | #000000 | #212426 | Fail |
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+Heading Hierarchy13 headingsPASS
- H1 Resources for Developers, by Developers
- H2 Featured articles
- H3 Celebrating 20 years of MDN
- H3 CSS Custom Highlight API
- H3 Server timing
- H3 JavaScript resource management
- H2 Latest news
- H3 Launching MDN's new front end
- H3 Image formats: Pixel data from encoders to decoders
- H3 Image formats: Color models for humans and devices
- H3 Default styles for h1 elements are changing
- H2 Recent contributions
- H2 Contributor Spotlight
A+Alt Text QualityAll 1 images OKPASS
A+Form AccessibilityNo form controlsPASS
ALink & Button Quality162 links, 9 buttons — all OKPASS
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://github.com/mdn/ | MDN on GitHub | new tab | Add '(opens in new tab)' to text |
| https://bsky.app/profile/developer.mozil… | MDN on Bluesky | new tab | Add '(opens in new tab)' to text |
| https://x.com/mozdevnet | MDN on X | new tab | Add '(opens in new tab)' to text |
| https://mastodon.social/@mdn | MDN on Mastodon | new tab | Add '(opens in new tab)' to text |
| /en-US/blog/rss.xml | MDN blog RSS feed | new tab | Add '(opens in new tab)' to text |
| https://www.mozilla.org/en-US/careers/li… | Mozilla careers | new tab | Add '(opens in new tab)' to text |
| https://support.mozilla.org/products/mdn… | Product help | new tab | Add '(opens in new tab)' to text |
| /discord | MDN Discord | new tab | Add '(opens in new tab)' to text |
| https://github.com/mdn | MDN on GitHub | new tab | Add '(opens in new tab)' to text |
| https://hacks.mozilla.org/ | Hacks blog | new tab | Add '(opens in new tab)' to text |
Add '(opens in new tab)' to link text or aria-label.
https://github.com/mdn/; https://bsky.app/profile/developer.mozilla.org; https://x.com/mozdevnet; https://mastodon.social/@mdn; /en-US/blog/rss.xml; https://www.mozilla.org/en-US/careers/listings/; https://support.mozilla.org/products/mdn-plus; /discord; https://github.com/mdn; https://hacks.mozilla.org/
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
AFavicon & Branding6 icon(s) detectedPASS
A+Web ManifestPWA-readyPASS
A+Lighthouse Accessibility AuditsScore 95/100 — 2 failing, 27 passedPASS
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.
Best practices
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Blog ul.featured-articles > li > article.featured-articles__article > a.featured-articles__tag |
Web APIs ul.featured-articles > li > article.featured-articles__article > a.featured-articles__tag |
JavaScript ul.featured-articles > li > article.featured-articles__article > a.featured-articles__tag |
developer.mozilla.org ul.latest-news > li > article.latest-news__item > a.latest-news__source |
developer.mozilla.org ul.latest-news > li > article.latest-news__item > a.latest-news__source |
developer.mozilla.org ul.latest-news > li > article.latest-news__item > a.latest-news__source |
developer.mozilla.org ul.latest-news > li > article.latest-news__item > a.latest-news__source |
mdn/content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/translated-content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/translated-content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/translated-content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/translated-content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
mdn/translated-content ul.recent-contributions > li.recent-contributions__item > span.recent-contributions__repo > a.external |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.