Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction4 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
FHeading HierarchyAction16 headings, 3 skip(s)FIX
- H3 STAY UPDATED!
- H5 Click “SUBSCRIBE” to receive news and updates from Los Angeles County skipped
- H5 or “TEXT TO SUBSCRIBE” to receive news and updates via SMS
- H3 (empty)
- H3 STAY UPDATED!
- H5 Click “SUBSCRIBE” to receive news and updates from Los Angeles County skipped
- H5 or “TEXT TO SUBSCRIBE” to receive news and updates via SMS
- H5 (empty)
- H2 LA County Newsroom
- H2 Ready LA County
- H2 Guide to County Services: Downloadable guide to County services in English and Eight Other Languages
- H2 LA County Close-Up: Los Angeles County’s video news magazine
- H2 El Condado Contigo: News and consumer information for Spanish speaking viewers
- H2 Board of Supervisors
- H2 Services Locator
- H4 Category skipped
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
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
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
Empty headings appear in the document outline but provide no information.
Empty <hN> tags break the document outline — screen-reader users navigating by heading hit dead silence.
Source: WCAG 2.4.6
FForm AccessibilityAction10 of 11 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| select | select | Widget de idiomas del Traductor | aria-label |
| s | text | (Search for ...) | placeholder only |
| s | text | (Search for ...) | placeholder only |
| #near | text | (Enter Address, City or Zip Code) | placeholder only |
| input | submit | (none) | none |
| #find | select | (none) | none |
| #goog-gt-votingInputSrcLang | text | (none) | none |
| #goog-gt-votingInputTrgLang | text | (none) | none |
| #goog-gt-votingInputSrcText | text | (none) | none |
| #goog-gt-votingInputTrgText | text | (none) | none |
| #goog-gt-votingInputVote | text | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<select name="find" id="find">; <input type="submit">; <input type="text" name="sl" id="goog-gt-votingInputSrcLang">; <input type="text" name="tl" id="goog-gt-votingInputTrgLang">; <input type="text" name="query" id="goog-gt-votingInputSrcText">; <input type="text" name="gtrans" id="goog-gt-votingInputTrgText">; <input type="text" name="vote" id="goog-gt-votingInputVote">
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" name="near" id="near">; <input type="text" name="s">; <input type="text" name="s">
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
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
BLink & Button Quality1 issue(s) across 449 links and 5 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://twitter.com/CountyofLA/ | X | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/countyofla | new tab | Add '(opens in new tab)' to text | |
| https://www.instagram.com/countyofla/ | new tab | Add '(opens in new tab)' to text | |
| https://www.flickr.com/photos/160323049@… | Flickr | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/c/CountyofLosAng… | YouTube | new tab | Add '(opens in new tab)' to text |
| https://vimeo.com/lacountynewsroom | Vimeo | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/adopt-a-… | Adopt a Pet | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/if-you-l… | Lost & Found Info | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/spay-and… | Spay and Neuter | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/licensin… | Licensing | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/vaccinat… | Vaccinations | new tab | Add '(opens in new tab)' to text |
| https://coc.lacounty.gov/ | Sheriff Civilian Oversight Com… | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/epd/swims/ | Waste Management & Sanitation | new tab | Add '(opens in new tab)' to text |
| https://cleanpoweralliance.org/ | Clean Power Alliance | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/epd/hhw/Ewaste | Electronic Waste | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/epd/hhw/Hhw | Household Hazardous Waste | new tab | Add '(opens in new tab)' to text |
| https://file.lacounty.gov/SDSInter/lac/1… | Department Head Salaries | new tab | Add '(opens in new tab)' to text |
| https://file.lacounty.gov/SDSInter/lac/1… | Elected Officials Salaries | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections… | Register to Vote | new tab | Add '(opens in new tab)' to text |
| https://locator.lavote.gov/locations/vc?… | Find Your District | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections… | Become an Election Worker | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/vrstatus/ | Check Voter Registration Onlin… | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections… | Run for Public Office | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections | Voter Information | new tab | Add '(opens in new tab)' to text |
| https://apps.lavote.net/obfr/bfrmain.asp… | Filing a Fictitious Business N… | new tab | Add '(opens in new tab)' to text |
| https://ttc.lacounty.gov/business-licens… | Obtaining a Business License | new tab | Add '(opens in new tab)' to text |
| https://dcba.lacounty.gov/concierge/ | Small Business Concierge | new tab | Add '(opens in new tab)' to text |
| https://planning.lacounty.gov/land-use-z… | Zoning | new tab | Add '(opens in new tab)' to text |
| https://ceo.lacounty.gov/recovery/ | American Rescue Plan | new tab | Add '(opens in new tab)' to text |
| https://www.propertytax.lacounty.gov/ | Property Taxes | new tab | Add '(opens in new tab)' to text |
| https://www.vitalchek.com/v/vital-record… | Birth & Marriage Records | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/ldd/lddservices… | Permits & Inspections Portal | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/mywam/ | County Water Bill | new tab | Add '(opens in new tab)' to text |
| https://ehservices.publichealth.lacounty… | Public Health Inspections Fees… | new tab | Add '(opens in new tab)' to text |
| https://www.getcalfresh.org/ | CalFresh | new tab | Add '(opens in new tab)' to text |
| https://dpss.lacounty.gov/en/health.html | Health Care (Medi-Cal) | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/county-clerk/fic… | Fictitious Business Name | new tab | Add '(opens in new tab)' to text |
| https://cssd.lacounty.gov/open-a-case/ | Child Support | new tab | Add '(opens in new tab)' to text |
| https://ttc.lacounty.gov/ | Property Tax Bill | new tab | Add '(opens in new tab)' to text |
| https://pw.lacounty.gov/general/faq/inde… | Illegal Dumping | new tab | Add '(opens in new tab)' to text |
| https://recovery.lacounty.gov/ | LA County Recovers | new tab | Add '(opens in new tab)' to text |
| https://public.govdelivery.com/accounts/… | Sign Up for News | new tab | Add '(opens in new tab)' to text |
| https://lacounty.granicus.com/ViewPublis… | LA County Channel | new tab | Add '(opens in new tab)' to text |
| https://ceo.lacounty.gov/agendas | LA County Agendas | new tab | Add '(opens in new tab)' to text |
| https://facebook.com/countyofla | new tab | Add '(opens in new tab)' to text | |
| https://twitter.com/countyofla | new tab | Add '(opens in new tab)' to text | |
| https://instagram.com/countyofla | new tab | Add '(opens in new tab)' to text | |
| https://www.youtube.com/channel/UCutBHgg… | YouTube | new tab | Add '(opens in new tab)' to text |
| https://vimeo.com/lacountynewsroom | Vimeo | new tab | Add '(opens in new tab)' to text |
| https://ceo.lacounty.gov/budget | Learn More Here | new tab | Add '(opens in new tab)' to text |
| https://lacounty.gov/2026/04/01/april-20… | View More about Second Change … | new tab | Add '(opens in new tab)' to text |
| https://lacounty.gov/2026/04/01/sexual-a… | Learn More here about Sexual A… | new tab | Add '(opens in new tab)' to text |
| https://recovery.lacounty.gov/express-la… | View More about Express Lanes … | new tab | Add '(opens in new tab)' to text |
| https://lacounty.gov/2026/04/01/april-20… | View More about the 211 Child … | new tab | Add '(opens in new tab)' to text |
| https://iddweb.isd.lacounty.gov/AuditorO… | Learn More about Reporting Fra… | new tab | Add '(opens in new tab)' to text |
| https://recovery.lacounty.gov/ | Learn More about Resources | new tab | Add '(opens in new tab)' to text |
| https://recovery.lacounty.gov/ | SABER MÁS | new tab | Add '(opens in new tab)' to text |
| https://recovery.lacounty.gov/ | SABER MÁS | new tab | Add '(opens in new tab)' to text |
| https://lacounty.gov/2026/04/01/april-20… | View More about Second Change … | new tab | Add '(opens in new tab)' to text |
| https://public.govdelivery.com/accounts/… | SUBSCRIBE | new tab | Add '(opens in new tab)' to text |
| https://public.govdelivery.com/accounts/… | SUBSCRIBE | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/@CountyofLosAnge… | https://www.youtube.com/@Count… | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/@CountyofLosAnge… | WATCH THE LA COUNTY CHANNEL | new tab | Add '(opens in new tab)' to text |
| https://www.flickr.com/photos/160323049@… | https://www.flickr.com/photos/… | new tab | Add '(opens in new tab)' to text |
| https://www.flickr.com/photos/160323049@… | PHOTOGRAPHY | new tab | Add '(opens in new tab)' to text |
| https://ready.lacounty.gov | Ready LA County | new tab | Add '(opens in new tab)' to text |
| https://bos.lacounty.gov/ | LEARN MORE | generic text | Replace with descriptive text |
Before: LEARN MORE Suggested: Home page | |||
| https://www.211la.org | 211 LA County | new tab | Add '(opens in new tab)' to text |
| https://alert.lacounty.gov | Public Alerts | new tab | Add '(opens in new tab)' to text |
| https://bos.lacounty.gov/Board-Meeting/L… | Live Board Meetings | new tab | Add '(opens in new tab)' to text |
| https://bos.lacounty.gov/Board-Meeting/B… | LA County Board Agendas | new tab | Add '(opens in new tab)' to text |
| https://lacounty.gov/newsroom/public-inf… | Public Information Officers | new tab | Add '(opens in new tab)' to text |
| https://data.lacounty.gov | Open Data | new tab | Add '(opens in new tab)' to text |
| https://locator.lacounty.gov/ | Service Locator | new tab | Add '(opens in new tab)' to text |
| https://public.govdelivery.com/accounts/… | Sign up for News | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/adopt-a-… | Adopt a Pet | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/if-you-l… | Lost & Found Info | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/spay-and… | Spay and Neuter | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/licensin… | Licensing | new tab | Add '(opens in new tab)' to text |
| https://animalcare.lacounty.gov/vaccinat… | Vaccinations | new tab | Add '(opens in new tab)' to text |
| https://coc.lacounty.gov/ | Sheriff Civilian Oversight Com… | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/epd/swims/ | Waste Management & Sanitation | new tab | Add '(opens in new tab)' to text |
| https://cleanpoweralliance.org/ | Clean Power Alliance | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/epd/hhw/Ewaste | Electronic Waste | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/epd/hhw/Hhw | Household Hazardous Waste | new tab | Add '(opens in new tab)' to text |
| https://file.lacounty.gov/SDSInter/lac/1… | Department Head Salaries | new tab | Add '(opens in new tab)' to text |
| https://file.lacounty.gov/SDSInter/lac/1… | Elected Officials Salaries | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections… | Register to Vote | new tab | Add '(opens in new tab)' to text |
| https://locator.lavote.gov/locations/vc?… | Find Your District | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections… | Become an Election Worker | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/vrstatus/ | Check Voter Registration Onlin… | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections… | Run for Public Office | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/voting-elections | Voter Information | new tab | Add '(opens in new tab)' to text |
| https://apps.lavote.net/obfr/bfrmain.asp… | Filing a Fictitious Business N… | new tab | Add '(opens in new tab)' to text |
| https://ttc.lacounty.gov/business-licens… | Obtaining a Business License | new tab | Add '(opens in new tab)' to text |
| https://dcba.lacounty.gov/concierge/ | Small Business Concierge | new tab | Add '(opens in new tab)' to text |
| https://planning.lacounty.gov/land-use-z… | Zoning | new tab | Add '(opens in new tab)' to text |
| https://ceo.lacounty.gov/recovery/ | American Rescue Plan | new tab | Add '(opens in new tab)' to text |
| https://www.propertytax.lacounty.gov/ | Property Taxes | new tab | Add '(opens in new tab)' to text |
| https://www.vitalchek.com/v/vital-record… | Birth & Marriage Records | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/ldd/lddservices… | Permits & Inspections Portal | new tab | Add '(opens in new tab)' to text |
| https://dpw.lacounty.gov/mywam/ | County Water Bill | new tab | Add '(opens in new tab)' to text |
| https://ehservices.publichealth.lacounty… | Public Health Inspections Fees… | new tab | Add '(opens in new tab)' to text |
| https://www.getcalfresh.org/ | CalFresh | new tab | Add '(opens in new tab)' to text |
| https://dpss.lacounty.gov/en/health.html | Health Care (Medi-Cal) | new tab | Add '(opens in new tab)' to text |
| https://lavote.gov/home/county-clerk/fic… | Fictitious Business Name | new tab | Add '(opens in new tab)' to text |
| https://cssd.lacounty.gov/open-a-case/ | Child Support | new tab | Add '(opens in new tab)' to text |
| https://ttc.lacounty.gov/ | Property Tax Bill | new tab | Add '(opens in new tab)' to text |
| https://pw.lacounty.gov/general/faq/inde… | Illegal Dumping | new tab | Add '(opens in new tab)' to text |
| https://recovery.lacounty.gov/ | LA County Recovers | new tab | Add '(opens in new tab)' to text |
| https://public.govdelivery.com/accounts/… | Sign Up for News | new tab | Add '(opens in new tab)' to text |
| https://lacounty.granicus.com/ViewPublis… | LA County Channel | new tab | Add '(opens in new tab)' to text |
| https://ceo.lacounty.gov/agendas | LA County Agendas | new tab | Add '(opens in new tab)' to text |
| https://facebook.com/countyofla | new tab | Add '(opens in new tab)' to text | |
| https://twitter.com/countyofla | new tab | Add '(opens in new tab)' to text | |
| https://instagram.com/countyofla | new tab | Add '(opens in new tab)' to text | |
| https://www.youtube.com/channel/UCutBHgg… | YouTube | new tab | Add '(opens in new tab)' to text |
| https://vimeo.com/lacountynewsroom | Vimeo | new tab | Add '(opens in new tab)' to text |
| https://translate.google.com | Traductor de Google | new tab | Add '(opens in new tab)' to text |
Generic link text like 'click here' doesn't describe the destination.
https://bos.lacounty.gov/ ("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
Add '(opens in new tab)' to link text or aria-label.
https://twitter.com/CountyofLA/; https://www.facebook.com/countyofla; https://www.instagram.com/countyofla/; https://www.flickr.com/photos/160323049@N03/; https://www.youtube.com/c/CountyofLosAngelesNewsroom; https://vimeo.com/lacountynewsroom; https://animalcare.lacounty.gov/adopt-a-pet/; https://animalcare.lacounty.gov/if-you-lost-your-pet/; https://animalcare.lacounty.gov/spay-and-neuter/; https://animalcare.lacounty.gov/licensing/ (+108 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
C404 Error PageActionHTTP 404, custom pageREVIEW
BFavicon & Branding4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 8 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 Ready LA County | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Guide to County Serv… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 LA County Close-Up: … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 El Condado Contigo: … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title COUNTY OF LOS ANGELE… | 1.25:1 | 4.5:1 | #000000 | #001A4C | Fail |
| p (213) 974-1234 GENER… | 1.25:1 | 4.5:1 | #000000 | #001A4C | Fail |
| span Facebook | 1.12:1 | 4.5:1 | #000000 | #000F33 | Fail |
| span Instagram | 1.12:1 | 4.5:1 | #000000 | #000F33 | Fail |
| span Flickr | 1.12:1 | 4.5:1 | #000000 | #000F33 | Fail |
| span YouTube | 6.47:1 | 4.5:1 | #000000 | #A980B8 | Pass |
| span Vimeo | 6.47:1 | 4.5:1 | #000000 | #A980B8 | Pass |
| span Search | 6.47:1 | 4.5:1 | #000000 | #A980B8 | Pass |
| span Residents | 6.47:1 | 4.5:1 | #000000 | #A980B8 | Pass |
| span Animals & Pets | 6.47:1 | 4.5:1 | #000000 | #A980B8 | Pass |
| span Adopt a Pet | 6.47:1 | 4.5:1 | #000000 | #A980B8 | Pass |
| span Lost & Found Info | 3.01:1 | 4.5:1 | #000000 | #56586D | Fail |
| span Spay and Neuter | 2.11:1 | 4.5:1 | #000000 | #3F443D | Fail |
| span Licensing | 1.20:1 | 4.5:1 | #000000 | #171C04 | Fail |
| span Vaccinations | 9.38:1 | 4.5:1 | #000000 | #DA9EA0 | Pass |
| span View All | 7.05:1 | 4.5:1 | #000000 | #B38E76 | 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 83/100 — 5 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.
ARIA
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
$48.8 billion spending plan protects jobs and avoids broad cuts as County brace… sr7-module#SR7_4_1 > sr7-content > sr7-slide#SR7_4_1-241 > sr7-txt#SR7_4_1-241-3 |
These are opportunities to improve the usage of ARIA in your application which 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 |
|---|
Access County payment systems div.wpb_column > div.inel_iconbox > div.inel_iconbox_text > p |
Get information or apply online div.wpb_column > div.inel_iconbox > div.inel_iconbox_text > p |
Register for services div.wpb_column > div.inel_iconbox > div.inel_iconbox_text > p |
Report issues or complaints div.wpb_column > div.inel_iconbox > div.inel_iconbox_text > p |
Request important documents div.wpb_column > div.inel_iconbox > div.inel_iconbox_text > p |
Click “SUBSCRIBE” to receive news and updates from Los Angeles County div.wpb_column > div.grve-element > h5 > span |
or “TEXT TO SUBSCRIBE” to receive news and updates via SMS div.grve-row > div.wpb_column > div.grve-element > h5 |
SUBSCRIBE div.wpb_column > div.grve-element > a.grve-btn > span |
TEXT TO SUBSCRIBE div.wpb_column > div.grve-element > a.grve-btn > span |
LEARN MORE div.wpb_column > div.inel_button_container > a.inel_button > span.inel_button_text |
Find the LA County services and facilities that serve your area div.grve-row > div.wpb_column > div.grve-element > p |
div.wpb_raw_code > div.wpb_wrapper > form#mapGoSearch > input div.wpb_raw_code > div.wpb_wrapper > form#mapGoSearch > input |
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 |
|---|
Click “SUBSCRIBE” to receive news and updates from Los Angeles County div.grve-row > div.wpb_column > div.grve-element > h5 |
Category div.wpb_raw_code > div.wpb_wrapper > form#mapGoSearch > h4 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Form elements without effective labels can create frustrating experiences for screen reader users. Learn more about the `select` element.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
County Offices
Parks and Gardens
Libraries
Health Centers
Metro Stations
Sherif… div.wpb_raw_code > div.wpb_wrapper > form#mapGoSearch > select#find |
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
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.