Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.D404 Error PageActionHTTP 404, custom pageFIX
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
BAlt Text Quality1 of 10 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 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
CLink & Button QualityAction3 issue(s) across 43 links and 24 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://business.safety.google/privacy/ | Google privacy policy … | new tab | Add '(opens in new tab)' to text |
| https://cookieinformation.com/cookie-and… | Cookie Information - Privacy … | new tab | Add '(opens in new tab)' to text |
| https://cookieinformation.com/ | Cookie Information … | new tab | Add '(opens in new tab)' to text |
| https://tools.google.com/dlpage/gaoptout | You can opt-out of cookies fro… | new tab | Add '(opens in new tab)' to text |
| https://support.google.com/chrome/answer… | Google Chromeopens in new tab | new tab | Add '(opens in new tab)' to text |
| https://support.apple.com/en-us/HT201265 | Safariopens in new tab | new tab | Add '(opens in new tab)' to text |
| https://support.microsoft.com/en-us/help… | Microsoft Edgeopens in new tab | new tab | Add '(opens in new tab)' to text |
| https://support.mozilla.org/en-US/kb/del… | Mozilla Firefoxopens in new ta… | new tab | Add '(opens in new tab)' to text |
| https://www.samsung.com/uk/support/mobil… | Samsung Internetopens in new t… | new tab | Add '(opens in new tab)' to text |
| https://help.opera.com/en/latest/web-pre… | Operaopens in new tab | new tab | Add '(opens in new tab)' to text |
| https://timeread.hubpages.com/hub/How-to… | Androidopens in new tab | new tab | Add '(opens in new tab)' to text |
| https://cookieinformation.com/ | Cookie Information opens in ne… | new tab | Add '(opens in new tab)' to text |
| https://cookieinformation.com/ | Cookie Information … | new tab | Add '(opens in new tab)' to text |
| / | Anticimex | img no alt | Add alt attribute to the image |
| https://anticimexonline.sharepoint.com/s… | (empty) | empty | Add link text or aria-label |
| https://anticimexonline.sharepoint.com/s… | Warranty & Claims | new tab | Add '(opens in new tab)' to text |
| https://anticimexonline.sharepoint.com/s… | (empty) | empty | Add link text or aria-label |
| https://anticimexonline.sharepoint.com/s… | Leadtime | new tab | Add '(opens in new tab)' to text |
| https://anticimexonline.sharepoint.com/s… | (empty) | empty | Add link text or aria-label |
| https://anticimexonline.sharepoint.com/s… | Smart Products | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
https://anticimexonline.sharepoint.com/sites/AxSmartNet/SitePages/WarrantyAnd…; https://anticimexonline.sharepoint.com/sites/AxSmartNet/SitePages/Update-on-l…; https://anticimexonline.sharepoint.com/sites/AxSmartNet/SitePages/SmartProduc…
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://business.safety.google/privacy/; https://cookieinformation.com/cookie-and-privacy-policy/; https://cookieinformation.com/; https://tools.google.com/dlpage/gaoptout; https://support.google.com/chrome/answer/95647?hl=en; https://support.apple.com/en-us/HT201265; https://support.microsoft.com/en-us/help/4027947/microsoft-edge-delete-cookies; https://support.mozilla.org/en-US/kb/delete-cookies-remove-info-websites-stored; https://www.samsung.com/uk/support/mobile-devices/using-the-samsung-internet-…; https://help.opera.com/en/latest/web-preferences/#cookies (+6 more)
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
BTabindex Anti-Patterns0 positive, 4 -1-on-focusableREVIEW
BMobile-Readable Font Sizes93% of visible text renders at >= 12 CSS px (3 below threshold)REVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 20 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
1 contrast failures on background images/gradients
These failures are invisible to CSS-based accessibility tools like Lighthouse. The text may be fine on a solid background, but fails when rendered over an image or gradient.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h2 You control your dat… | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 Cookie policy | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 What is a cookie? | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 How our website uses… | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 How long are cookies… | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 How to block or dele… | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 How can you delete c… | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 Changing your consen… | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 Do you have any ques… | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 Warranty & Claims | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 Leadtime | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| h2 Smart Products | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| title Home | 1.35:1 | 4.5:1 | #000000 | #072543 | Fail |
| div We and our business … | 2.45:1 | 4.5:1 | #000000 | #4C4C4C | Fail |
| div By clicking ‘Accep… | 1.30:1 | 4.5:1 | #000000 | #06213F | Fail |
| div You can withdraw you… | 1.30:1 | 4.5:1 | #000000 | #06213F | Fail |
| div You can read more ab… | 1.30:1 | 4.5:1 | #000000 | #06213F | Fail |
| button Read more about cook… | 1.63:1 | 4.5:1 | #000000 | #243343 | Fail |
| a Google privacy polic… | 1.92:1 | 4.5:1 | #000000 | #373D46 | Fail |
| span opens in new tab | 1.89:1 | 4.5:1 | #000000 | #363C46 | 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 83/100 — 4 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.
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 |
|---|
Anticimex - Ordering portal div.container > div.flex > div.flex > span |
HOME div.text-left > div.mt-4 > a.router-link-active > button.!rounded-full |
These are opportunities to improve the legibility of your content.
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.flex > div.flex > a.router-link-active > img.w-full div.flex > div.flex > a.router-link-active > img.w-full |
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.grid > article.flex > div.h-[150px] > a.full-link div.grid > article.flex > div.h-[150px] > a.full-link |
div.grid > article.flex > div.h-[150px] > a.full-link div.grid > article.flex > div.h-[150px] > a.full-link |
div.grid > article.flex > div.h-[150px] > a.full-link div.grid > article.flex > div.h-[150px] > a.full-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.
Best practices
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
head > meta head > meta |
These items highlight common accessibility best practices.
A+Heading Hierarchy14 headingsPASS
- H2 You control your data
- H2 Cookie policy
- H2 What is a cookie?
- H2 How our website uses cookies
- H2 How long are cookies stored?
- H2 How to block or delete cookies
- H2 How can you delete cookies?
- H2 Changing your consent
- H2 Do you have any questions?
- H1 Pest Control and Pest Management
- H2 Warranty & Claims
- H2 Leadtime
- H2 Smart Products
- H2 What can you do on the order portal?
A+Heading Text QualityAll 14 heading(s) have substantive, well-formed textPASS
AForm Accessibility1 of 1 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| input | text | (What are you searching?) | 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