Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DWeb ManifestActionValid manifestFIX
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure3 landmarksREVIEW
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
B404 Error PageHTTP 404, custom pageREVIEW
CFavicon & BrandingAction4 icon(s) detectedREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
CColor Contrast (Screenshot)Action20 text elements analyzed, 12 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 Make better presenta… | 2.66:1 | 3.0:1 | #000000 | #3241C1 | Fail |
| h2 Create exceptional s… | 2.86:1 | 3.0:1 | #000000 | #2F48C6 | Fail |
| h2 Slides AI | 6.74:1 | 3.0:1 | #000000 | #6F90E0 | Pass |
| h2 Looking for inspirat… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Try our slide genera… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Meet your new favori… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Present like never b… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Work better, togethe… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 The best tool for de… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Join over 2 million … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Create and Share Pre… | 1.76:1 | 4.5:1 | #000000 | #48039B | Fail |
| span Presentations | 1.80:1 | 4.5:1 | #000000 | #47089E | Fail |
| span Templates | 1.83:1 | 4.5:1 | #000000 | #450DA1 | Fail |
| span Features | 1.86:1 | 4.5:1 | #000000 | #4312A4 | Fail |
| span Teams | 1.91:1 | 4.5:1 | #000000 | #4117A7 | Fail |
| span Pricing | 1.97:1 | 4.5:1 | #000000 | #3F1CAB | Fail |
| span Log in | 2.03:1 | 4.5:1 | #000000 | #3E21AE | Fail |
| span Sign up | 2.10:1 | 4.5:1 | #000000 | #3C26B1 | Fail |
| span Log in | 2.18:1 | 4.5:1 | #000000 | #3A2BB4 | Fail |
| span Sign up | 2.27:1 | 4.5:1 | #000000 | #3830B7 | 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.
AHeading Hierarchy13 headings, 1 skip(s)PASS
- H1 Make better presentations
- H2 Create exceptional slide decks in half the time using intuitive design tools and machine learning. Present remotely or on-site.
- H2 Slides AI
- H2 Looking for inspiration?Try our slide generator.
- H2 Meet your new favorite editor
- H2 Present like never before
- H2 Work better, together
- H2 The best tool for developers
- H2 Join over 2 million creators
- H4 Tour skipped
- H4 Help
- H4 Company
- H4 Resources
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
AAlt Text Quality1 of 3 images have issuesPASS
| Issue | Count |
|---|---|
| missing | 1 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
A+Form AccessibilityNo form controlsPASS
ALink & Button Quality46 links, 1 buttons — all OKPASS
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://help.slides.com | Forum | new tab | Add '(opens in new tab)' to text |
| https://help.slides.com/knowledgebase | Knowledge Base | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/slides | Go to Slides' Twitter profile | new tab | Add '(opens in new tab)' to text |
| https://facebook.com/slidesapp | Go to Slides' Facebook profile | new tab | Add '(opens in new tab)' to text |
Add '(opens in new tab)' to link text or aria-label.
https://help.slides.com; https://help.slides.com/knowledgebase; https://twitter.com/slides; https://facebook.com/slidesapp
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
ALighthouse Accessibility AuditsScore 93/100 — 3 failing, 25 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
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 |
|---|
TOUR footer.global-footer > div.global-footer-links > div.link-group > h4 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.description-cta-wrapper > div.description-testimonials > div.testimonial-avatars > img div.description-cta-wrapper > div.description-testimonials > div.testimonial-avatars > img |
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.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Got it body > div.cc-window > div.cc-compliance > a.cc-btn |