Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction1 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
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
FAlt Text QualityAction8 of 16 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 8 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
DFavicon & BrandingAction2 icon(s) detectedFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CHeading HierarchyAction10 headings, 2 skip(s)REVIEW
- H1 Join the Hardware Revolution
- H1 Hackaday Platform duplicate H1
- H1 Explore Projects duplicate H1
- H3 WORLD’S FASTEST COMMODORE PET USING THE MCL65+ skipped
- H3 Turning a 2 ton robot into a 3D-printer
- H1 Chat With the Community duplicate H1
- H3 Hack Chat skipped
- H3 LED Art Ongoing/Weekly Chat
- H3 Modular Synth Discussion
- H1 Find a Hackerspace Near You duplicate H1
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
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
CLink & Button QualityAction1 issue(s) across 56 links and 1 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /project/204693-worlds-fastest-commodore… | WORLD’S FASTEST COMMODORE PE… | img no alt | Add alt attribute to the image |
| /project/204676-turning-a-2-ton-robot-in… | I turned my 2-ton industrial r… | img no alt | Add alt attribute to the image |
| https://hac.io/m/2369 | Hack Chat | img no alt | Add alt attribute to the image |
| https://hac.io/m/2369 | Hack Chat | img no alt | Add alt attribute to the image |
| https://hac.io/m/289684 | LED Art Ongoing/Weekly Chat | img no alt | Add alt attribute to the image |
| https://hac.io/m/289684 | LED Art Ongoing/Weekly Chat | img no alt | Add alt attribute to the image |
| https://hac.io/m/271844 | Modular Synth Discussion | img no alt | Add alt attribute to the image |
| https://hac.io/m/271844 | Modular Synth Discussion | img no alt | Add alt attribute to the image |
| https://dev.hackaday.io/ | Hackaday API | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://hac.io/m/2369"]; a[href="https://hac.io/m/2369"]; a[href="https://hac.io/m/289684"]; a[href="https://hac.io/m/289684"]; a[href="https://hac.io/m/271844"]; a[href="https://hac.io/m/271844"]
Image-only links with no alt are unidentifiable to screen-reader users — link's destination is invisible.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://dev.hackaday.io/
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.hfr-button (#60 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
C404 Error PageActionHTTP 404, custom pageREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 18 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
4 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 |
|---|---|---|---|---|---|
| h1 Join the Hardware Re… | 1.97:1 | 3.0:1 | #000000 | #6D2727 | Fail |
| h1 Hackaday Platform | 5.66:1 | 3.0:1 | #000000 | #A57F23 | Pass |
| h1 Explore Projects | 1.17:1 | 3.0:1 | #000000 | #171717 | Fail |
| h1 Chat With the Commun… | 1.17:1 | 3.0:1 | #000000 | #171717 | Fail |
| h1 Find a Hackerspace N… | 1.17:1 | 3.0:1 | #000000 | #171717 | Fail |
| title Hackaday.io | The wo… | 1.17:1 | 4.5:1 | #000000 | #171717 | Fail |
| a Discover | 1.17:1 | 4.5:1 | #000000 | #171717 | Fail |
| a Contests | 1.04:1 | 4.5:1 | #000000 | #070705 | Fail |
| a Courses | 1.08:1 | 4.5:1 | #000000 | #0D0C0C | Fail |
| a Create | 1.29:1 | 4.5:1 | #000000 | #202020 | Fail |
| a New Project | 1.35:1 | 4.5:1 | #000000 | #1C2625 | Fail |
| a New Page | 1.41:1 | 4.5:1 | #000000 | #1E292A | Fail |
| a Project List | 1.46:1 | 4.5:1 | #000000 | #212C2B | Fail |
| a Sign up | 1.50:1 | 4.5:1 | #000000 | #232E2F | Fail |
| a Log in | 1.36:1 | 4.5:1 | #000000 | #1D2626 | Fail |
| a Close | 1.47:1 | 4.5:1 | #000000 | #4B1B1C | Fail |
| div Hackaday.io is the w… | 2.73:1 | 4.5:1 | #000000 | #7A443F | Fail |
| a Join Hackaday.io | 4.15:1 | 4.5:1 | #000000 | #8B665A | Fail |
| div - or - | 4.00:1 | 4.5:1 | #000000 | #85681F | Fail |
| span Sign up with Github | 7.05:1 | 4.5:1 | #000000 | #B5912B | 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.
BLighthouse Accessibility AuditsScore 84/100 — 4 failing, 19 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 |
|---|
Ted Fried div.project-item-headline > p > span.identity-card > a |
Brian Brocken div.project-item-headline > p > span.identity-card > a |
Going up? body.index > div#footer > a.back-to-top |
About Us body.index > div#footer > p > a |
Contact Hackaday.io body.index > div#footer > p > a |
Give Feedback body.index > div#footer > p > a |
Terms of Use body.index > div#footer > p > a |
Privacy Policy body.index > div#footer > p > a |
Hackaday API body.index > div#footer > p > a |
Do not sell or share my personal information body.index > div#footer > p > a#do-not-sell-link |
© 2026 Hackaday body.index > div#footer > p > a#footer--home |
These are opportunities to improve the legibility of your content.
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 |
|---|
WORLD’S FASTEST COMMODORE PET USING THE MCL65+ div.hfr-card-list > div.hfr-card-list-item > div.project-item-headline > h3.element-title |
Hack Chat div.hfr-card-meta > div.hfr-card-summary > div.hfr-card-headline > h3.element-title |
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 |
|---|
a > div.hfr-card-img > picture > img a > div.hfr-card-img > picture > img |
a > div.hfr-card-img > picture > img a > div.hfr-card-img > picture > img |
a > div.hfr-card-img > picture > img a > div.hfr-card-img > picture > img |
div.hfr-card-summary > a > figure.hfr-image > img.hfr-is-rounded div.hfr-card-summary > a > figure.hfr-image > img.hfr-is-rounded |
a > div.hfr-card-img > picture > img a > div.hfr-card-img > picture > img |
div.hfr-card-summary > a > figure.hfr-image > img.hfr-is-rounded div.hfr-card-summary > a > figure.hfr-image > img.hfr-is-rounded |
a > div.hfr-card-img > picture > img a > div.hfr-card-img > picture > img |
div.hfr-card-summary > a > figure.hfr-image > img.hfr-is-rounded div.hfr-card-summary > a > figure.hfr-image > img.hfr-is-rounded |
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 |
|---|
Give Feedback body.index > div#footer > p > a |
Privacy Policy body.index > div#footer > p > a |
Hackaday API body.index > div#footer > p > a |
Do not sell or share my personal information body.index > div#footer > p > a#do-not-sell-link |
These items highlight common accessibility best practices.
AForm Accessibility1 of 2 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #email-sign-up | text | none | |
| #add-search | text | (Find projects and more) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="term" id="add-search">
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