Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction9 landmarksFIX
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
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
DLink & Button QualityAction11 issue(s) across 63 links and 0 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /en-us | (empty) | empty | Add link text or aria-label |
| https://advertise.acast.com/ | Advertise | new tab | Add '(opens in new tab)' to text |
| https://shows.acast.com/everythingiconic | Everything Iconic with Danny P… | new tab | Add '(opens in new tab)' to text |
| /en-us/monetize | (empty) | empty | Add link text or aria-label |
| #w-tabs-0-data-w-pane-0 | MonetizeMonetize with premium … | img no alt | Add alt attribute to the image |
| #w-tabs-0-data-w-pane-1 | GrowTrack audience and revenue… | img no alt | Add alt attribute to the image |
| #w-tabs-0-data-w-pane-2 | ManageManage your podcast in o… | img no alt | Add alt attribute to the image |
| #w-tabs-0-data-w-pane-3 | DistributeDistribute your podc… | img no alt | Add alt attribute to the image |
| /en-us/monetize | (empty) | empty | Add link text or aria-label |
| /en-us/monetize | (empty) | empty | Add link text or aria-label |
| /en-us/monetize | (empty) | empty | Add link text or aria-label |
| /en-us/monetize | (empty) | empty | Add link text or aria-label |
| /en-us/features | Explore All Features | img no alt | Add alt attribute to the image |
| https://careers.acast.com/ | Careers | new tab | Add '(opens in new tab)' to text |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/AcastPodcasts | (empty) | empty | Add link text or aria-label |
| https://www.instagram.com/acast | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/acast-a… | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
/en-us; /en-us/monetize; /en-us/monetize; /en-us/monetize; /en-us/monetize; /en-us/monetize; #; #; https://www.facebook.com/AcastPodcasts; https://www.instagram.com/acast (+1 more)
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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://shows.acast.com/everythingiconic"]; a#w-tabs-0-data-w-tab-0; a#w-tabs-0-data-w-tab-1; a#w-tabs-0-data-w-tab-2; a#w-tabs-0-data-w-tab-3; a[href="/en-us/features"]
Image-only links with no alt are unidentifiable to screen-reader users — link's destination is invisible.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://advertise.acast.com/; https://careers.acast.com/
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
FFavicon & BrandingAction2 icon(s) detectedFIX
FWeb ManifestActionValid manifestFIX
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
B404 Error PageHTTP 404, custom pageREVIEW
AHeading Hierarchy8 headingsPASS
- H1 Getting paid to podcast
- H1 made easy. duplicate H1
- H2 $550,000,000
- H2 $550,000,000
- H1 Your professional podcast suite duplicate H1
- H1 Your professional duplicate H1
- H1 podcasting suite duplicate H1
- H1 Trusted by top creators duplicate H1
A page should have only one H1. Multiple H1s dilute the document outline.
Multiple H1s blur the page's primary topic — screen-reader users and Google both prefer one H1.
Learn more ▾ ▴
HTML5's outline algorithm technically allows multiple H1s within sectioning content, but no browser implements it. In practice: one H1 per page. Use H2-H6 for subsections.
Source: WCAG 2.4.6 / Google Search Central
A+Alt Text QualityAll 145 images OKPASS
AForm Accessibility1 of 2 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #Checkbox-2 | checkbox | none | |
| #Footer-Newsletter-2 | text | (Enter your email) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="Footer-Newsletter-2" id="Footer-Newsletter-2">
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
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 |
|---|---|---|---|---|---|
| h1 Getting paid to podc… | 19.65:1 | 3.0:1 | #000000 | #FFF9C9 | Pass |
| h1 made easy. | 19.65:1 | 3.0:1 | #000000 | #FFF9C9 | Pass |
| h1 Trusted by top creat… | 19.65:1 | 3.0:1 | #000000 | #FFF9C9 | Pass |
| h2 $550,000,000 | 19.65:1 | 3.0:1 | #000000 | #FFF9C9 | Pass |
| title Acast: The Best Podc… | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| a Monetize | 18.46:1 | 4.5:1 | #01091C | #FFF8C8 | Pass |
| a Features | 18.46:1 | 4.5:1 | #01091C | #FFF8C8 | Pass |
| a Pricing | 18.46:1 | 4.5:1 | #01091C | #FFF8C8 | Pass |
| a Resources | 18.46:1 | 4.5:1 | #01091C | #FFF8C8 | Pass |
| a Advertise | 18.46:1 | 4.5:1 | #01091C | #FFF8C8 | Pass |
| div Advertise | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| div Log in: | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| div Podcasting | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| div Subheader | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| div Advertising | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| div Interesting topic | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| div Sign up | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| div USA | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| a Global | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | Pass |
| a USA | 19.51:1 | 4.5:1 | #000000 | #FFF8C8 | 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.
ALighthouse Accessibility AuditsScore 90/100 — 3 failing, 20 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.
Names and labels
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.div-block-220 > div.code-embed-23 > div > iframe div.div-block-220 > div.code-embed-23 > div > iframe |
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 |
|---|
div.container-large > div.navigation-row > div.navigation-left > a.navigation-logo-link div.container-large > div.navigation-row > div.navigation-left > a.navigation-logo-link |
div.hero-section > section.section_header-relative > div.div-block-249 > a.link-block-11 div.hero-section > section.section_header-relative > div.div-block-249 > a.link-block-11 |
section.section-regular-2 > div.container-large-3 > div.scaling-text-div > a.link-block-2 section.section-regular-2 > div.container-large-3 > div.scaling-text-div > a.link-block-2 |
div.w-layout-grid > div.testimonial-content > div.play-button > a.songs_button div.w-layout-grid > div.testimonial-content > div.play-button > a.songs_button |
div.footer-top-wrapper > div.footer-detail-row > div.footer-row > a.footer-company-link div.footer-top-wrapper > div.footer-detail-row > div.footer-row > a.footer-company-link |
div.footer-detail-row > div.footer-buttons > div.footer-socials > a.social-link div.footer-detail-row > div.footer-buttons > div.footer-socials > a.social-link |
div.footer-detail-row > div.footer-buttons > div.footer-socials > a.social-link div.footer-detail-row > div.footer-buttons > div.footer-socials > a.social-link |
div.footer-detail-row > div.footer-buttons > div.footer-socials > a.social-link div.footer-detail-row > div.footer-buttons > div.footer-socials > a.social-link |
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.
Best practices
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.w-mod-js html.w-mod-js |
These items highlight common accessibility best practices.