Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction2 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
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
FLink & Button QualityAction9 issue(s) across 114 links and 6 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://a.plerdy.com/auth/login | Sign In | new tab | Add '(opens in new tab)' to text |
| https://a.plerdy.com/auth/register | Try It Free | new tab | Add '(opens in new tab)' to text |
| https://a.plerdy.com/auth/register | Get started free | new tab | Add '(opens in new tab)' to text |
| https://www.g2.com/products/plerdy/revie… | G2.com | new tab | Add '(opens in new tab)' to text |
| https://a.plerdy.com/auth/register | Fix My Funnel For Free | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UCYA8QdY… | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/plerdy/ | (empty) | empty | Add link text or aria-label |
| https://www.instagram.com/andrew.plerdy/ | (empty) | empty | Add link text or aria-label |
| https://www.tiktok.com/@plerdy_analytics | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/profile.php?id=… | (empty) | empty | Add link text or aria-label |
| https://apps.shopify.com/plerdy | Find it on theShopify App Stor… | new tab | Add '(opens in new tab)' to text |
| https://www.plerdy.com/privacy-policy/#c… | Read our cookie Policy | 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 |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://www.youtube.com/channel/UCYA8QdYL8Dsk7xyOso6zxLg; https://www.linkedin.com/company/plerdy/; https://www.instagram.com/andrew.plerdy/; https://www.tiktok.com/@plerdy_analytics; https://www.facebook.com/profile.php?id=61575427980228
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://a.plerdy.com/auth/login; https://a.plerdy.com/auth/register; https://a.plerdy.com/auth/register; https://www.g2.com/products/plerdy/reviews; https://a.plerdy.com/auth/register; https://apps.shopify.com/plerdy; https://www.plerdy.com/privacy-policy/#cookie
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.reviews-slider-prev (#424 on page); button.reviews-slider-next (#426 on page); button.bottom-blog-slider-prev (#539 on page); button.bottom-blog-slider-next (#541 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
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
DLighthouse Accessibility AuditsActionScore 65/100 — 10 failing, 20 passedFIX
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide00 |
1 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide10 |
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1
2
3
4
5
6
7
8
9 div.container > div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots |
1
2
3
4
5
6
7
8 div.container > div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots |
Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more about valid values for ARIA attributes.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide00 |
1 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide10 |
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
2 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide01 |
3 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide02 |
4 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide03 |
5 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide04 |
6 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide05 |
7 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide06 |
8 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide07 |
9 div.reviews-slider-controls > div.reviews-slider-dots > ul.slick-dots > li#slick-slide08 |
2 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide11 |
3 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide12 |
4 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide13 |
5 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide14 |
6 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide15 |
7 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide16 |
8 div.bottom-blog-slider-controls > div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide17 |
When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. Learn more about input field labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
"It's a great all-in one tool that takes a little getting used to."
I'm no SEO… div.container > div.pjs-home-reviews > div.slick-list > div.slick-track |
Ecommerce
Best Fullstory Alternatives And Competitors In 2026
Aug 21, 2026
SEO … div.container > div.row_blog > div.slick-list > div.slick-track |
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 |
|---|
section.home-section > div.container > div.reviews-slider-controls > button.reviews-slider-prev section.home-section > div.container > div.reviews-slider-controls > button.reviews-slider-prev |
section.home-section > div.container > div.reviews-slider-controls > button.reviews-slider-next section.home-section > div.container > div.reviews-slider-controls > button.reviews-slider-next |
section.bottom_blog > div.container > div.bottom-blog-slider-controls > button.bottom-blog-slider-prev section.bottom_blog > div.container > div.bottom-blog-slider-controls > button.bottom-blog-slider-prev |
section.bottom_blog > div.container > div.bottom-blog-slider-controls > button.bottom-blog-slider-next section.bottom_blog > div.container > div.bottom-blog-slider-controls > button.bottom-blog-slider-next |
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.footer-list > div.footer-list-items > div.col_center > a.footer-list-link div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link |
div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link |
div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link |
div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link |
div.footer-list > div.footer-list-items > div.col_center > a.footer-list-link div.footer-list > div.footer-list-items > div.col_center > a.footer-list-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.
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 |
|---|
Get started free div.home-section__info > div.home-hero__btns-wrapp > div.home-hero__btns > a.btn |
TRAFFIC & UX ANALYTICS section.home-section > div.container > div.home-section__info > div.home-section__info-top |
G2.com section.home-section > div.container > p.home-section__subtitle > a.home-section__subtitle-link |
RAGE CLICK DETECTION section.home-section > div.container > div.home-section__info > div.home-section__info-top |
SESSION REPLAY section.home-section > div.container > div.home-section__info > div.home-section__info-top |
Every minute you wait is another potential customer clicking away in frustratio… body.home > section.home-section > div.container > p.home-section__subtitle-center |
Fix My Funnel For Free body.home > section.home-section > div.container > a.btn |
Show more section.bottom_blog > div.container > div.center > a.btn |
These are opportunities to improve the legibility of your content.
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 |
|---|
1 div.reviews-slider-dots > ul.slick-dots > li#slick-slide00 > button |
1 div.bottom-blog-slider-dots > ul.slick-dots > li#slick-slide10 > button |
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.js html.js |
These items highlight common accessibility best practices.
BTap Target Adequacy2 tap target(s) too small or too close togetherREVIEW
BMobile-Readable Font Sizes96% of visible text renders at >= 12 CSS px (8 below threshold)REVIEW
C404 Error PageActionHTTP 404, custom pageREVIEW
BWeb ManifestValid manifestREVIEW
A+Heading Hierarchy12 headingsPASS
- H1 Stop Guessing Which Ads Are Burning Your Money.
- H2 Brands who trust us
- H2 You Are Driving Traffic Into a Black Hole
- H3 Blind Spending
- H3 Hidden Rage
- H3 Low ROI
- H2 Fire The Losers. Scale The Winners
- H2 What do customers like most about Plerdy?
- H2 Watch Them Scream (Without Sound)
- H2 Don't Believe The Data? Watch The Video
- H2 Your Funnel Is Leaking Money Right Now
- H2 Articles from the blog
A+Heading Text QualityAll 12 heading(s) have substantive, well-formed textPASS
A+Alt Text QualityAll 89 images OKPASS
A+Form AccessibilityNo form controlsPASS
A+Form Input TypesNo form controls on this pagePASS
A+Form Input QualityNo form controls on this pagePASS
A+Mobile Keyboard & AutofillNo form controls -- mobile keyboard check is N/APASS
A+Document LanguageLang attribute set to "en-US"PASS
A+Tabindex Anti-PatternsNo explicit tabindex attributes foundPASS
A+Iframe AccessibilityNo iframes on this pagePASS
AFavicon & Branding11 icon(s) detectedPASS
A+PWA DepthNo PWA depth issues detectedPASS
A+Mobile UX Depth1 mobile-depth signal(s) detectedPASS
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 Stop Guessing Which … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Brands who trust us | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 You Are Driving Traf… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Fire The Losers. Sca… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 What do customers li… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Watch Them Scream (W… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Don't Believe The Da… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Your Funnel Is Leaki… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Articles from the bl… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Blind Spending | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Hidden Rage | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Low ROI | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Conversion Rate Opti… | 11.70:1 | 4.5:1 | #000000 | #D8C072 | Pass |
| span See Where Money Burn… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Find Revenue Leaks | 19.60:1 | 4.5:1 | #000000 | #F7F7F7 | Pass |
| span ₴ | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span See Why Visitors Don… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span € | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Stop Burning Ad Budg… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Find Where Sales Lea… | 21.00:1 | 4.5: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.