Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction5 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 QualityAction6 issue(s) across 163 links and 17 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://canvas.miro.com/?utm_campaign=gl… | SAVE YOUR SPOT | new tab | Add '(opens in new tab)' to text |
| https://miro.com/blog/asos-agile-shoppin… | Read Customer Study | new tab | Add '(opens in new tab)' to text |
| https://miro.com/ai/ai-overview | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Ai Overview | |||
| https://miro.com/intelligent-canvas | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Intelligent Canvas | |||
| https://miro.com/intelligent-canvas/#for… | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: #Formats | |||
| https://miro.com/capabilities/blueprints | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Blueprints | |||
| https://miro.com/enterprise-security | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Enterprise Security | |||
| https://miro.com/integrations | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Integrations | |||
| https://miro.com/pricing | PricingSelect a plan | img no alt | Add alt attribute to the image |
| https://miro.com/templates | TemplatesGet started fast | img no alt | Add alt attribute to the image |
| https://miro.com/find-a-partner | Solution PartnersExplore the n… | img no alt | Add alt attribute to the image |
| https://community.miro.com/ | CommunityConnect with Miro use… | img no alt | Add alt attribute to the image |
| https://miro.com/blog | BlogDive in to ways of working | img no alt | Add alt attribute to the image |
| https://academy.miro.com/ | AcademyGet started with Miro | img no alt | Add alt attribute to the image |
| https://trust.miro.com/ | ISO 42001 READY | new tab | Add '(opens in new tab)' to text |
| https://trust.miro.com/ | ISO 27001 CERTIFIED | new tab | Add '(opens in new tab)' to text |
| https://trust.miro.com/ | SOC 2 COMPLIANT | new tab | Add '(opens in new tab)' to text |
| https://trust.miro.com/ | GDPR COMPLIANT | new tab | Add '(opens in new tab)' to text |
| https://www.capterra.com/p/128955/Miro/ | Trust Capterra | new tab | Add '(opens in new tab)' to text |
| https://www.g2.com/products/miro/ | Trust G2 | new tab | Add '(opens in new tab)' to text |
| https://www.trustradius.com/products/mir… | Trust TR | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/mirohq | Miro Twitter | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/TryMiro | Miro Facebook | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/mirohq | Miro LinkedIn | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/mirohq/ | Miro Instagram | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/RealtimeBoa… | Miro YouTube | new tab | Add '(opens in new tab)' to text |
| https://www.reddit.com/r/miro/ | Miro Reddit | new tab | Add '(opens in new tab)' to text |
| https://apps.apple.com/us/app/miro-colla… | Download on the App Store | new tab | Add '(opens in new tab)' to text |
| https://play.google.com/store/apps/detai… | Download on Google Play | new tab | Add '(opens in new tab)' to text |
Generic link text like 'click here' doesn't describe the destination.
https://miro.com/ai/ai-overview ("Learn more"); https://miro.com/intelligent-canvas ("Learn more"); https://miro.com/intelligent-canvas/#formats ("Learn more"); https://miro.com/capabilities/blueprints ("Learn more"); https://miro.com/enterprise-security ("Learn more"); https://miro.com/integrations ("Learn more")
Generic anchor text ('click here', 'read more', 'learn more') tells screen readers and search engines nothing about the destination.
Learn more ▾ ▴
Out-of-context lists of links read by AT (one navigation pattern) become useless when every link says 'click here'. Use the destination's title or topic as anchor text. Doubles as SEO win — Google passes anchor-text relevance to the destination.
Source: WCAG 2.4.4 / Google Search Central
Add '(opens in new tab)' to link text or aria-label.
https://canvas.miro.com/?utm_campaign=glb-27q1-nsp-he-c1_sdmp-canvas_26_inperson&utm_source=weblink&utm_medium=redirect&utm_content=hosted%20event&utm_term=homepage-reg-live&src=-weblink_glb; https://miro.com/blog/asos-agile-shopping-experience/; https://trust.miro.com/; https://trust.miro.com/; https://trust.miro.com/; https://trust.miro.com/; https://www.capterra.com/p/128955/Miro/; https://www.g2.com/products/miro/; https://www.trustradius.com/products/miro/reviews; https://twitter.com/mirohq (+7 more)
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
DFavicon & BrandingAction3 icon(s) detectedFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DPrint StylesheetActionNo print stylesFIX
BAlt Text Quality2 of 69 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 2 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
B404 Error PageHTTP 404, custom pageREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
AHeading Hierarchy22 headings, 1 skip(s)PASS
- H1 Get from brainstorm to breakthrough with Miro
- H5 More than 100M users and 250,000companies are collaborating on the canvas skipped
- H2 The only thing more important than moving fast is moving the needle
- H2 100M+
- H2 250+
- H2 6,000+
- H2 Flow from idea to outcome in seconds
- H2 Experience the Innovation Workspace
- H3 AI
- H3 Intelligent Canvas
- H3 Formats
- H3 Blueprints
- H3 Enterprise Security & Scale
- H3 Integrations
- H2 Introducing Miro for Product Acceleration
- H2 Need help getting started?
- H3 Select a plan
- H3 Get started fast
- H3 Explore the network
- H3 Connect with Miro users
- H3 Dive in to ways of working
- H3 Get started with Miro
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
AForm Accessibility1 of 1 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| input | (Enter your work email) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="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
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 Get from brainstorm … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 The only thing more … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 than moving fast is … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 100M+ | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 250+ | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 6,000+ | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Experience the Innov… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Introducing Miro for… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Need help getting st… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Intelligent Canvas | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Formats | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Blueprints | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Enterprise Security … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Integrations | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Select a plan | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Get started fast | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Explore the network | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Connect with | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Miro users | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Dive in to ways of w… | 21.00:1 | 3.0: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.
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.
Navigation
A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more about the `tabindex` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Cookies Settings div.ot-sdk-row > div#onetrust-button-group-parent > div#onetrust-button-group > button#onetrust-pc-btn-handler |
Reject All div.ot-sdk-row > div#onetrust-button-group-parent > div#onetrust-button-group > button#onetrust-reject-all-handler |
Accept All Cookies div.ot-sdk-row > div#onetrust-button-group-parent > div#onetrust-button-group > button#onetrust-accept-btn-handler |
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 |
|---|
More than 100M users and 250,000
companies are collaborating on the canvas div.framer-17ox8cb > div.framer-am0iu1 > div.framer-3qyfb9 > h5.framer-text |
These are opportunities to improve keyboard navigation in your application.