Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureActionNo landmarksFIX
No landmarks detected
Screen reader users have no way to navigate by region.
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
F404 Error PageActionHTTP 403, bare pageFIX
FFavicon & BrandingActionNo icons 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
DLighthouse Accessibility AuditsActionScore 67/100 — 5 failing, 11 passedFIX
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 |
|---|
div.one-sixth-first > div#forecast-lookup > form#getForecast > input#inputstring div.one-sixth-first > div#forecast-lookup > form#getForecast > input#inputstring |
These are opportunities to improve the legibility of your content.
Internationalization and localization
If a page doesn't specify a `lang` attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. Learn more about the `lang` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These are opportunities to improve the interpretation of your content by users in different locales.
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 |
|---|
div.div-full > div#wwamap > div.USMap > img#us div.div-full > div#wwamap > div.USMap > img#us |
div.div-full > div#wwamap > div.USMap > img#alaska div.div-full > div#wwamap > div.USMap > img#alaska |
div.div-full > div#wwamap > div.USMap > img#hawaii div.div-full > div#wwamap > div.USMap > img#hawaii |
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 |
|---|
Location Help div#forecast-lookup > form#getForecast > div#txtHelp > a |
div#myfcst > form#myfcst-form > div.myfcst-footer > input#myfcst-submit div#myfcst > form#myfcst-form > div.myfcst-footer > input#myfcst-submit |
Privacy Policy form#myfcst-form > div.myfcst-footer > p.myfcst-policy > a |
Flash Flood Warning div#wwaleft > ul > li > a |
Winter Storm Warning div#wwaleft > ul > li > a |
High Wind Warning div#wwaleft > ul > li > a |
Flood Warning div#wwaleft > ul > li > a |
Gale Warning div#wwaleft > ul > li > a |
Red Flag Warning div#wwaleft > ul > li > a |
Winter Weather Advisory div#wwacenter_l > ul > li > a |
Flood Advisory div#wwacenter_l > ul > li > a |
Coastal Flood Advisory div#wwacenter_l > ul > li > a |
High Surf Advisory div#wwacenter_l > ul > li > a |
Small Craft Advisory div#wwacenter_l > ul > li > a |
Brisk Wind Advisory div#wwacenter_l > ul > li > a |
Hazardous Seas Warning div#wwacenter_r > ul > li > a |
Lake Wind Advisory div#wwacenter_r > ul > li > a |
Wind Advisory div#wwacenter_r > ul > li > a |
Winter Storm Watch div#wwacenter_r > ul > li > a |
Rip Current Statement div#wwacenter_r > ul > li > a |
Flood Watch div#wwacenter_r > ul > li > a |
High Wind Watch div#wwaright > ul > li > a |
Freeze Watch div#wwaright > ul > li > a |
Fire Weather Watch div#wwaright > ul > li > a |
Special Weather Statement div#wwaright > ul > li > a |
Marine Weather Statement div#wwaright > ul > li > a |
Air Quality Alert div#wwaright > ul > li > a |
US Dept of Commerce div.footer-legal-content > div#footer_legal_info > p > a |
National Oceanic and Atmospheric Administration div.footer-legal-content > div#footer_legal_info > p > a |
National Weather Service div.footer-legal-content > div#footer_legal_info > p > a |
Disclaimer div.footer-legal-content > div#footer_required_links > div.div-half > a |
Information Quality div.footer-legal-content > div#footer_required_links > div.div-half > a |
Help div.footer-legal-content > div#footer_required_links > div.div-half > a |
Glossary div.footer-legal-content > div#footer_required_links > div.div-half > a |
Privacy Policy div.footer-legal-content > div#footer_required_links > div.div-half > a |
About Us div.footer-legal-content > div#footer_required_links > div.div-half > a |
Career Opportunities div.footer-legal-content > div#footer_required_links > div.div-half > a |
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 html |
These items highlight common accessibility best practices.
CAlt Text QualityAction4 of 14 images have issuesREVIEW
| 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
CForm AccessibilityAction4 of 10 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #query | text | Search For | for/id |
| #nws | radio | NWS | for/id |
| #noaa | radio | All NOAA | for/id |
| #inputstring | text | Local forecast by "City, St" or ZIP code | for/id |
| #myfcst-location-input | text | Enter Your City, ST or ZIP Code | for/id |
| #myfcst-remember | checkbox | Remember Me | for/id |
| #btnCloseError | button | (none) | none |
| input | submit | (none) | none |
| #btnSearch | submit | (none) | none |
| #myfcst-submit | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit">; <input type="submit" name="btnSearch" id="btnSearch">; <input type="button" id="btnCloseError">; <input type="submit" id="myfcst-submit">
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
BLink & Button Quality1 issue(s) across 114 links and 4 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| http://www.wpc.ncep.noaa.gov/discussions… | Read More > | new tab | Add '(opens in new tab)' to text |
| http://weather.gov/safety | Safety | new tab | Add '(opens in new tab)' to text |
| http://weather.gov/safety | Safety | new tab | Add '(opens in new tab)' to text |
| http://twitter.com/nws | Follow us on X | new tab | Add '(opens in new tab)' to text |
| http://www.facebook.com/nws | Follow us on Facebook | new tab | Add '(opens in new tab)' to text |
| http://www.youtube.com/usweathergov | Follow us on YouTube | new tab | Add '(opens in new tab)' to text |
| https://instagram.com/nws | Follow us on Instagram | new tab | Add '(opens in new tab)' to text |
| https://bsky.app/profile/nws.noaa.gov | Follow us on Bluesky | new tab | Add '(opens in new tab)' to text |
| /rss_page.php?site_name=nws | NWS RSS Feed | new tab | Add '(opens in new tab)' to text |
| # | Continue | generic text | Replace with descriptive text |
Before: Continue Suggested: # | |||
| # | New Window | new tab | Add '(opens in new tab)' to text |
Generic link text like 'click here' doesn't describe the destination.
# ("Continue")
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.
http://www.wpc.ncep.noaa.gov/discussions/hpcdiscussions.php?disc=pmdspd; http://weather.gov/safety; http://weather.gov/safety; http://twitter.com/nws; http://www.facebook.com/nws; http://www.youtube.com/usweathergov; https://instagram.com/nws; https://bsky.app/profile/nws.noaa.gov; /rss_page.php?site_name=nws; #
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
BColor Contrast (Screenshot)20 text elements analyzed, 0 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 Critical Fire Weathe… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title National Weather Ser… | 6.25:1 | 4.5:1 | #000000 | #8C8C8C | Pass |
| a HOME | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a FORECAST | 13.40:1 | 4.5:1 | #000000 | #C4D0DC | Pass |
| a Local | 16.71:1 | 4.5:1 | #000000 | #D4E8F9 | Pass |
| a Graphical | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Aviation | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Marine | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Rivers and Lakes | 15.13:1 | 4.5:1 | #000000 | #CCDDED | Pass |
| a Hurricanes | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Severe Weather | 13.08:1 | 4.5:1 | #000000 | #CCCCCC | Pass |
| a Fire Weather | 13.08:1 | 4.5:1 | #000000 | #CCCCCC | Pass |
| a Sunrise/Sunset | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Long Range Forecasts | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Climate Prediction | 17.78:1 | 4.5:1 | #000000 | #ECECEC | Pass |
| a Space Weather | 12.35:1 | 4.5:1 | #000000 | #D6C4AC | Pass |
| a PAST WEATHER | 11.10:1 | 4.5:1 | #000000 | #D1B998 | Pass |
| a Past Weather | 15.26:1 | 4.5:1 | #000000 | #E1DBD2 | Pass |
| a Astronomical Data | 11.38:1 | 4.5:1 | #000000 | #CFBCA3 | Pass |
| a Certified Weather Da… | 16.06:1 | 4.5:1 | #000000 | #E1E1E1 | 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.
A+Heading Hierarchy1 headingsPASS
- H1 Critical Fire Weather Conditions Continue; Pacific Storm to Bring Heavy Snow to the Sierra-Nevada