Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FAlt Text QualityAction21 of 67 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 21 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
FLink & Button QualityAction20 issue(s) across 190 links and 2 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /eu/en/store | All our productsSmart devices,… | img no alt | Add alt attribute to the image |
| /eu/en/landing/store-scales | All our scale modelsMeet our m… | img no alt | Add alt attribute to the image |
| /eu/en/landing/store-watches | All our watch modelsExplore sm… | img no alt | Add alt attribute to the image |
| /eu/en/refurbished/store | Refurbished productsDiscover t… | img no alt | Add alt attribute to the image |
| /eu/en/scales/compare | Compare scalesFind the best sc… | img no alt | Add alt attribute to the image |
| /eu/en/landing/store-scales | All our scale modelsMeet our m… | img no alt | Add alt attribute to the image |
| /eu/en/health-insights/about-body-compos… | Healthy body compositionUnders… | img no alt | Add alt attribute to the image |
| /eu/en/health-insights/about-body-fat | Body fat percentageHow to meas… | img no alt | Add alt attribute to the image |
| /eu/en/watches/compare | Compare watchesFind the best w… | img no alt | Add alt attribute to the image |
| /eu/en/landing/store-watches | All our watch modelsExplore sm… | img no alt | Add alt attribute to the image |
| /eu/en/landing/for-her | For herDiscover our hybrid con… | img no alt | Add alt attribute to the image |
| /eu/en/landing/for-him | For himExplore our selection o… | img no alt | Add alt attribute to the image |
| /eu/en/body-scan/black/shop | (empty) | empty | Add link text or aria-label |
| /eu/en/body-scan | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Body Scan | |||
| /eu/en/scanwatch-2/42blue/shop | (empty) | empty | Add link text or aria-label |
| /eu/en/scanwatch-2 | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Scanwatch 2 | |||
| /eu/en/u-scan-nutrio/shop | (empty) | empty | Add link text or aria-label |
| /eu/en/u-scan-nutrio | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: U Scan Nutrio | |||
| /eu/en/landing/withings-plus | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Withings Plus | |||
| /eu/en/landing/refurbished | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Refurbished | |||
| /eu/en/withings-app | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Withings App | |||
| https://support.withings.com/hc/fr | FAQ | new tab | Add '(opens in new tab)' to text |
| /eu/en/about-us | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: About Us | |||
| https://www.withings.com/us/en/health-so… | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Health Solutions | |||
| /health-solutions | Withings Health Solutions | new tab | Add '(opens in new tab)' to text |
| /health-solutions/remote-patient-monitor… | Remote Patient Monitoring | new tab | Add '(opens in new tab)' to text |
| https://instagram.com/withings/ | (empty) | empty | Add link text or aria-label |
| https://facebook.com/withings/ | (empty) | empty | Add link text or aria-label |
| https://www.twitter.com/Withings/ | (empty) | empty | Add link text or aria-label |
| https://www.tiktok.com/@withings | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/withing… | (empty) | empty | Add link text or aria-label |
| https://youtube.com/withings/ | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
Links without text are announced as raw URLs by screen readers.
/eu/en/body-scan/black/shop; /eu/en/scanwatch-2/42blue/shop; /eu/en/u-scan-nutrio/shop; https://instagram.com/withings/; https://facebook.com/withings/; https://www.twitter.com/Withings/; https://www.tiktok.com/@withings; https://www.linkedin.com/company/withings/; https://youtube.com/withings/; (+2 more)
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
Generic link text like 'click here' doesn't describe the destination.
/eu/en/body-scan ("Learn more"); /eu/en/scanwatch-2 ("Learn more"); /eu/en/u-scan-nutrio ("Learn more"); /eu/en/landing/withings-plus ("Learn more"); /eu/en/landing/refurbished ("Learn more"); /eu/en/withings-app ("Learn more"); /eu/en/about-us ("Learn more"); https://www.withings.com/us/en/health-solutions ("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://support.withings.com/hc/fr; /health-solutions; /health-solutions/remote-patient-monitoring
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
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
BHeading Hierarchy17 headings, 1 skip(s)REVIEW
- H1 The most advanced connected health station
- H1 The first toilet embedded urine lab duplicate H1
- H1 Restore your nights. Supercharge your days. duplicate H1
- H3 Scales skipped
- H3 Watches
- H3 BP Monitors
- H3 Sleep Analyzer
- H3 U-Scan
- H3 BeamO
- H3 Heart, weight, progress—your health data in one score.
- H3 Our built-in ECG powers your next Cardio Check-Up.
- H3 Crucial patterns in your health, revealed.
- H3 Stay energized. Spot early signals.
- H3 We create technology that people love, to make better health part of daily life.
- H3 We empower healthcare teams to transform patients’ lives, through our health monitoring solutions.
- H2 Start your health journey
- H2 Start your health journey
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
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
CForm AccessibilityAction3 of 3 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| (Enter your email) | placeholder only | ||
| (Enter your email) | placeholder only | ||
| #g-recaptcha-response-100000 | textarea | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<textarea name="g-recaptcha-response" id="g-recaptcha-response-100000">
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="email" name="email" id="email">; <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
B404 Error PageHTTP 404, custom pageREVIEW
BFavicon & Branding18 icon(s) detectedREVIEW
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 |
|---|---|---|---|---|---|
| h2 Start your health jo… | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h2 Start your health jo… | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 Scales | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 Watches | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 BP Monitors | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 Sleep Analyzer | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 U-Scan | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 BeamO | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 Heart, weight, progr… | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 Our built-in ECG pow… | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 Crucial patterns in … | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 Stay energized. Spot… | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 We create technology… | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| h3 We empower healthcar… | 16.31:1 | 3.0:1 | #000000 | #E6E2DF | Pass |
| title Withings | Withings … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Store | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p Discover our shops | 2.74:1 | 4.5:1 | #000000 | #4F5458 | Fail |
| p All our products | 2.74:1 | 4.5:1 | #000000 | #4F5458 | Fail |
| p Smart devices, empow… | 2.74:1 | 4.5:1 | #000000 | #4F5458 | Fail |
| p All our scale models | 2.74:1 | 4.5:1 | #000000 | #4F5458 | 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.
BLighthouse Accessibility AuditsScore 81/100 — 6 failing, 28 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.
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 |
|---|
Explore Withings devices today. div.section_container > div.flex > p.txt_subtitle > span.opacity_50 |
Best seller aside.grid_container > div.grid_container > p > span.badge |
Buy now div.swiper-slide > div > div.flex > a.margin_top_4 |
Learn more div.swiper-slide > div > div.flex > a.margin_top_4 |
Choose your language or country div.lang-mob > div.section_container > div.padding_top_8 > p.label_region |
Legal notice div.corporate-container > ul.corporate > li > a.txt_caption |
Privacy div.corporate-container > ul.corporate > li > a.txt_caption |
Data Security div.corporate-container > ul.corporate > li > a.txt_caption |
Conditions div.corporate-container > ul.corporate > li > a.txt_caption |
Cookies policy div.corporate-container > ul.corporate > li > a.txt_caption |
Set Cookies div.corporate-container > ul.corporate > li > a.txt_caption |
© 2026 Withings All rights reserved. div.sub-footer > div.subfooter-bottom > div.corporate-container > p.txt_book |
These are opportunities to improve the legibility of your content.
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 |
|---|
header.new_nav > nav > div.nav-leftBox > a.withings_logo header.new_nav > nav > div.nav-leftBox > a.withings_logo |
div.padding_left_5 > article.email-kmi > form.input > input#email div.padding_left_5 > article.email-kmi > form.input > input#email |
Register div.padding_left_5 > article.email-kmi > form.input > button.btn_primary |
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 |
|---|
Scales div.grid_container > div.card > div.content > h3.txt_subtitle_large |
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.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
div.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
div.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
div.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
div.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
div.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
div.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
div.texts > div.txt_caption > div.flex > img div.texts > div.txt_caption > div.flex > img |
body.currency-eur > img body.currency-eur > img |
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 |
|---|
header.new_nav > nav > div.nav-leftBox > a.withings_logo header.new_nav > nav > div.nav-leftBox > a.withings_logo |
div.nav_links > div.categories > div.category_others > a.account-sidebar-link div.nav_links > div.categories > div.category_others > a.account-sidebar-link |
div.categories > div.category_others > aside#headerMenuCart > a.headerMenuLink div.categories > div.category_others > aside#headerMenuCart > a.headerMenuLink |
div#swiper-wrapper-b1920c3bc5e861e10 > div.swiper-slide > aside.grid_container > a div#swiper-wrapper-b1920c3bc5e861e10 > div.swiper-slide > aside.grid_container > a |
div#swiper-wrapper-b1920c3bc5e861e10 > div.swiper-slide > aside.grid_container > a div#swiper-wrapper-b1920c3bc5e861e10 > div.swiper-slide > aside.grid_container > a |
div#swiper-wrapper-b1920c3bc5e861e10 > div.swiper-slide > aside.grid_container > a div#swiper-wrapper-b1920c3bc5e861e10 > div.swiper-slide > aside.grid_container > a |
div.padding_top_8 > div.sub-footer > div.subfooter-top > a.logo div.padding_top_8 > div.sub-footer > div.subfooter-top > a.logo |
div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social |
div.subfooter-bottom > ul.social > li.margin_right_4 > a.icon-social div.subfooter-bottom > ul.social > li.margin_right_4 > a.icon-social |
div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social |
div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social |
div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social div.subfooter-bottom > ul.social > li.margin_right_6 > a.icon-social |
div.subfooter-bottom > ul.social > li > a.icon-social div.subfooter-bottom > ul.social > li > a.icon-social |
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 section.swiper-heroes > div.swiper_hero > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 section.swiper-heroes > div.swiper_hero > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 section.swiper-heroes > div.swiper_hero > div.swiper-pagination > span.swiper-pagination-bullet |
These items highlight common accessibility best practices.
ALandmark Structure24 landmarksPASS
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