Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction23 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
FLink & Button QualityAction10 issue(s) across 118 links and 24 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /what-we-do/our-businesses#global-bankin… | Global Banking & MarketsFinanc… | img no alt | Add alt attribute to the image |
| /what-we-do/our-businesses#asset-wealth-… | Asset & Wealth ManagementAdvic… | img no alt | Add alt attribute to the image |
| /what-we-do/our-businesses#platform-solu… | Platform SolutionsInnovative a… | img no alt | Add alt attribute to the image |
| /what-we-do/research | Global Investment ResearchOrig… | img no alt | Add alt attribute to the image |
| /insights/the-markets/chase-or-fade-the-… | The MarketsChase or Fade the R… | img no alt | Add alt attribute to the image |
| /insights/goldman-sachs-exchanges/apollo… | ExchangesApollo's Jim Zelter o… | img no alt | Add alt attribute to the image |
| /insights/talks-at-gs/julie-kim | 30:30Talks at GSReimagining Bi… | img no alt | Add alt attribute to the image |
| /insights/talks-at-gs/sadiq-khan | 22:11Talks at GSSir Sadiq Khan… | img no alt | Add alt attribute to the image |
| https://higher.gs.com/ | Open Roles | new tab | Add '(opens in new tab)' to text |
| https://www.gsam.com/ | Asset Management | new tab | Add '(opens in new tab)' to text |
| https://pwm.gs.com/nam/en-us?gsid=10200&… | Private Wealth Management | new tab | Add '(opens in new tab)' to text |
| https://www.marcus.com/ | Marcus | new tab | Add '(opens in new tab)' to text |
| https://marquee.gs.com/ | Marquee | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/goldman… | link for linkedin share | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/goldmansachs | link for instagram share | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/GoldmanSach… | link for youtube share | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/goldmansachs | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/goldman… | link for linkedin share | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/goldmansachs | link for instagram share | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/GoldmanSach… | link for youtube share | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/goldmansachs | (empty) | empty | Add link 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 |
| <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.
https://twitter.com/goldmansachs; https://twitter.com/goldmansachs
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="/what-we-do/our-businesses#global-banking-markets"]; a[href="/what-we-do/our-businesses#asset-wealth-management"]; a[href="/what-we-do/our-businesses#platform-solutions"]; a[href="/what-we-do/research"]; a[href="/insights/the-markets/chase-or-fade-the-rally-bobby-molavi-on-the-equity-bounce"]; a[href="/insights/goldman-sachs-exchanges/apollos-jim-zelter-on-ai-disruption-and-the…"]; a[href="/insights/talks-at-gs/julie-kim"]; a[href="/insights/talks-at-gs/sadiq-khan"]
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://higher.gs.com/; https://www.gsam.com/; https://pwm.gs.com/nam/en-us?gsid=10200&chl=ref&plt=gs; https://www.marcus.com/; https://marquee.gs.com/; https://www.linkedin.com/company/goldman-sachs; https://www.instagram.com/goldmansachs; https://www.youtube.com/user/GoldmanSachs; https://www.linkedin.com/company/goldman-sachs; https://www.instagram.com/goldmansachs (+1 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
Icon-only buttons need an aria-label so screen readers can announce them.
button.gs-uitk-c-1xtraog--button-root (#179 on page); button.gs-uitk-c-1ojzahj--button-root (#185 on page); button.gs-uitk-c-1xtraog--button-root (#306 on page); button.gs-uitk-c-1ojzahj--button-root (#312 on page); button.gs-uitk-c-1xtraog--button-root (#433 on page); button.gs-uitk-c-1ojzahj--button-root (#439 on page); button.gs-uitk-c-1xtraog--button-root (#560 on page); button.gs-uitk-c-1ojzahj--button-root (#566 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 PageActionHTTP 403, bare pageFIX
DFavicon & BrandingAction2 icon(s) 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
CColor Contrast (Screenshot)Action20 text elements analyzed, 6 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 |
|---|---|---|---|---|---|
| h1 Navigating Energy Su… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 Navigating Energy Su… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 CAREERS | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 RESOURCES | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 OUR BUSINESSES | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 CONNECT | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Home | Goldman Sachs | 6.95:1 | 4.5:1 | #000000 | #7297C5 | Pass |
| span What We Do | 2.89:1 | 4.5:1 | #000000 | #3F5974 | Fail |
| span Insights | 1.76:1 | 4.5:1 | #000000 | #263947 | Fail |
| span Our Firm | 2.15:1 | 4.5:1 | #000000 | #344655 | Fail |
| span Careers | 2.59:1 | 4.5:1 | #000000 | #405260 | Fail |
| span Investor Relations | 3.29:1 | 4.5:1 | #000000 | #4E626C | Fail |
| span Investor Relations | 4.11:1 | 4.5:1 | #000000 | #637077 | Fail |
| span Pressroom | 5.10:1 | 4.5:1 | #000000 | #757F80 | Pass |
| span Pressroom | 5.98:1 | 4.5:1 | #000000 | #868A83 | Pass |
| span Worldwide | 6.95:1 | 4.5:1 | #000000 | #969587 | Pass |
| span Worldwide | 8.14:1 | 4.5:1 | #000000 | #ABA08C | Pass |
| span Alumni | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Alumni | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Client Login | 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.
BLighthouse Accessibility AuditsScore 89/100 — 5 failing, 24 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
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.gs-footer__social-row > ul.gs-uitk-c-gj0gbd--col-root > li > a.gs-link div.gs-footer__social-row > ul.gs-uitk-c-gj0gbd--col-root > li > a.gs-link |
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 have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
CAREERS div.gs-footer__column > nav.gs-uitk-c-19t1gcf--navigation-root > div.gs-uitk-c-yeppji--navigation-menu-list-root > ul.gs-uitk-c-1gl7rjn--navigation-menu-list-list |
RESOURCES div.gs-footer__column > nav.gs-uitk-c-19t1gcf--navigation-root > div.gs-uitk-c-yeppji--navigation-menu-list-root > ul.gs-uitk-c-1gl7rjn--navigation-menu-list-list |
OUR BUSINESSES div.gs-footer__column > nav.gs-uitk-c-19t1gcf--navigation-root > div.gs-uitk-c-yeppji--navigation-menu-list-root > ul.gs-uitk-c-1gl7rjn--navigation-menu-list-list |
Privacy and Cookies
Cookie Preferences
Terms & Conditions
Security & Fraud Awar… div.gs-uitk-c-esq4q6--footer-legal-links-root > nav.gs-uitk-c-19t1gcf--navigation-root > div.gs-uitk-c-yeppji--navigation-menu-list-root > ul.gs-uitk-c-1gl7rjn--navigation-menu-list-list |
These are opportunities to improve the experience of reading tabular or list data using 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 |
|---|
Discover Our Purpose and Values div.gs-card-content > div.gs-uitk-c-ba4ye1--card-footer-root > div.gs-uitk-c-1kna1v0--button-root > a.gs-link |
Why Invest in Goldman Sachs div.gs-card-content > div.gs-uitk-c-ba4ye1--card-footer-root > div.gs-uitk-c-1kna1v0--button-root > a.gs-link |
Review Our Initiatives div.gs-card-content > div.gs-uitk-c-ba4ye1--card-footer-root > div.gs-uitk-c-1kna1v0--button-root > a.gs-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 html |
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 |
|---|
CAREERS ul.gs-uitk-c-1gl7rjn--navigation-menu-list-list > div.gs-uitk-c-40hzrl--navigation-collapse-menu-root > nav.gs-footer__column-collapse-menu-heading > a.gs-navigation-menu-item__link |
RESOURCES ul.gs-uitk-c-1gl7rjn--navigation-menu-list-list > div.gs-uitk-c-40hzrl--navigation-collapse-menu-root > nav.gs-footer__column-collapse-menu-heading > a.gs-navigation-menu-item__link |
OUR BUSINESSES ul.gs-uitk-c-1gl7rjn--navigation-menu-list-list > div.gs-uitk-c-40hzrl--navigation-collapse-menu-root > nav.gs-footer__column-collapse-menu-heading > a.gs-navigation-menu-item__link |
AHeading Hierarchy6 headingsPASS
- H1 Navigating Energy Supply Disruptions and Global Market Responses
- H1 Navigating Energy Supply Disruptions and Global Market Responses duplicate H1
- H2 CAREERS
- H2 RESOURCES
- H2 OUR BUSINESSES
- H2 CONNECT
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