Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FAlt Text QualityAction4 of 33 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 4 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
DLink & Button QualityAction10 issue(s) across 73 links and 22 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| / | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| /en/about-us/strategy.html | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Strategy.Html | |||
| https://twitter.com/intent/tweet?url=htt… | Share on twitter | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/sharer/sharer.p… | Share on facebook | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/shareArticle?mi… | Share on linkedin | new tab | Add '(opens in new tab)' to text |
| https://industry.sika.com/en/home.html | Solutions for Industry | new tab | Add '(opens in new tab)' to text |
| /en/sustainability/innovation.html | Technology & Innovation | new tab | Add '(opens in new tab)' to text |
| https://reports.sika.com/en/annual-repor… | Read story: Digital Momentum a… | img no alt | Add alt attribute to the image |
| https://www.sika.com/en/media/insights/s… | Read story: Sika is now an Off… | img no alt | Add alt attribute to the image |
| https://reports.sika.com/en/annual-repor… | Read story: Digital Momentum a… | img no alt | Add alt attribute to the image |
| https://www.sika.com/en/media/insights/s… | Read story: Sika is now an Off… | img no alt | Add alt attribute to the image |
| https://www.facebook.com/Sika | (empty) | empty | Add link text or aria-label |
| https://twitter.com/sika | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/sika/my… | (empty) | empty | Add link text or aria-label |
| https://www.instagram.com/sika_ag/ | (empty) | empty | Add link text or aria-label |
| https://www.youtube.com/user/sikaInterna… | (empty) | empty | Add link text or aria-label |
| https://www.archdaily.com/catalog/us/com… | (empty) | empty | Add link text or aria-label |
| https://privacyportal-de.onetrust.com/we… | Exercise Your Privacy Rights | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
/; a.sika-ui-header__search-list-link (#221 on page); https://www.facebook.com/Sika; https://twitter.com/sika; https://www.linkedin.com/company/sika/mycompany/; https://www.instagram.com/sika_ag/; https://www.youtube.com/user/sikaInternational; https://www.archdaily.com/catalog/us/companies/615/sika
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.
/en/about-us/strategy.html ("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://twitter.com/intent/tweet?url=https://www.sika.com; https://www.facebook.com/sharer/sharer.php?u=https://www.sika.com; https://www.linkedin.com/shareArticle?mini=true&url=https://www.sika.com&titl…; https://industry.sika.com/en/home.html; /en/sustainability/innovation.html; https://privacyportal-de.onetrust.com/webform/9aaa3e8a-b171-45d6-b15b-5e7dba7…
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.sika-ui-helpbox__search-button (#461 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
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 Structure13 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
B404 Error PageHTTP 404, custom pageREVIEW
CFavicon & BrandingAction9 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 19 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 BUILDING TRUST | 13.13:1 | 3.0:1 | #000000 | #FCC500 | Pass |
| h2 Latest News | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h2 Discover Sika | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h2 Explore Latest Stori… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h2 Explore Latest Stori… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h2 Discover Sika's coll… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 How can we help you? | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Solutions for Constr… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Knowledge Center | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Solutions for Indust… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Working at Sika | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Technology & Innovat… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Financial Calendar | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Line 6 São Paolo Me… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Munich’s Future in… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Digital Momentum and… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 The Increasing Value… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Sika is now an Offic… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 Replacing Steel Rein… | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | Fail |
| h3 The Smart Roof That … | 1.45:1 | 3.0:1 | #000000 | #1B2B36 | 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.
CLighthouse Accessibility AuditsActionScore 77/100 — 7 failing, 22 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 |
|---|
Line 6 São Paolo Metro
Beneath the bustling heart of São Paulo, innovation is … div.sika-ui-story-listing__wrapper > div.sika-ui-base-listing > div.sika-ui-base-listing__results > div.sika-ui-story-listing__teaser-board |
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.
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 |
|---|
div.sika-ui-helpbox__grid > div.sika-ui-helpbox__left > form.sika-ui-helpbox__search > button.sika-ui-helpbox__search-button div.sika-ui-helpbox__grid > div.sika-ui-helpbox__left > form.sika-ui-helpbox__search > button.sika-ui-helpbox__search-button |
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.sika-ui-header__left-content > a > picture > img.sika-ui-header__logo div.sika-ui-header__left-content > a > picture > img.sika-ui-header__logo |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div > div.htmlcode > div > iframe#EurolandToolID div > div.htmlcode > div > iframe#EurolandToolID |
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.sika-ui-header__container > div.sika-ui-header__yellow-band > div.sika-ui-header__left-content > a div.sika-ui-header__container > div.sika-ui-header__yellow-band > div.sika-ui-header__left-content > a |
div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link |
div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link |
div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link |
div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link |
div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link div.sika-ui-footer > div.sika-ui-footer__content > div.sika-ui-footer__social > a.sika-ui-pictogram__link |
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.
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 |
|---|
How can we help you? div.sika-ui-helpbox > div.sika-ui-helpbox__grid > div.sika-ui-helpbox__left > h3.sika-ui-helpbox__title |
These are opportunities to improve keyboard navigation in your application.
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 |
|---|
Media Release / 2026 / April
Sika expands its activities in Central Asia with … div.sika-ui-base-listing__results > div.sika-ui-base-listing__list > article.sika-ui-news-listing__card-item > a.sika-ui-news-listing__card-link |
AD HOC
April / Ad hoc / Financial / Media Release / 2026
Sika reports Q1 2026… div.sika-ui-base-listing__results > div.sika-ui-base-listing__list > article.sika-ui-news-listing__card-item > a.sika-ui-news-listing__card-link |
Media Release / 2026 / March / Construction
Sika advances digitalization in co… div.sika-ui-base-listing__results > div.sika-ui-base-listing__list > article.sika-ui-news-listing__card-item > a.sika-ui-news-listing__card-link |
Line 6 São Paolo Metro
Beneath the bustling heart of São Paulo, innovation is … div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
Munich’s Future in the Making
At record depth, the construction of a second ma… div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
Digital Momentum and Strategic Discipline
Sika continued to advance its strate… div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
The Increasing Value of Real-Time Data
Sika continues to integrate innovative … div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
Sika is now an Official Sponsor of the IIHF Ice Hockey World Championship
Sika… div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
Replacing Steel Reinforcement With Macro-Fibers
The World Business Council for… div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
The Smart Roof That Heals Itself
Modern flat roofs are remarkably versatile: t… div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
Sika Is Leading the Path to Sustainability
Cities play a major role as economi… div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
Smart and Durable Solutions for Data Center Construction
Cloud computing, data… div.sika-ui-story-listing__teaser-board > div.sika-ui-story-listing__grid > article.sika-ui-story-listing__item > a.sika-ui-story-listing__link |
AHeading Hierarchy41 headings, 1 skip(s)PASS
- H1 BUILDING TRUST
- H3 How can we help you? skipped
- H4 Suggested searches
- H4 Quick Links
- H2 Latest News
- H2 Discover Sika
- H3 Solutions for Construction
- H3 Knowledge Center
- H3 Solutions for Industry
- H3 Working at Sika
- H3 Technology & Innovation
- H3 Financial Calendar
- H2 Explore Latest Stories
- H3 Line 6 São Paolo Metro
- H3 Munich’s Future in the Making
- H3 Digital Momentum and Strategic Discipline
- H3 The Increasing Value of Real-Time Data
- H3 Sika is now an Official Sponsor of the IIHF Ice Hockey World Championship
- H3 Replacing Steel Reinforcement With Macro-Fibers
- H3 The Smart Roof That Heals Itself
- H3 Sika Is Leading the Path to Sustainability
- H3 Smart and Durable Solutions for Data Center Construction
- H2 Explore Latest Stories
- H3 Line 6 São Paolo Metro
- H3 Munich’s Future in the Making
- H3 Digital Momentum and Strategic Discipline
- H3 The Increasing Value of Real-Time Data
- H3 Sika is now an Official Sponsor of the IIHF Ice Hockey World Championship
- H3 Replacing Steel Reinforcement With Macro-Fibers
- H3 The Smart Roof That Heals Itself
- H3 Sika Is Leading the Path to Sustainability
- H3 Smart and Durable Solutions for Data Center Construction
- H3 11,201.3
- H3 1,045.3
- H3 33,707
- H3 103
- H3 121
- H2 Discover Sika's collection of completed projects from around the world.
- H3 Corporate
- H3 Solutions
- H3 Sika AG
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
AForm Accessibility1 of 2 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #header-search-input | text | Search | for/id |
| q | text | (find) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="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