Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction10 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
DAlt Text QualityAction4 of 11 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
FLink & Button QualityAction5 issue(s) across 268 links and 21 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| (empty) | empty | Add link text or aria-label | |
| /about-us | Learn More | generic text | Replace with descriptive text |
Before: Learn More Suggested: About Us | |||
| /about-us | Learn More | generic text | Replace with descriptive text |
Before: Learn More Suggested: About Us | |||
| /newsroom/press-releases/2026/2025-popes… | Slow Growth Impacts Nation’s… | img no alt | Add alt attribute to the image |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| https://www.facebook.com/uscensusbureau | new tab | Add '(opens in new tab)' to text | |
| http://x.com/uscensusbureau | X (Twitter) | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/us-cens… | Linkedln | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/uscensusbur… | YouTube | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/uscensusbureau | new tab | Add '(opens in new tab)' to text | |
Links without text are announced as raw URLs by screen readers.
a.uscb-color-primary (#140 on page); a (#646 on page); a (#874 on page)
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.
/about-us ("Learn More"); /about-us ("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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="/newsroom/press-releases/2026/2025-popest-metro-micro-counties.html"]
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://www.facebook.com/uscensusbureau; http://x.com/uscensusbureau; https://www.linkedin.com/company/us-census-bureau; https://www.youtube.com/user/uscensusbureau; https://www.instagram.com/uscensusbureau
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
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
BHeading Hierarchy13 headingsREVIEW
- H2 Quick Links
- H2 Slow Growth Impacts Nation’s Largest Counties Hardest
- H2 Slow Growth Impacts Nation’s Largest Counties Hardest
- H2 Need help with a survey?
- H2 Need data quickly?
- H2 Looking to Dive Deeper into Census Bureau Data?
- H2 Population Clock
- H2 U.S. Economic Indicators
- H2 Recent updates, news, events and more.
- H2 America Counts: Stories Behind The Numbers
- H2 Events
- H3 The Month Ahead
- H3 Tuesday — April 21, 2026
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
Source: WCAG 2.4.6 / Google Search Central
BForm Accessibility2 of 4 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #data-uscb-header-input | text | Search | aria-label |
| Enter your email address | aria-label | ||
| #RatingTool_textarea | textarea | (Tell us more.) | placeholder only |
| #RatingToolSubmit | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit" id="RatingToolSubmit">
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.
<textarea name="message" id="RatingTool_textarea">
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
B404 Error PageHTTP 404, custom pageREVIEW
BFavicon & Branding5 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 1 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 |
|---|---|---|---|---|---|
| h2 Quick Links | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Slow Growth Impacts … | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Slow Growth Impacts … | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Need help with a sur… | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Need data quickly? | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Looking to Dive Deep… | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Population Clock | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 U.S. Economic Indica… | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Recent updates, news… | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 America Counts: Stor… | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h2 Events | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| h3 The Month Ahead | 11.59:1 | 3.0:1 | #333333 | #F5F5F5 | Pass |
| h3 Tuesday — April 21… | 19.26:1 | 3.0:1 | #000000 | #F5F5F5 | Pass |
| title Census.gov | U.S. Ce… | 18.43:1 | 4.5:1 | #000000 | #F0F0F0 | Pass |
| div United States Census… | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| p An official website … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p Here’s how you kno… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Here’s how you kno… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| strong Official websites us… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| strong .gov | 2.44:1 | 3.0:1 | #000000 | #454D53 | 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 84/100 — 6 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.
Names and labels
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.embedcore > div#embedcore-e1b008a88e > div#censusgov-iframe-7AH98TH65P8G7GVTCT > iframe div.embedcore > div#embedcore-e1b008a88e > div#censusgov-iframe-7AH98TH65P8G7GVTCT > iframe |
div.embedcore > div#embedcore-b645a3e56a > div#censusgov-iframe-KIW4FNOYS2CTU89UYB > iframe div.embedcore > div#embedcore-b645a3e56a > div#censusgov-iframe-KIW4FNOYS2CTU89UYB > iframe |
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.
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 |
|---|
Data Profiles div#llList_800475114 > div.uscb-multi-col-list > span.uscb-link-list > li.uscb-multi-col-list-item |
America Counts div#llList_800475114 > div.uscb-multi-col-list > span.uscb-link-list > li.uscb-multi-col-list-item |
2026 Census Test div#llList_800475114 > div.uscb-multi-col-list > span.uscb-link-list > li.uscb-multi-col-list-item |
2030 Census div#llList_800475114 > div.uscb-multi-col-list > span.uscb-link-list > li.uscb-multi-col-list-item |
Verify a Survey div#llList_800475114 > div.uscb-multi-col-list > span.uscb-link-list > li.uscb-multi-col-list-item |
Annual Integrated Economic Survey (AIES) div#llList_800475114 > div.uscb-multi-col-list > span.uscb-link-list > li.uscb-multi-col-list-item |
2020 Census Results div#llList_800475114 > div.uscb-multi-col-list > span.uscb-link-list > li.uscb-multi-col-list-item |
Economic Indicator
Economic Indicator: Advance Monthly Sales for Retail and Fo… div.pagelist > div.listContent > div#data-calendarview-events-2044064413 > li.uscb-list-item |
Economic Indicator
Economic Indicator: Manufacturing and Trade: Inventories an… div.pagelist > div.listContent > div#data-calendarview-events-2044064413 > li.uscb-list-item |
Webinar
CSRM Seminar - Inference about a Binomial Proportion Under Privacy Pro… div.pagelist > div.listContent > div#data-calendarview-events-2044064413 > li.uscb-list-item |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Navigation
A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more about the `tabindex` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Skip Header div.universalheader > header#data-uscb-main-header > nav > a#uscb-nav-skip-header |
✕ nav > div#ratingtool > div#thumbs_div > div#CloseThumbs |
Thumbs Up Image div#thumbs_div > div.rate-WasThisPageHelpful_div > center > img#thumbsup |
Thumbs Down Image div#thumbs_div > div.rate-WasThisPageHelpful_div > center > img#thumbsdown |
These are opportunities to improve keyboard navigation in your application.
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 |
|---|
div.uscb-footer-main > div.uscb-footer-follow > div.uscb-footer-social-icon-links > a.uscb-share-icon div.uscb-footer-main > div.uscb-footer-follow > div.uscb-footer-social-icon-links > a.uscb-share-icon |
Information Quality div.uscb-footer-content > div.uscb-footer-content-top > div.uscb-footer-links > a.uscb-footer-link |
Data Protection and Privacy Policy div.uscb-footer-content > div.uscb-footer-content-top > div.uscb-footer-links > a.uscb-footer-link |
Accessibility div.uscb-footer-content > div.uscb-footer-content-top > div.uscb-footer-links > a.uscb-footer-link |
Inspector General div.uscb-footer-content > div.uscb-footer-content-top > div.uscb-footer-links > a.uscb-footer-link |
No FEAR Act div.uscb-footer-content > div.uscb-footer-content-top > div.uscb-footer-links > a.uscb-footer-link |
U.S. Department of Commerce div.uscb-footer-content > div.uscb-footer-content-top > div.uscb-footer-links > a.uscb-footer-link |
USA.gov div.uscb-footer-content > div.uscb-footer-content-top > div.uscb-footer-links > a.uscb-footer-link |
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.js html.js |
These items highlight common accessibility best practices.
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 |
|---|
Economic Indicator
Economic Indicator: Advance Monthly Sales for Retail and Fo… div.listContent > div#data-calendarview-events-2044064413 > li.uscb-list-item > a.uscb-layout-row |
Economic Indicator
Economic Indicator: Manufacturing and Trade: Inventories an… div.listContent > div#data-calendarview-events-2044064413 > li.uscb-list-item > a.uscb-layout-row |
Webinar
CSRM Seminar - Inference about a Binomial Proportion Under Privacy Pro… div.listContent > div#data-calendarview-events-2044064413 > li.uscb-list-item > a.uscb-layout-row |