Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DHeading HierarchyAction44 headings, 3 skip(s)FIX
- H6 Lifetime Packages for Agencies
- H6 Overview
- H6 Modules
- H6 Pre-Made Profiles
- H6 Alt Text Generator AI
- H6 Contrast Checker
- H5 Lifetime Packages for Agencies
- H6 Overview
- H6 Modules
- H6 Pre-Made Profiles
- H6 Alt Text Generator AI
- H6 Contrast Checker
- H5 Lifetime Packages for Agencies
- H1 The easiest way to make your WordPress website accessible
- H1 The easiest way to make your WordPress website accessible duplicate H1
- H2 29 built-in accessibility features
- H3 Instant accessibility toolbar for your Website. Ready in 1 click
- H6 Fully Customizable skipped
- H3 Fully Customizable Widget
- H3 29 Tools for Accessibility
- H3 Multilingual accessibility statement generator
- H3 Keyboard Navigation & Text-to-Speech
- H2 29 Powerful Features. Installed with just one-click
- H6 Boost Accessibility skipped
- H6 Reduce legal risk
- H6 Fully Customizable
- H6 Improve SEO
- H6 Custom Trigger
- H6 24 accessibility modules
- H6 5 ready-to-use profiles
- H6 Statement Generator
- H2 Built for WordPress – fully compatible with all Page Builders
- H2 Frequently Asked Questions
- H2 Make your site accessible today
- H6 Navigation skipped
- H6 Help Center
- H6 Resources
- H6 Navigation
- H6 Help Center
- H6 Resources
- H2 Accessibility Commitment for OneTap Accessibility
- H3 Our Approach to Accessibility
- H3 Accessibility Features
- H3 Feedback and Contact
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
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
DForm AccessibilityAction4 of 9 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #onetap-box-vision-impaired-mode | checkbox | none | |
| #onetap-box-seizure-safe-profile | checkbox | none | |
| #onetap-box-adhd-friendly-mode | checkbox | none | |
| #onetap-box-blindness-mode | checkbox | none | |
| #onetap-box-epilepsy-safe-mode | checkbox | none | |
| text | (E-Mail) | placeholder only | |
| text | (E-Mail) | placeholder only | |
| #g-recaptcha-response-1 | textarea | (none) | none |
| #g-recaptcha-response | textarea | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<textarea name="g-recaptcha-response" id="g-recaptcha-response">; <textarea name="g-recaptcha-response" id="g-recaptcha-response-1">
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" id="EMAIL">; <input type="text" name="EMAIL" id="EMAIL">
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
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CLink & Button QualityAction4 issue(s) across 282 links and 82 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://wponetap.com/agency-pricing/ | (empty) | empty | Add link text or aria-label |
| https://wponetap.com | (empty) | empty | Add link text or aria-label |
| https://wponetap.com/agency-pricing/ | (empty) | empty | Add link text or aria-label |
| https://wponetap.com/agency-pricing/ | (empty) | empty | Add link text or aria-label |
| https://wponetap.com/?utm_source=fronten… | OneTap | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
https://wponetap.com/agency-pricing/; https://wponetap.com; https://wponetap.com/agency-pricing/; https://wponetap.com/agency-pricing/
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://wponetap.com/?utm_source=frontend-link&utm_medium=link&utm_campaign=r…
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
C404 Error PageActionCould not testREVIEW
404 page quality check not available.
CFavicon & BrandingAction3 icon(s) detectedREVIEW
A+Landmark Structure24 landmarksPASS
AAlt Text QualityAll 203 images OKPASS
| Issue | Count |
|---|---|
| too long | 10 image(s) |
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 The easiest way to m… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h1 The easiest way to m… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 29 built-in accessib… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 29 Powerful Features… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Built for WordPress … | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Frequently Asked Que… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Make your site acces… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Accessibility Commit… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 Instant accessibilit… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 Fully Customizable W… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 29 Tools for Accessi… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 Multilingual accessi… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 Keyboard Navigation … | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 Our Approach to Acce… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 Accessibility Featur… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h3 Feedback and Contact | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| title Best WordPress Plugi… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Skip to content | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Make your website ac… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span 60,000 | 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.
ALighthouse Accessibility AuditsScore 91/100 — 3 failing, 23 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.
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 |
|---|
Partner logos div.elementor-element > div.elementor-element > div.elementor-widget-container > div.logo-mariquee-aw-4436 |
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.
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 |
|---|
Lifetime Packages for Agencies div.elementor-element > div.elementor-element > div.elementor-widget-container > h6.elementor-heading-title |
Reduce legal risk div.elementor-element > div.elementor-element > div.elementor-widget-container > h6.elementor-heading-title |
Navigation details#e-n-accordion-item-9920 > summary.e-n-accordion-item-title > span.e-n-accordion-item-title-header > h6.e-n-accordion-item-title-text |
These are opportunities to improve keyboard navigation in your application.
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.elementor-element > div.elementor-element > div.elementor-widget-container > a div.elementor-element > div.elementor-element > div.elementor-widget-container > a |
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.