Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FAlt Text QualityAction6 of 106 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 2 image(s) |
| generic | 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 QualityAction10 issue(s) across 358 links and 10 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /eu-en/onboarding/?from=HP_UP | Open account Trading | new tab | Add '(opens in new tab)' to text |
| javascript:void(0); | Demo Open demo account | new tab | Add '(opens in new tab)' to text |
| javascript:void(0); | Language switcher popup | new tab | Add '(opens in new tab)' to text |
| /eu-en/platform | Trade online | new tab | Add '(opens in new tab)' to text |
| https://hub.oanda.com/eu-en | My account | new tab | Add '(opens in new tab)' to text |
| https://help.oanda.com/eu/en/home.htm | Help | new tab | Add '(opens in new tab)' to text |
| /eu-en/platform | Trade online | new tab | Add '(opens in new tab)' to text |
| https://hub.oanda.com/eu-en | My account | new tab | Add '(opens in new tab)' to text |
| https://help.oanda.com/eu/en/home.htm | Help | new tab | Add '(opens in new tab)' to text |
| /eu-en | (empty) | empty | Add link text or aria-label |
| /eu-en | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| https://www.oanda.com/eu-en/mobile-app | Find out more | new tab | Add '(opens in new tab)' to text |
| https://www.oanda.com/eu-en/invest/tradi… | Find out more | new tab | Add '(opens in new tab)' to text |
| https://www.oanda.com/eu-en/etf | Find out more | new tab | Add '(opens in new tab)' to text |
| https://www.oanda.com/eu-en/stocks | Find out more | new tab | Add '(opens in new tab)' to text |
| https://www.oanda.com/eu-en/tradingview | Find out more | new tab | Add '(opens in new tab)' to text |
| https://www.oanda.com/eu-en/interest-rat… | Find out more | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/OANDAGroup | (empty) | empty | Add link text or aria-label |
| https://www.youtube.com/@oandagroup/ | (empty) | empty | Add link text or aria-label |
| https://twitter.com/OANDAsupport | (empty) | empty | Add link text or aria-label |
| /eu-fr | Continue | generic text | Replace with descriptive text |
Before: Continue Suggested: Eu Fr | |||
| <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.
/eu-en; /eu-en; a#main-content-link; https://www.facebook.com/OANDAGroup; https://www.youtube.com/@oandagroup/; https://twitter.com/OANDAsupport
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.
/eu-fr ("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.
/eu-en/onboarding/?from=HP_UP; javascript:void(0);; javascript:void(0);; /eu-en/platform; https://hub.oanda.com/eu-en; https://help.oanda.com/eu/en/home.htm; /eu-en/platform; https://hub.oanda.com/eu-en; https://help.oanda.com/eu/en/home.htm; https://www.oanda.com/eu-en/mobile-app (+5 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.custom-btn--primary (#304 on page); button.custom-btn--primary (#707 on page); button.custom-btn--primary (#749 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
FFavicon & 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
BLandmark Structure9 landmarksREVIEW
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
B404 Error PageHTTP 404, custom pageREVIEW
AHeading Hierarchy48 headingsPASS
- H3 Select your language
- H1 (empty)
- H1 Trade in a different league duplicate H1
- H2 Trade in a different league
- H2 The smart choice for smart traders
- H3 Access 4000+ global instruments — all in one app
- H3 Trade CFDs easily
- H3 ETFs: 0 EUR commission on 10 trades per month
- H3 Trade global shares
- H3 Smarter trading with OANDA and TradingView
- H3 Earn interest
- H3 A broker you can trust
- H2 Trading resources
- H3 Daily market news
- H3 Investing reports and guides
- H3 Blog
- H2 4000+ financial instruments
- H2 Popular
- H2 Top movers
- H2 Forex
- H2 Indices CFDs
- H2 Shares
- H2 Shares
- H2 Shares
- H2 Shares
- H2 Shares
- H2 Shares
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 Shares CFDs
- H2 ETF CFDs
- H2 Commodities CFDs
- H2 Cryptocurrencies CFDs
- H2 ETFs
- H2 ETFs
- H2 ETFs
- H2 ETFs
- H2 ETFs
- H2 FAQ
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
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
AForm Accessibility1 of 9 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #edit-email--2 | for/id | ||
| #edit-phoneprefix--2 | text | phone_prefix | for/id |
| #edit-phone--2 | text | phone | for/id |
| #edit-password--2 | password | Password | for/id |
| #edit-check-all-agreements--2 | checkbox | none | |
| #edit-privacy-0--2 | checkbox | none | |
| #edit-email-agreement--2 | checkbox | none | |
| #edit-mobile-agreement--2 | checkbox | none | |
| input | search | (Search for instruments) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="search">
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
A+Color Contrast (Screenshot)20 text elements analyzed, 0 fail WCAG AAPASS
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 Trade in a different… | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Trading resources | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 4000+ financial inst… | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Popular | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Top movers | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Forex | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Indices CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | Pass |
| h2 Shares CFDs | 18.76:1 | 3.0:1 | #000000 | #F2F2F2 | 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.
ALighthouse Accessibility AuditsScore 94/100 — 3 failing, 33 passedPASS
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 |
|---|
Find out more div.paragraph > div > div.element-link > a.link |
Find out more div.paragraph > div > div.element-link > a.link |
Find out more div.paragraph > div > div.element-link > a.link |
Find out more div.paragraph > div > div.element-link > a.link |
Find out more div.paragraph > div > div.element-link > a.link |
Find out more div.paragraph > div > div.element-link > a.link |
1.174 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
1.175 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
1.351 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
1.351 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
-0.07 % tr.border-0 > td.change-column > a.fc-primary-1 > span.instrument-change |
159.274 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
-0.10 % tr.border-0 > td.change-column > a.fc-primary-1 > span.instrument-change |
0.780 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
0.781 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
0.716 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
0.716 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
0.591 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
0.591 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
-1.11 % tr.border-0 > td.change-column > a.fc-primary-1 > span.instrument-change |
4740.010 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
4740.740 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
77.390 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
77.454 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
-0.84 % tr.border-0 > td.change-column > a.fc-primary-1 > span.instrument-change |
76301.000 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
76363.000 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
2322.700 tr.border-0 > td.py-2 > a.fc-primary-1 > span.instrument-sell |
2328.050 tr.border-0 > td.p-2 > a.fc-primary-1 > span.instrument-buy |
-2.50 % tr.border-0 > td.change-column > a.fc-primary-1 > span.instrument-change |
-1.55 % tr.border-0 > td.change-column > a.fc-primary-1 > span.instrument-change |
These are opportunities to improve the legibility of your content.
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.node__content > div.paragraph > div.paragraph > a.d-block div.node__content > div.paragraph > div.paragraph > a.d-block |
div.node__content > div.paragraph > div.paragraph > a.d-block div.node__content > div.paragraph > div.paragraph > a.d-block |
div.node__content > div.paragraph > div.paragraph > a.d-block div.node__content > div.paragraph > div.paragraph > a.d-block |
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.
Screen readers have features to make navigating tables easier. Ensuring that `<td>` elements in a large table (3 or more cells in width and height) have an associated table header may improve the experience for screen reader users. Learn more about table headers.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Name of instrument Change (%) Sell Buy
US500
0.16 % 7137.300 7138.000
DE30
… div.row > div#myTabContent > div#popular-155401741 > table.quotes-table |