Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FFavicon & BrandingAction1 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
BLandmark Structure7 landmarksREVIEW
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
BLink & Button Quality2 issue(s) across 11 links and 18 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.ccm19.de/ | Powered by CCM19 | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Add '(opens in new tab)' to link text or aria-label.
https://www.ccm19.de/
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
Icon-only buttons need an aria-label so screen readers can announce them.
button.ccm--tree-node-toggle (#143 on page); button.ccm-settings-summoner--link (#160 on page)
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
C404 Error PageActionHTTP 404, custom pageREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 4 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 Geben Sie Ort oder P… | 1.67:1 | 3.0:1 | #000000 | #003366 | Fail |
| title Startseite - IHK | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Top | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span IHKs als Liste öffn… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span IHK-Liste schließen | 1.67:1 | 4.5:1 | #000000 | #003366 | Fail |
| a Gebärdensprache | 1.67:1 | 4.5:1 | #000000 | #003366 | Fail |
| a Leichte Sprache | 1.64:1 | 4.5:1 | #000000 | #003264 | Fail |
| a Erklärung zur Barri… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Hinweise zum Datensc… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Impressum | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Wir nutzen Cookies u… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Wir verwenden Cookie… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| label Technisch notwendig | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div (2) | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| button individuelles speich… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| button alles ablehnen | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| button alles akzeptieren | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Impressum | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Datenschutzhinweis | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Details | 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.
A+Heading Hierarchy1 headingsPASS
- H1 Geben Sie Ort oder Postleitzahl ein, um zu dem Angebot Ihrer IHK zu gelangen:
A+Alt Text QualityAll 2 images OKPASS
AForm Accessibility1 of 5 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #ccm-widget--purpose-41ba25c | checkbox | Technisch notwendig | for/id |
| #ccm-purpose-41ba25c | checkbox | Technisch notwendig (2) | for/id |
| #ccm-cp--embedding-a6e08a5 | checkbox | IHK System-Cookies | for/id |
| #ccm-cp--embedding-61c7d87 | checkbox | Cookie Consent Manager CCM19 | for/id |
| input | text | (z.B. 44263 Dortmund) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text">
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
ALighthouse Accessibility AuditsScore 92/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.
Names and labels
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.col > form.ihk-finder > span.twitter-typeahead > input.tt-hint div.col > form.ihk-finder > span.twitter-typeahead > input.tt-hint |
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.
Tables and lists
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Gebärdensprache div#ihk-finder > footer.finder-footer > nav > li |
Leichte Sprache div#ihk-finder > footer.finder-footer > nav > li |
Erklärung zur Barrierefreiheit div#ihk-finder > footer.finder-footer > nav > li |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.