Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FForm AccessibilityAction5 of 13 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #Naam | text | Voornaam | for/id |
| #E-mailadres | E-mailadres | for/id | |
| #Telefoonnummer | tel | Telefoonnummer | for/id |
| #Type-zorg | select | Over welke zorg wilt u meer weten? | for/id |
| #Omschrijving | textarea | Omschrijf hieronder waarover u advies wil hebben of waar u hulp bij nodig hebt: | for/id |
| #id-1eBA7VHN44 | E-mailadres * | for/id | |
| #id-I0GCwuEU61 | text | Voornaam | for/id |
| #id-umIBhBM0EQ | text | Achternaam | for/id |
| #search | search | (Waar bent u naar op zoek?) | placeholder only |
| (Your e-mail here) | placeholder only | ||
| input | submit | (none) | none |
| input | submit | (none) | none |
| input | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit">; <input type="submit">; <input type="submit">
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
Placeholder text disappears on focus and is not a reliable label.
<input type="search" name="query" id="search">; <input type="email" name="email" id="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
DMobile Keyboard & AutofillAction5/6 eligible field(s) missing autocomplete or inputmodeFIX
DTap Target AdequacyAction11 tap target(s) too small or too close togetherFIX
FFavicon & BrandingAction2 icon(s) detectedFIX
FWeb ManifestActionValid manifestFIX
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure9 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
CHeading HierarchyAction71 headings, 3 skip(s)REVIEW
- H1 Coloriet: wij zorgen mét mensen in de ouderenzorg
- H3 Samen met u, uw naasten, vrijwilligers en professionals skipped
- H3 Dagbesteding
- H4 H4 title
- H3 Thuiszorg
- H4 H4 title
- H3 Hospice
- H4 H4 title
- H3 Revalidatie
- H4 H4 title
- H3 Tijdelijk verblijf
- H4 H4 title
- H3 Wonen
- H4 H4 title
- H3 Dagbesteding
- H4 H4 title
- H3 Thuiszorg
- H4 H4 title
- H3 Hospice
- H4 H4 title
- H3 Revalidatie
- H4 H4 title
- H3 Tijdelijk verblijf
- H4 H4 title
- H3 Wonen
- H4 H4 title
- H2 Dit is Janny: "Het is heel gezellig"
- H2 Dit is Anke: "Van betekenis zijn"
- H2 Dit is Mylène: "De tijd vliegt voorbij"
- H2 Dit is Toos: "Vrijwilligerswerk houdt je gezond"
- H2 Dit is Ruud: "Daar doe ik het voor"
- H2 Over Coloriet in de ouderenzorg
- H5 Dit mag u van ons verwachten skipped
- H5 Wat kan Coloriet betekenen voor u als mantelzorger?
- H5 Voor wie werkt Coloriet?
- H5 Ouderen met een zorgvraag
- H5 Familieleden en mantelzorgers
- H5 Zorgverwijzers
- H2 Het laatste nieuws bij Coloriet
- H3 H3 title
- H4 Denk mee over een nieuwe naam voor Hospice ‘t Hofje
- H3 H3 title
- H4 Samenwerking Coloriet, Triade Vitree en Firda levert eerste gediplomeerden op!
- H3 H3 title
- H4 Samen sterk in privacy en gegevensbescherming op de Noord-Veluwe
- H3 H3 title
- H4 Coloriet en Sensara starten samenwerking: leefpatroonmonitoring in de wijkzorg
- H3 H3 title
- H4 Lichtpuntjes in november: kinderen zingen voor ouderen met dementie bij Coloriet
- H3 H3 title
- H4 Aeres Hogeschool ontwerpt nieuwe beleeftuin bij Coloriet de Regenboog
- H2 Werken bij Coloriet
- H2 Veelgestelde vragen over ouderenzorg bij Coloriet
- H5 In welke plaatsen is Coloriet actief? skipped
- H5 Is er een wachtlijst voor wonen bij Coloriet?
- H5 Vergoedt de zorgverzekeraar of gemeente de zorg?
- H5 Wat is het verschil tussen thuiszorg en dagbesteding?
- H5 Hoe ondersteunt Coloriet mensen met dementie?
- H3 Vraag hier de juiste zorg aan
- H3 Liever even bellen? We denken graag met u mee
- H3 Samen kijken wat past
- H4 Zorgaanbod
- H4 Doelgroepen
- H4 Over ons
- H4 Overig
- H5 Zorgaanbod
- H5 Doelgroepen
- H5 Over ons
- H5 Overig
- H4 Contact
- H4 Blijf op de hoogte
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
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
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
CLink & Button QualityAction10 issue(s) across 263 links and 7 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| / | home | img no alt | Add alt attribute to the image |
| https://www.zorgkaartnederland.nl/zorgin… | 8,2(303) | new tab | Add '(opens in new tab)' to text |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| https://vacatures.coloriet.nl/o/open-sol… | Open sollicitatie | new tab | Add '(opens in new tab)' to text |
| # | (empty) | empty | Add link text or aria-label |
| https://vacatures.coloriet.nl/o/open-sol… | Open sollicitatie | new tab | Add '(opens in new tab)' to text |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| /dagbesteding | DagbestedingH4 titleIn onze da… | img no alt | Add alt attribute to the image |
| /thuiszorg | ThuiszorgH4 titleColoriet Wijk… | img no alt | Add alt attribute to the image |
| /hospice | HospiceH4 titleIn de laatste l… | img no alt | Add alt attribute to the image |
| /revalidatie | RevalidatieH4 titleBij Colorie… | img no alt | Add alt attribute to the image |
| /tijdelijk-verblijf | Tijdelijk verblijfH4 titleAls … | img no alt | Add alt attribute to the image |
| /wonen | WonenH4 titleNaast een fijne w… | img no alt | Add alt attribute to the image |
| /dagbesteding | DagbestedingH4 titleIn onze da… | img no alt | Add alt attribute to the image |
| /thuiszorg | ThuiszorgH4 titleColoriet Wijk… | img no alt | Add alt attribute to the image |
| /hospice | HospiceH4 titleIn de laatste l… | img no alt | Add alt attribute to the image |
| /revalidatie | RevalidatieH4 title Bij Colori… | img no alt | Add alt attribute to the image |
| /tijdelijk-verblijf | Tijdelijk verblijfH4 titleAls … | img no alt | Add alt attribute to the image |
| /wonen | WonenH4 title Naast een fijne … | img no alt | Add alt attribute to the image |
| /ervaringsverhalen/dit-is-janny-het-is-h… | ErvaringsverhaalDit is Janny: … | img no alt | Add alt attribute to the image |
| /ervaringsverhalen/anke-veldkamp-vrijwil… | ErvaringsverhaalDit is Anke: "… | img no alt | Add alt attribute to the image |
| /ervaringsverhalen/dit-is-mylene-de-tijd… | ErvaringsverhaalDit is Mylène… | img no alt | Add alt attribute to the image |
| /ervaringsverhalen/dit-is-toos-vrijwilli… | ErvaringsverhaalDit is Toos: "… | img no alt | Add alt attribute to the image |
| /ervaringsverhalen/ik-ben-ruud-vrijwilli… | ErvaringsverhaalDit is Ruud: "… | img no alt | Add alt attribute to the image |
| /nieuwsberichten/denk-mee-over-een-nieuw… | H3 titleDenk mee over een nieu… | img no alt | Add alt attribute to the image |
| /nieuwsberichten/samenwerking-coloriet-t… | H3 titleSamenwerking Coloriet,… | img no alt | Add alt attribute to the image |
| /nieuwsberichten/samen-sterk-privacy-geg… | H3 titleSamen sterk in privacy… | img no alt | Add alt attribute to the image |
| /nieuwsberichten/coloriet-sensara-samenw… | H3 titleColoriet en Sensara st… | img no alt | Add alt attribute to the image |
| /nieuwsberichten/lichtpuntjes-november-k… | H3 titleLichtpuntjes in novemb… | img no alt | Add alt attribute to the image |
| /nieuwsberichten/aeres-hogeschool-beleef… | H3 titleAeres Hogeschool ontwe… | img no alt | Add alt attribute to the image |
| /vacatures/verzorgende-ig-23 | Verzorgende IG .link-item-ho… | img no alt | Add alt attribute to the image |
| /vacatures/helpende-2-flexpool-1 | Helpende (2+) Flexpool .link… | img no alt | Add alt attribute to the image |
| /vacatures/hr-medewerker-1 | HR-medewerker .link-item-hov… | img no alt | Add alt attribute to the image |
| # | (empty) | empty | Add link text or aria-label |
| / | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/Coloriet | (empty) | empty | Add link text or aria-label |
| https://www.instagram.com/werkenbijcolor… | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/colorie… | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
#; #; #; #; #; #; /; https://www.facebook.com/Coloriet; https://www.instagram.com/werkenbijcoloriet/; https://www.linkedin.com/company/coloriet
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://www.zorgkaartnederland.nl/zorginstelling/verpleeghuis-en-verzorgingsh…; https://vacatures.coloriet.nl/o/open-sollicitatie/; https://vacatures.coloriet.nl/o/open-sollicitatie/
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
C404 Error PageActionHTTP 404, custom pageREVIEW
BPWA Depth3 PWA signal(s) surfacedREVIEW
BLighthouse Accessibility AuditsScore 84/100 — 5 failing, 23 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.
ARIA
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Ervaringsverhaal
Dit is Janny: "Het is heel gezellig"
Iedere donderdagmiddag … div.testimonial-wrapper > div.swiper-group > div.swiper > div#swiper-wrapper-486665d29f61e834 |
Denk mee over een nieuwe naam voor Hospice ‘t Hofje
Samenwerking Coloriet, Tria… div.news-wrapper > div.swiper-group > div.swiper > div#swiper-wrapper-c91fd2a57157ceaa |
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.
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 |
|---|
Aanpassen div.cky-notice > div.cky-notice-group > div.cky-notice-btn-wrapper > button.cky-btn |
Alles afwijzen div.cky-notice > div.cky-notice-group > div.cky-notice-btn-wrapper > button.cky-btn |
Accepteer alles div.cky-notice > div.cky-notice-group > div.cky-notice-btn-wrapper > button.cky-btn |
0320 290 508 div.cta-card-content-wrapper > div.cta-card-button-wrapper > a.cta-button > p.cta-button-text |
These are opportunities to improve the legibility of your content.
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 |
|---|
Samen met u, uw naasten, vrijwilligers en professionals div.hero-content > div.slot > div.rich-text-block > h3 |
Dit mag u van ons verwachten div.accordion-item > div.accordion-question-wrapper > div.accordion-question > h5 |
Denk mee over een nieuwe naam voor Hospice ‘t Hofje div.swiper-slide > a.base-card > div.card-content-wrapper > h4.heading-3 |
In welke plaatsen is Coloriet actief? div.accordion-item > div.accordion-question-wrapper > div.accordion-question > h5 |
Zorgaanbod div.accordion-item > div.accordion-question-wrapper > div.accordion-question > h5 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.navbar_container > div.navbar_top > div.navbar_cta-wrapper > a.icon-button div.navbar_container > div.navbar_top > div.navbar_cta-wrapper > a.icon-button |
div.navbar_container > div.search-bar_wrapper > div.search-bar_inner > a.search-bar_close div.navbar_container > div.search-bar_wrapper > div.search-bar_inner > a.search-bar_close |
div.footer-top-wrapper > div.w-layout-blockcontainer > div.footer-top > a#w-node-_957cc253-2447-e99c-c107-de16566c0d9d-566c0d0a div.footer-top-wrapper > div.w-layout-blockcontainer > div.footer-top > a#w-node-_957cc253-2447-e99c-c107-de16566c0d9d-566c0d0a |
div.footer-bottom > div.footer-social-links-wrapper > div.footer-social-links > a.footer-social-link-wrapper div.footer-bottom > div.footer-social-links-wrapper > div.footer-social-links > a.footer-social-link-wrapper |
div.footer-bottom > div.footer-social-links-wrapper > div.footer-social-links > a.footer-social-link-wrapper div.footer-bottom > div.footer-social-links-wrapper > div.footer-social-links > a.footer-social-link-wrapper |
div.footer-bottom > div.footer-social-links-wrapper > div.footer-social-links > a.footer-social-link-wrapper div.footer-bottom > div.footer-social-links-wrapper > div.footer-social-links > a.footer-social-link-wrapper |
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.
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.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 4 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 5 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 1 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 4 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 5 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 6 div.swiper-navigation-wrapper > div.swiper-navigation > div.swiper-pagination > span.swiper-pagination-bullet |
These items highlight common accessibility best practices.
A+Heading Text QualityAll 71 heading(s) have substantive, well-formed textPASS
A+Alt Text QualityAll 68 images OKPASS
A+Form Input Types13 form control(s) checked, no type mismatchesPASS
A+Form Input Quality13 form control(s) checked, no input-semantic issuesPASS
A+Document LanguageLang attribute set to "nl-NL"PASS
ATabindex Anti-Patterns0 positive, 2 -1-on-focusablePASS
A+Iframe AccessibilityNo iframes on this pagePASS
A+Mobile-Readable Font SizesAll 114 visible text node(s) render at >= 12 CSS pixelsPASS
A+Mobile UX Depth1 mobile-depth signal(s) detectedPASS
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 |
|---|---|---|---|---|---|
| h2 Dit is Janny: "Het i… | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Dit is Anke: "Van be… | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Dit is Mylène: "De … | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Dit is Toos: "Vrijwi… | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Dit is Ruud: "Daar d… | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Over Coloriet in de … | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Het laatste nieuws b… | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Werken bij Coloriet | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h2 Veelgestelde vragen … | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Samen met u, uw naas… | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Dagbesteding | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Thuiszorg | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Hospice | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Revalidatie | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Tijdelijk verblijf | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Wonen | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Dagbesteding | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Thuiszorg | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Hospice | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | Pass |
| h3 Revalidatie | 19.09:1 | 3.0:1 | #000000 | #F4F4F4 | 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.