Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction38 landmarksFIX
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Without a <main> landmark, screen-reader users can't skip past the navigation to the page content — every page starts with re-reading the menu.
Learn more ▾ ▴
The <main> element marks the page's primary content area. Assistive tech offers a 'jump to main' shortcut — but only if <main> exists. Without it, every page navigation forces re-reading the header. Wrap your primary content in a single <main>.
Source: WAI-ARIA / WCAG 2.4.1
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
DForm AccessibilityAction28 of 28 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #product-search-autocomplete-f2fa8b0b-20a9-4465-9fea-a78647c247eb | text | (Product Search) | placeholder only |
| #input-suburb-or-postcode-fa5ce78a-ebc0-4a63-a78c-db3eb4d52541 | text | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
| input | tel | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="text" id="input-suburb-or-postcode-fa5ce78a-ebc0-4a63-a78c-db3eb4d52541">; <input type="tel">; <input type="tel">; <input type="tel">; <input type="tel">; <input type="tel">; <input type="tel">; <input type="tel">; <input type="tel">; <input type="tel"> (+17 more)
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="text" id="product-search-autocomplete-f2fa8b0b-20a9-4465-9fea-a78647c247eb">
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 & AutofillAction52/52 eligible field(s) missing autocomplete or inputmodeFIX
DMobile-Readable Font SizesAction66% of visible text renders at >= 12 CSS px (1 below threshold)FIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
CAlt Text QualityAction5 of 107 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 3 image(s) |
| generic | 2 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
BLink & Button Quality1 issue(s) across 559 links and 31 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.facebook.com/rseasafety/ | new tab | Add '(opens in new tab)' to text | |
| https://www.instagram.com/rseasafety | new tab | Add '(opens in new tab)' to text | |
| https://www.linkedin.com/company/2554255… | new tab | Add '(opens in new tab)' to text | |
| https://rseaoutlet.com.au/ | Shop Outlet | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
Add '(opens in new tab)' to link text or aria-label.
https://www.facebook.com/rseasafety/; https://www.instagram.com/rseasafety; https://www.linkedin.com/company/2554255/admin/feed/posts/; https://rseaoutlet.com.au/
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.btn (#359 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
BIframe Accessibility2/5 iframe(s) missing title; 0 placeholder(s)REVIEW
C404 Error PageActionHTTP 301, custom pageREVIEW
CFavicon & BrandingAction3 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 7 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 TRUSTED SAFETY BRAND… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 BEST SELLERS | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Safety Resources | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Latest News | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title RSEA Safety – Aust… | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| button Close | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| span Contact Us | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| span About Us | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| span About RSEA Safety | 7.37:1 | 4.5:1 | #000000 | #999999 | Pass |
| span Career | 1.09:1 | 4.5:1 | #000000 | #091107 | Fail |
| span RSEA Rewards | 1.40:1 | 4.5:1 | #000000 | #102D09 | Fail |
| span Safety Catalogues | 2.61:1 | 4.5:1 | #000000 | #175D08 | Fail |
| span Business Services | 5.03:1 | 4.5:1 | #000000 | #189001 | Pass |
| span New Business and Ten… | 12.47:1 | 4.5:1 | #000000 | #7ADE66 | Pass |
| span 30-Day Trade Account… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Direct Online Paymen… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Work Uniform Solutio… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Commercial Safety So… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Onsite & Vending Ser… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Digital Ordering | 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.
CLighthouse Accessibility AuditsActionScore 77/100 — 6 failing, 20 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.
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 |
|---|
fieldset#widget-product-search-742f04b0-3c5e-46e0-b0de-4849c5301093 > div#search-container > div > button.btn fieldset#widget-product-search-742f04b0-3c5e-46e0-b0de-4849c5301093 > div#search-container > div > button.btn |
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.widget-html-snippet > div.widget-html-snippet > div.topbar-generic-item > a div.widget-html-snippet > div.widget-html-snippet > div.topbar-generic-item > a |
div.grid-row > div.col-1-2 > div.widget-login-logout > a.main-menu-link div.grid-row > div.col-1-2 > div.widget-login-logout > a.main-menu-link |
Tenders div.owl-stage > div.owl-item > div.gallery-slide > a.gallery-slide-link |
Hire quote online div.owl-stage > div.owl-item > div.gallery-slide > a.gallery-slide-link |
Steel Blue Competion 2026 div.owl-stage > div.owl-item > div.gallery-slide > a.gallery-slide-link |
Tenders div.owl-stage > div.owl-item > div.gallery-slide > a.gallery-slide-link |
Hire quote online div.owl-stage > div.owl-item > div.gallery-slide > a.gallery-slide-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.
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 |
|---|
E1300ST_ div > div.cv-zone-product-2 > div.cv-zone-product-4 > span.widget-productlist-code |
HF1605__ div > div.cv-zone-product-2 > div.cv-zone-product-4 > span.widget-productlist-code |
Now: $35.00 div > div.cv-zone-product-2 > div.cv-zone-product-5 > span.widget-productlist-sale-price |
318598__ div > div.cv-zone-product-2 > div.cv-zone-product-4 > span.widget-productlist-code |
P727057_ div > div.cv-zone-product-2 > div.cv-zone-product-4 > span.widget-productlist-code |
These are opportunities to improve the legibility of your content.
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 |
|---|
SHOP OUTLET div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
SHOP BY BRAND div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
NEW div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
WORKWEAR div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
WORK BOOTS div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
PPE div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
WORKPLACE SAFETY div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
ROAD SAFETY div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
HARDWARE div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
HIRE div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
BULKY ITEM div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
BEST SELLERS div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
HELP div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
CONTACT US div#mobilemenupublic-dadb7e60-02b7-4e95-b8ee-11eeef7979b9 > div#mobile-menu > nav.top-level > li.top-li |
These are opportunities to improve the experience of reading tabular or list data using 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 |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html.k-webkit html.k-webkit |
These items highlight common accessibility best practices.
A+Heading Hierarchy11 headingsPASS
- H2 BEST SELLERS
- H1 TRUSTED SAFETY BRANDS
- H2 Safety Resources
- H2 Plastic vs Concrete vs Steel? How to choose the right barrier for your next project?
- H2 Which safety signs do you need in your workplace?
- H2 Understanding the NEW EN388 Mechanical Standards
- H2 Latest News
- H2 RSEA Safety Albion Park Now Open
- H2 RSEA Chirnside Park Now Open
- H2 RSEA Forrestdale Now Open
- H2 Follow Us