Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureActionNo landmarksFIX
No landmarks detected
Screen reader users have no way to navigate by region.
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
FAlt Text QualityAction4 of 12 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 4 image(s) |
| too long | 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
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
FFavicon & BrandingAction2 icon(s) detectedFIX
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 QualityAction2 issue(s) across 115 links and 2 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /en/release/ | Download Now! … | img no alt | Add alt attribute to the image |
| /about/features/ | Explore Features … | img no alt | Add alt attribute to the image |
| /gallery/ | Community Gallery … | img no alt | Add alt attribute to the image |
| /learn/ | Learning Resources … | img no alt | Add alt attribute to the image |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="/en/release/"]; a[href="/about/features/"]; a[href="/gallery/"]; a[href="/learn/"]
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
Icon-only buttons need an aria-label so screen readers can announce them.
button (#100 on page); button#menu-toggle
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
B404 Error PageHTTP 404, custom pageREVIEW
CLighthouse Accessibility AuditsActionScore 77/100 — 4 failing, 15 passedREVIEW
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.
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 |
|---|
body#page- > div.header > div.nav > button#menu-toggle body#page- > div.header > div.nav > button#menu-toggle |
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 |
|---|
ul.tabs > li.current > a > img ul.tabs > li.current > a > img |
ul.tabs > li > a > img ul.tabs > li > a > img |
ul.tabs > li > a > img ul.tabs > li > a > img |
ul.tabs > li > a > img ul.tabs > li > a > 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.
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 |
|---|
❤️ Help us make Inkscape awesome! ❤️ ul#tabs > li#tab_hackfest > p > a |
These are opportunities to improve the legibility of your content.
Best practices
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 html |
These items highlight common accessibility best practices.
AHeading Hierarchy12 headingsPASS
- H1 Inkscape
- H2 Draw Freely.
- H1 Inkscape is a powerful, free design tool duplicate H1
- H1 Join our thriving community duplicate H1
- H2 Become our Sponsor
- H1 Blogs duplicate H1
- H2 October, November, and December 2025 Bug Accelerator
- H2 July and August 2025 Bug Accelerator
- H1 Recent News duplicate H1
- H2 Artist Interview: Can Inkscape-made artwork compete in an international film festival?
- H2 Inkscape was hiring: Developers and Administrator (2026)
- H2 Bugs banished – Inkscape 1.4.3 is out!
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
AForm Accessibility1 of 1 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #q | text | (Search website) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="q" id="q">
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 |
|---|---|---|---|---|---|
| title Inkscape - Draw Free… | 17.14:1 | 4.5:1 | #000000 | #E8E8E8 | Pass |
| a I am a bot | 18.93:1 | 4.5:1 | #000000 | #F3F3F3 | Pass |
| a Inkscape | 20.82:1 | 4.5:1 | #000000 | #FEFEFE | Pass |
| a Draw Freely. | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a ❤️ Help us make … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p English | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a English | 20.57:1 | 4.5:1 | #000000 | #FFFCFB | Pass |
| a Deutsch | 20.57:1 | 4.5:1 | #000000 | #FFFCFB | Pass |
| a Français | 20.57:1 | 4.5:1 | #000000 | #FFFCFB | Pass |
| a Hrvatski | 20.57:1 | 4.5:1 | #000000 | #FFFCFB | Pass |
| a Italiano | 20.72:1 | 4.5:1 | #000000 | #FFFDFD | Pass |
| a Español | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Português | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Português Brasileir… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a česky | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Русский | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a العربيّة | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a 日本語 | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a 简体中文 | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a 繁體中文 | 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.