Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FAlt Text QualityAction5 of 23 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 5 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 QualityAction12 issue(s) across 178 links and 18 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.acs.org/privacy.html | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://www.acs.org/privacy.html#cookies | Cookie Policy | new tab | Add '(opens in new tab)' to text |
| /events/fall.html | (empty) | empty | Add link text or aria-label |
| /careers.html | (empty) | empty | Add link text or aria-label |
| /education/educators/acs-hach-programs.h… | (empty) | empty | Add link text or aria-label |
| /technical-divisions.html | (empty) | empty | Add link text or aria-label |
| /pressroom/reactions.html | (empty) | empty | Add link text or aria-label |
| /funding/awards/chemluminary.html | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| /events/fall.html | Fall 2026 … | img no alt | Add alt attribute to the image |
| /events/spring.html | Thank you for an incredible AC… | img no alt | Add alt attribute to the image |
| /careers.html | Advance your Career in the Glo… | img no alt | Add alt attribute to the image |
| /policy/support-science.html | Support Science … | img no alt | Add alt attribute to the image |
| https://pubs.acs.org/ | Discover more with ACS scienti… | img no alt | Add alt attribute to the image |
| /membership/proactive-membership-assista… | Proactive Membership Assistanc… | img no alt | Add alt attribute to the image |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
/events/fall.html; /careers.html; /education/educators/acs-hach-programs.html; /technical-divisions.html; /pressroom/reactions.html; /funding/awards/chemluminary.html; a#maincontent
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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="/events/fall.html"]; a[href="/events/spring.html"]; a[href="/careers.html"]; a[href="/policy/support-science.html"]; a[href="https://pubs.acs.org/"]; a[href="/membership/proactive-membership-assistance-program.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.acs.org/privacy.html; https://www.acs.org/privacy.html#cookies
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.owl-dot (#579 on page); button.owl-dot (#581 on page); button.owl-dot (#583 on page); button.owl-dot (#585 on page); button.owl-dot (#587 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
F404 Error PageActionSoft 404 detectedFIX
The server returned HTTP 200 for a non-existent path. Search engines will index this page as real content. Configure your server to return HTTP 404 for missing pages.
FFavicon & BrandingAction2 icon(s) detectedFIX
FWeb ManifestActionInvalid JSONFIX
Manifest contains invalid JSON.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
FLighthouse Accessibility AuditsActionScore 45/100 — 4 failing, 2 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.
Names and labels
The title gives screen reader users an overview of the page, and search engine users rely on it heavily to determine if a page is relevant to their search. Learn more about document titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
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 |
|---|
body > iframe#main-iframe body > iframe#main-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.
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.
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 html |
These items highlight common accessibility best practices.
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.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 Welcome to American … | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Fall 2026 | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Thank you for an inc… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Advance your Career … | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Support Science | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Discover more with A… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 EXPLORE | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 CREATE | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 GREAT CHEMISTRY | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 This content is avai… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 MOLECULE | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Your Success is Our … | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| title American Chemical So… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Opens in a new windo… | 10.10:1 | 4.5:1 | #000000 | #B3AAFE | Pass |
| span Opens an external we… | 2.99:1 | 4.5:1 | #000000 | #412BFD | Fail |
| span Opens an external we… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span This website utilize… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span You may change your … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span You may close this b… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Privacy Policy | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | 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.
ALandmark Structure6 landmarksPASS
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
A+Heading Hierarchy19 headingsPASS
- H4 Your ACS Account
- H4 Quick Access
- H4 Meetings & Events
- H4 Careers
- H4 Students & Educators
- H4 Communities
- H4 Discover Chemistry
- H4 Funding & Awards
- H2 Fall 2026
- H2 Thank you for an incredible ACS Spring 2026!
- H2 Advance your Career in the Global Economy
- H2 Support Science
- H2 Discover more with ACS scientific resources
- H2 EXPLORE ACS
- H2 BECAUSE PEOPLE LIKE YOU CREATE GREAT CHEMISTRY
- H2 This content is available to ACS Members only
- H2 MOLECULE OF THE WEEK
- H2 Your Success is Our Success
- H1 Welcome to American Chemical Society
A+Form AccessibilityAll 5 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #osano-cm-dialog-toggle--category_MARKETING | checkbox | none | |
| #osano-cm-dialog-toggle--category_PERSONALIZATION | checkbox | none | |
| #osano-cm-dialog-toggle--category_ANALYTICS | checkbox | none | |
| #searchsite | text | Enter keywords to search | aria-label |
| #explore-dd | select | I want to explore | aria-label |