Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.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 QualityAction137 links, 21 buttons — all OKREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.activecampaign.com/legal/pri… | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://www.activecampaign.com/platform/… | Personalized email marketingBu… | img no alt | Add alt attribute to the image |
| https://www.activecampaign.com/platform/… | WhatsApp automationMeet custom… | img no alt | Add alt attribute to the image |
| https://www.activecampaign.com/platform/… | Powerful SMS messagingBuild al… | img no alt | Add alt attribute to the image |
| https://www.activecampaign.com/apps | 1,000+ app integrationsConnect… | img no alt | Add alt attribute to the image |
| https://twitter.com/ActiveCampaign | Visit ActiveCampaign on Twitte… | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/activecampaign | Visit ActiveCampaign on Facebo… | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/activec… | Visit ActiveCampaign on Linked… | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/activecampaign | Visit ActiveCampaign on Instag… | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/@ActiveCampaign | Visit ActiveCampaign on Youtub… | new tab | Add '(opens in new tab)' to text |
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://www.activecampaign.com/platform/email-marketing"]; a[href="https://www.activecampaign.com/platform/whatsapp-messaging"]; a[href="https://www.activecampaign.com/platform/sms-marketing"]; a[href="https://www.activecampaign.com/apps"]
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://www.activecampaign.com/legal/privacy-policy; https://twitter.com/ActiveCampaign; https://www.facebook.com/activecampaign; https://www.linkedin.com/company/activecampaign; https://www.instagram.com/activecampaign; https://www.youtube.com/@ActiveCampaign
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
B404 Error PageHTTP 404, custom pageREVIEW
BFavicon & Branding4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 19 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 Cut 13 hours of mark… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Get 1‑on‑1 time … | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Get your tailored pl… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Automate strategy, n… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Go to market 3x fast… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Automate every marke… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Helping thousands of… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 See results in 30 d… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Ready to take Active… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h2 Try the autonomous w… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 Capabilities | 8.55:1 | 3.0:1 | #000000 | #8AA0FF | Pass |
| h3 Channels | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 Ecosystem | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 spotlight | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 Make it happen | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 Featured Industries | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 Audiences | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 Personalized email m… | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 WhatsApp automation | 1.04:1 | 3.0:1 | #000000 | #00002D | Fail |
| h3 Powerful SMS messagi… | 1.04:1 | 3.0:1 | #000000 | #00002D | 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.
ALandmark Structure14 landmarksPASS
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
A+Heading Hierarchy37 headingsPASS
- H3 Capabilities
- H3 Channels
- H3 Ecosystem
- H3 spotlight
- H3 Make it happen
- H3 Featured Industries
- H3 Audiences
- H2 Get 1‑on‑1 time with an expert
- H2 Get your tailored plan, built for your business
- H1 Cut 13 hours of marketing busywork each week¹ with autonomous marketing.
- H2 Automate strategy, not just tasks. Become unstoppable.
- H2 Go to market 3x faster. Backed by real insights, not endless reports.
- H2 Automate every marketing channel
- H3 Personalized email marketing
- H3 WhatsApp automation
- H3 Powerful SMS messaging
- H3 1,000+ app integrations
- H2 Helping thousands of teams punch above their weight
- H2 See results in 30 days or get your money back
- H2 Ready to take ActiveCampaign for a spin?
- H2 Platform
- H3 Capabilities
- H3 Channels
- H3 Ecosystem
- H2 Use Cases
- H3 Featured Industries
- H3 Audiences
- H2 Learn
- H3 Resources
- H3 Help
- H3 Services
- H3 Connect
- H2 Company
- H3 Channel Partners
- H3 Contact
- H3 Company
- H2 Try the autonomous way to work
A+Alt Text Quality1 of 26 images have issuesPASS
| Issue | Count |
|---|---|
| generic | 1 image(s) |
AForm Accessibility1 of 13 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #demo-name-field | text | Name* | for/id |
| #demo-email-field | Business Email* | for/id | |
| #demo-contacts-field | select | Number of Contacts* | for/id |
| #demo-phone-field | tel | Phone* | for/id |
| #demo_messaging_consent | checkbox | ActiveCampaign can contact me by SMS and WhatsApp. | for/id |
| #pricing-request-name-field | text | Name* | for/id |
| #pricing-request-email-field | Business Email* | for/id | |
| #pricing-request-contacts-field | select | Number of Contacts* | for/id |
| #pricing-request-phone-field | tel | Phone* | for/id |
| #pricing_request_messaging_consent | checkbox | ActiveCampaign can contact me by SMS and WhatsApp. | for/id |
| #signupEmail | Email address | for/id | |
| #signupEmail | Email address | for/id | |
| #talon6 | textarea | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<textarea id="talon6">
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
ALighthouse Accessibility AuditsScore 94/100 — 2 failing, 32 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
ARIA dialog elements without accessible names may prevent screen readers users from discerning the purpose of these elements. Learn how to make ARIA dialog elements more accessible.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
REQUEST A DEMO
Get 1‑on‑1 time with an expert
Book a personalized demo and see… body#site > div#demoRequestDrawer |
REQUEST PRICING
Get your tailored plan, built for your business
Tell us your n… body#site > div#pricingRequestDrawer |
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.
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 |
|---|
Go to slide 1 div.prompt-text-box__wrapper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div.prompt-text-box__wrapper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 div.prompt-text-box__wrapper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 4 div.prompt-text-box__wrapper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 5 div.prompt-text-box__wrapper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 6 div.prompt-text-box__wrapper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 1 div.container-alignment-helper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div.container-alignment-helper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 div.container-alignment-helper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 4 div.container-alignment-helper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 5 div.container-alignment-helper > div.carousel-navigation-controls > div.swiper-pagination > span.swiper-pagination-bullet |
These items highlight common accessibility best practices.