Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.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
B404 Error PageHTTP 404, custom pageREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 13 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
10 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 |
|---|---|---|---|---|---|
| title fabsound.ie | 6.02:1 | 4.5:1 | #000000 | #668CB9 | Pass |
| div Search this site | 6.37:1 | 4.5:1 | #000000 | #6A91BA | Pass |
| span Embedded Files | 6.68:1 | 4.5:1 | #000000 | #6E95BB | Pass |
| span Skip to main content | 7.18:1 | 4.5:1 | #000000 | #769BBB | Pass |
| span Skip to navigation | 7.70:1 | 4.5:1 | #000000 | #909EB0 | Pass |
| span fabsound.ie | 7.94:1 | 4.5:1 | #000000 | #89A2BA | Pass |
| a Home | 7.17:1 | 4.5:1 | #000000 | #8A98AC | Pass |
| a Previous Work | 1.98:1 | 4.5:1 | #000000 | #363F50 | Fail |
| a Contact | 1.19:1 | 4.5:1 | #000000 | #171823 | Fail |
| span fabsound.ie | 3.39:1 | 4.5:1 | #000000 | #625F6F | Fail |
| a Home | 2.06:1 | 4.5:1 | #000000 | #3B4150 | Fail |
| a Previous Work | 2.90:1 | 4.5:1 | #000000 | #5B555D | Fail |
| a Contact | 2.59:1 | 4.5:1 | #000000 | #4F4F58 | Fail |
| a More | 1.18:1 | 4.5:1 | #000000 | #131724 | Fail |
| a Home | 1.81:1 | 4.5:1 | #000000 | #323945 | Fail |
| a Previous Work | 1.07:1 | 4.5:1 | #000000 | #0B0B11 | Fail |
| a Contact | 1.20:1 | 4.5:1 | #000000 | #17191F | Fail |
| span FABsound | 1.63:1 | 4.5:1 | #000000 | #2D323C | Fail |
| span Booming is Business | 1.12:1 | 4.5:1 | #000000 | #0E121E | Fail |
| span About Me | 1.10:1 | 4.5:1 | #000000 | #0C1019 | 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.
AHeading Hierarchy3 headingsPASS
- H1 FABsound
- H1 Booming is Business duplicate H1
- H2 About Me
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
A+Heading Text QualityAll 3 heading(s) have substantive, well-formed textPASS
A+Alt Text QualityNo imagesPASS
A+Form AccessibilityAll 1 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| input | search | Search this site | aria-label |
ALink & Button Quality1 issue(s) across 17 links and 2 buttonsPASS
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| More | generic text | Replace with descriptive text | |
Before: More Suggested: Home page | |||
| https://wa.me/3530863253906 | Ireland +353 (0)86 325 3906 | new tab | Add '(opens in new tab)' to text |
| https://wa.me/4407428113766 | UK +44 (0)74 28 1137 66 | new tab | Add '(opens in new tab)' to text |
| mailto:fearghalbonner@gmail.com | fearghalbonner@gmail.com | new tab | Add '(opens in new tab)' to text |
Generic link text like 'click here' doesn't describe the destination.
("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://wa.me/3530863253906; https://wa.me/4407428113766; mailto:fearghalbonner@gmail.com
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
A+Form Input Types1 form control(s) checked, no type mismatchesPASS
A+Form Input Quality1 form control(s) checked, no input-semantic issuesPASS
A+Mobile Keyboard & AutofillNo autofill-eligible form controlsPASS
A+Document LanguageLang attribute set to "en-US"PASS
A+Tabindex Anti-Patterns36 explicit tabindex attribute(s) checked, no anti-patternsPASS
A+Iframe AccessibilityNo iframes on this pagePASS
A+Tap Target AdequacyAll tap targets meet WCAG 2.5.5/2.5.8 sizingPASS
A+Mobile-Readable Font SizesAll 19 visible text node(s) render at >= 12 CSS pixelsPASS
A+PWA DepthNo PWA depth issues detectedPASS
A+Mobile UX Depth1 mobile-depth signal(s) detectedPASS
A+Lighthouse Accessibility AuditsScore 100/100 — 0 failing, 22 passedPASS
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.