Skip to content
https://banktrack.org

Accessibility

· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.
SCORE
71
GRADE
C
FIX
9
REVIEW
4
PASS
11
INFO
0
Checks
24
11 PASS 4 REVIEW 9 FIX
D
Landmark Structure
Action
No landmarks
FIX
No landmarks
Critical::
No <main> landmark found
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Warning::
No <nav> landmark found
Info::
No banner (header) landmark
Info::
No contentinfo (footer) landmark
Warning::
Skip navigation link is missing (WCAG 2.4.1)
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.

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>.

Why this matters

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.

Why this matters

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

F
Alt Text Quality
Action
30 of 30 images have issues
FIX
30 of 30 images have issues
Critical::
30 image(s) missing alt attribute
Images without alt text are invisible to screen readers.
Critical::
25 image-in-link without alt text
An image inside a link with no alt creates an empty link.
30 images 30 missing
IssueCount
missing30 image(s)

Images without alt text are invisible to screen readers.

Why this matters

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.

Why this matters

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

D
Form Accessibility
Action
6 of 8 controls have issues
FIX
6 of 8 controls have issues
Critical::
2 control(s) without accessible label
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
Got: <input type="submit" name="subscribe" id="mc-embedded-subscribe">; <input type="submit" name="subscribe" id="mc-embedded-subscribe">
Warning::
4 control(s) rely on placeholder only
Placeholder text disappears on focus and is not a reliable label.
Got: <input type="text" name="srch-term" id="search-input-1">; <input type="text" name="srch-term" id="search-input-2">; <input type="email" name="EMAIL">; <input type="email" name="EMAIL">
Info::
2 control(s) properly labeled
8 controls
2 labeled
4 placeholder only
2 unlabeled
ControlTypeLabelMethod
#mce-MMERGE5-0radionone
#mce-MMERGE5-1radionone
#search-input-1text(Type to search...)placeholder only
#search-input-2text(SEARCH THE WEBSITE)placeholder only
EMAILemail(email address)placeholder only
EMAILemail(email address)placeholder only
#mc-embedded-subscribesubmit(none)none
#mc-embedded-subscribesubmit(none)none

Form controls need a <label>, aria-label, or aria-labelledby for screen readers.

<input type="submit" name="subscribe" id="mc-embedded-subscribe">; <input type="submit" name="subscribe" id="mc-embedded-subscribe">

Why this matters

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="srch-term" id="search-input-1">; <input type="text" name="srch-term" id="search-input-2">; <input type="email" name="EMAIL">; <input type="email" name="EMAIL">

Why this matters

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

D
Mobile Keyboard & Autofill
Action
4/4 eligible field(s) missing autocomplete or inputmode
FIX
4/4 eligible field(s) missing autocomplete or inputmode
Warning::
2 field(s) missing recommended autocomplete attribute
WCAG 1.3.5 (Level AA): inputs whose purpose maps to a Common Input Purpose value should declare it via `autocomplete=`. Required for password managers, browser autofill, and assistive tech that customizes inputs (e.g., simplified keyboards). Mobile autofill in particular cuts form-completion time by 30-50% when these are present. Affected purposes: email.
Got: <input type="email" name="EMAIL">, <input type="email" name="EMAIL">
Warning::
2 field(s) would benefit from inputmode attribute
Mobile browsers pick the on-screen keyboard layout from `inputmode=` when present (numeric pad, tel dialpad, email keyboard). Without it, users see the default text keyboard and must mode-switch -- 2-3 extra taps per phone-number or numeric-ID field. Type-based defaults exist (`type=tel` shows the tel keyboard on most browsers) but `inputmode` is the explicit, cross-browser way to control this. Affected types: email.
Got: <input type="email" name="EMAIL">, <input type="email" name="EMAIL">
D
Dark Mode Support
Action
Theme color only
FIX
Theme color only
Info::
Theme-color present but no dark variant
A theme-color is set but no dark-specific variant was found. The browser toolbar may not adapt for dark mode users.
Got: #ffffff
Info::
No dark mode signals detected
Consider adding CSS with @media (prefers-color-scheme: dark) and <meta name='color-scheme' content='light dark'>.
Info::
Detection limited to meta tags and inline styles
External CSS files may contain prefers-color-scheme rules not visible to this scan.
Dark ModePartial Dark Mode
color-scheme meta Not set Dark theme-color Not set CSS indicators Not detected

Detection limited to meta tags and inline styles.

D
Print Stylesheet
Action
No print styles
FIX
No print styles
Info::
No print-specific styles detected
When users print this page, they get the screen layout including navigation and non-essential elements. Add @media print rules to hide navigation and optimize layout for paper.
Print Stylesheet No Print Styles
Print stylesheet Not found Inline @media print Not detected
F
Navigation UX
Action
No navigation patterns
FIX
No navigation patterns
Info::
No breadcrumbs, search, or skip link detected
These navigation aids help users orient themselves and find content efficiently, especially on large sites.
Breadcrumbs
Search
Skip Link
Labeled Navigation
Back to Top
Hamburger Menu
Sticky Navigation Cannot reliably detect (CSS-based)
0 of 6 testable patterns navigation patterns detected. Limited navigation support. Consider adding breadcrumbs, search, and skip link.
F
Lighthouse Accessibility Audits
Action
Score 43/100 — 7 failing, 6 passed
FIX
43

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

When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div#header_container > div.container > div#logo-menu > button#mainmenutop_btn div#header_container > div.container > div#logo-menu > button#mainmenutop_btn

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div.container > div#logo-menu > a#logo > img div.container > div#logo-menu > a#logo > img
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
a > div.img-wr > div.line-image > img.border a > div.img-wr > div.line-image > img.border
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
a > div.img-wr > div.line-image > img.loaded a > div.img-wr > div.line-image > img.loaded
div.item_aspect > div.in > div.overlay3 > img div.item_aspect > div.in > div.overlay3 > img
div.items > a.item > div.line-image > img div.items > a.item > div.line-image > img
div.items > a.item > div.line-image > img div.items > a.item > div.line-image > img
div.items > a.item > div.line-image > img div.items > a.item > div.line-image > img
div.items > a.item > div.line-image > img div.items > a.item > div.line-image > img
div.cmp-cards-inner > a.cmp-card > div.line-image > img div.cmp-cards-inner > a.cmp-card > div.line-image > img
div.cmp-cards-inner > a.cmp-card > div.line-image > img div.cmp-cards-inner > a.cmp-card > div.line-image > img
div.cmp-cards-inner > a.cmp-card > div.line-image > img div.cmp-cards-inner > a.cmp-card > div.line-image > img
div.topdoc > a.hl > div.highlight > img div.topdoc > a.hl > div.highlight > img
div.topdoc > a.hl > div.highlight > img div.topdoc > a.hl > div.highlight > img
div.topdoc > a.hl > div.highlight > img div.topdoc > a.hl > div.highlight > img
div.topdoc > a.hl > div.highlight > img div.topdoc > a.hl > div.highlight > img

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div#header_container > div.container > div#logo-menu > a#logo div#header_container > div.container > div#logo-menu > a#logo

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.

Contrast

Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Aug 3 2026 a > div.info > div.meta > span.date
BankTrack, B4Ukraine a > div.info > div.meta > span.author
Jul 20 2026 a > div.info > div.meta > span.date
BankTrack, SteelWatch a > div.info > div.meta > span.author
Jul 16 2026 a > div.info > div.meta > span.date
Camila Cabanzo – BankTrack... a > div.info > div.meta > span.author
Jul 16 2026 a > div.info > div.meta > span.date
BankTrack, Worth Rises a > div.info > div.meta > span.author
Jul 14 2026 a > div.info > div.meta > span.date
Max Hammer – BankTrack a > div.info > div.meta > span.author
Partner news div.article > a > div.info > span.articlelable
Jul 14 2026 a > div.info > div.meta > span.date
Fair Finance Asia... a > div.info > div.meta > span.author
Partner news div.article > a > div.info > span.articlelable
Jul 7 2026 | Amsterdam | Dutch Fair Finance... div.article > a > div.info > div.meta
Jul 7 2026 a > div.info > div.meta > span.date
Amsterdam a > div.info > div.meta > span.location
Dutch Fair Finance... a > div.info > div.meta > span.author
Partner news div.article > a > div.info > span.articlelable
Jul 6 2026 a > div.info > div.meta > span.date
Reclaim Finance a > div.info > div.meta > span.author
Partner news div.article > a > div.info > span.articlelable
Jul 6 2026 | Paris, France | Reclaim Finance div.article > a > div.info > div.meta
Jul 6 2026 a > div.info > div.meta > span.date
Paris, France a > div.info > div.meta > span.location
Reclaim Finance a > div.info > div.meta > span.author
All news div#latest-news > div.news-wrapper > div.morebtn > a.item
12:00 AM (UTC) div.info > div.meta > span.pill > span.time
12:00 AM (UTC) div.info > div.meta > span.pill > span.time
12:00 AM (UTC) div.info > div.meta > span.pill > span.time
All events div.container > div.events > div.morebtn > a.item
Target Dodgy Deals div#content > div.container > div.target_deals > div.h-sec
India a.item > div.info > div.meta > span.location
project a.item > div.info > div.meta > span.type
Mexico a.item > div.info > div.meta > span.location
project a.item > div.info > div.meta > span.type
United States a.item > div.info > div.meta > span.location
company a.item > div.info > div.meta > span.type
Guinea a.item > div.info > div.meta > span.location
project a.item > div.info > div.meta > span.type
All Dodgy Deals div.container > div.target_deals > div.morebtn > a.item
Italy a > div.info > div.meta > span.location
urgent calls to leave div.item > div > p > a
substantially reducing its Russian presence div.item > div > p > a
Japan a > div.info > div.meta > span.location
more than 20% of shareholders voted against div.item > div > p > a
initiative div.item > div > p > a
United States a > div.info > div.meta > span.location
Banking on Climate Chaos 2026 report div.item > div > p > a
Switzerland a > div.info > div.meta > span.location
only partially met two out of its three recommendations div.item > div > p > a
All banks div.container > div.target_deals > div.morebtn > a.item
All campaigns and projects div.container > div#cmp-home > div.morebtn > a.item
Jun 9 2026 div.highlight > div.info > div.meta > span.date
BankTrack, Rainforest Action Network, urgewald, Reclaim Finance, CEED, Indigeno… div.highlight > div.info > div.meta > span.author
Apr 23 2026 div.highlight > div.info > div.meta > span.date
BankTrack div.highlight > div.info > div.meta > span.author
Apr 7 2026 div.highlight > div.info > div.meta > span.date
BankTrack, KSE Institute, B4Ukraine div.highlight > div.info > div.meta > span.author
Feb 11 2026 div.highlight > div.info > div.meta > span.date
BankTrack div.highlight > div.info > div.meta > span.author
All publications div.container > div.dochighlights > div.morebtn > a.item
Jun 8 2026 div.column > a > div.extnews > span.date
Novara Media div.column > a > div.extnews > span.author
Apr 29 2026 div.column > a > div.extnews > span.date
Valori div.column > a > div.extnews > span.author
Apr 28 2026 div.column > a > div.extnews > span.date
Reporte Indigo div.column > a > div.extnews > span.author
Apr 28 2026 div.column > a > div.extnews > span.date
Swiss info div.column > a > div.extnews > span.author
All BT in the media div#ext-wrap > div.column > div.morebtn > a.item
Aug 1 2026 div.column > a > div.extnews > span.date
The Guardian div.column > a > div.extnews > span.author
Jul 28 2026 div.column > a > div.extnews > span.date
The Bureau for Investigative Journalism div.column > a > div.extnews > span.author
Jul 27 2026 div.column > a > div.extnews > span.date
Human Rights Watch div.column > a > div.extnews > span.author
Jul 13 2026 div.column > a > div.extnews > span.date
SOMO div.column > a > div.extnews > span.author
All external news div#ext-wrap > div.column > div.morebtn > a.item
Ariana copper and zinc mine div#tw-ext-upd > div#upd > div.fpalert > a
East African Crude Oil Pipeline (EACOP) div#tw-ext-upd > div#upd > div.fpalert > a
Nordea div#tw-ext-upd > div#upd > div.fpalert > a
Banco do Nordeste div#tw-ext-upd > div#upd > div.fpalert > a
Bank of Ningbo div#tw-ext-upd > div#upd > div.fpalert > a
Donate now div#don-ml-notice > div#don > div.morebtn > a.item
Join our mailing list div.container > div#don-ml-notice > div#ml > h1
Get BankTrack updates delivered to your inbox div.container > div#don-ml-notice > div#ml > p
Accept all form#cookie_banner_b > div.cookie_banner_inner > div.btn_wr > button#accept_all

Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
here div#mn-btm-wrap > div#btm-cre > div.cre > a

These are opportunities to improve the legibility of your content.

Best practices

Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.

Why this matters

Informational: a Permissions-Policy directive showing feature -> allowed origins.

Source: MDN Permissions-Policy

Failing Elements
head > meta head > meta

One main landmark helps screen reader users navigate a web page. Learn more about landmarks.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
html html

These items highlight common accessibility best practices.

Interactive controls are keyboard focusable
Interactive elements indicate their purpose and state
The page has a logical tab order
Visual order on the page follows DOM order
User focus is not accidentally trapped in a region
The user's focus is directed to new content added to the page
HTML5 landmark elements are used to improve navigation
Offscreen content is hidden from assistive technology
Custom controls have associated labels
Custom controls have ARIA roles
`[aria-hidden="true"]` is not present on the document `<body>`
Document has a `<title>` element
`<html>` element has a `[lang]` attribute
`<html>` element has a valid value for its `[lang]` attribute
Touch targets have sufficient size and spacing.
Heading elements appear in a sequentially-descending order
`[accesskey]` values are unique
`[aria-*]` attributes match their roles
`button`, `link`, and `menuitem` elements have accessible names
ARIA attributes are used as specified for the element's role
Deprecated ARIA roles were not used
Elements with `role="dialog"` or `role="alertdialog"` have accessible names.
`[aria-hidden="true"]` elements do not contain focusable descendents
ARIA input fields have accessible names
ARIA `meter` elements have accessible names
ARIA `progressbar` elements have accessible names
Elements use only permitted ARIA attributes
`[role]`s have all required `[aria-*]` attributes
Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children.
`[role]`s are contained by their required parent element
`[role]` values are valid
Elements with the `role=text` attribute do not have focusable descendents.
ARIA toggle fields have accessible names
ARIA `tooltip` elements have accessible names
ARIA `treeitem` elements have accessible names
`[aria-*]` attributes have valid values
`[aria-*]` attributes are valid and not misspelled
The page contains a heading, skip link, or landmark region
`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements.
Definition list items are wrapped in `<dl>` elements
ARIA IDs are unique
No form fields have multiple labels
`<frame>` or `<iframe>` elements have a title
`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute.
Input buttons have discernible text.
`<input type="image">` elements have `[alt]` text
Form elements have associated labels
Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`).
List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements
The document does not use `<meta http-equiv="refresh">`
`<object>` elements have alternate text
Select elements have associated label elements.
Skip links are focusable.
No element has a `[tabindex]` value greater than 0
Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table.
`<th>` elements and elements with `[role="columnheader"/"rowheader"]` have data cells they describe.
`[lang]` attributes have a valid value
`<video>` elements contain a `<track>` element with `[kind="captions"]`
Tables have different content in the summary attribute and `<caption>`.
All heading elements contain content.
Uses ARIA roles only on compatible elements
Image elements do not have `[alt]` attributes that are redundant text.
Identical links have the same purpose.
Elements with visible text labels have matching accessible names.
Tables use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption.
`<td>` elements in a large `<table>` have one or more table headers.
B
Heading Hierarchy
29 headings, 1 skip(s)
REVIEW
29 headings, 1 skip(s)
Warning::
Multiple H1 headings (28 found)
A page should have only one H1. Multiple H1s dilute the document outline.
Warning::
Heading level skipped: H1 → H3 (missing H2)
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
  • H1 Don't let Raiffeisen use Austrian courts to bail out its Russia business
  • H1 Don't let Raiffeisen use Austrian courts to bail out its Russia business duplicate H1
  • H1 ArcelorMittal Quarterly Risk Briefing: July 2026 duplicate H1
  • H1 European banks won’t deliver a green steel transition alone duplicate H1
  • H1 Private Prisons complaint: Swiss watchdog finds two of three recommendations to UBS unaddressed duplicate H1
  • H1 UniCredit is (mostly) leaving Russia – but will it leave behind its contributions to Putin’s war economy? duplicate H1
  • H1 Phasing out coal, phasing in justice: Roadmap for financing responsible regional coal phase-out in Asia duplicate H1
  • H1 Research by the Dutch Fair Finance Guide: ING and Allianz are the largest financiers of liquefied natural gas from the US duplicate H1
  • H1 Nordea’s new policy stands apart from European banks support for LNG expansion duplicate H1
  • H1 French banks support EPH, contrary to their commitments duplicate H1
  • H1 Commonwealth Bank AGM 2026 duplicate H1
  • H1 National Australia Bank AGM 2026 duplicate H1
  • H1 Westpac AGM 2026 duplicate H1
  • H1 East African Crude Oil Pipeline (EACOP) duplicate H1
  • H1 Simandou Iron Ore Project duplicate H1
  • H1 JSW Utkal Steel plant and captive coal power station duplicate H1
  • H1 CoreCivic duplicate H1
  • H1 UniCredit duplicate H1
  • H1 Sumitomo Mitsui Financial Group duplicate H1
  • H1 JPMorgan Chase duplicate H1
  • H1 UBS duplicate H1
  • H1 Banks and Climate duplicate H1
  • H1 Banks and Human Rights duplicate H1
  • H1 Banks and Nature duplicate H1
  • H1 Support BankTrack duplicate H1
  • H1 Join our mailing list duplicate H1
  • H1 Stay up to date duplicate H1
  • H1 Make a comment duplicate H1
  • H3 Your comment will be reviewed, before being posted skipped

A page should have only one H1. Multiple H1s dilute the document outline.

Why this matters

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

Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.

Why this matters

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

C
404 Error Page
Action
HTTP 404, custom page
REVIEW
HTTP 404, custom page
Info::
Correct 404 status code returned
Got: HTTP 404
Info::
Custom styled 404 page
Info::
Navigation links present on 404 page
404 Page Quality Custom 404 Page
Status Code HTTP 404 Custom Styling Navigation Homepage Link Search Form
B
Favicon & Branding
5 icon(s) detected
REVIEW
5 icon(s) detected
Info::
favicon.ico present at site root
Info::
HTML icon links detected
Info::
Apple touch icon present
Info::
Multiple icon sizes detected
favicon.ico Present
PNG Icons Present
Apple Touch Present
SVG Favicon Missing
Manifest Icons Present
Multiple Sizes Present
C
Web Manifest
Action
Valid manifest
REVIEW
Valid manifest
Info::
Name present: Banktrack
Info::
192x192 icon present
Info::
Display mode: standalone
PWA Install Criteria Not Installable
Name Banktrack 192×192 icon 512×512 icon Start URL Display Mode standalone
Name Banktrack Display Mode standalone Theme Color #ffffff Icons 1 icon(s)
A
Heading Text Quality
1 heading-text-quality issue(s) detected
PASS
1 heading-text-quality issue(s) detected
Warning::
1 heading(s) are over 120 characters -- likely a misformatted paragraph
Headings beyond 120 characters are almost always full sentences or paragraphs that received heading semantics by mistake (e.g., a CMS editor selected the wrong block type, or a template wrapped a body paragraph in `<h2>`). Screen readers will announce these as "heading" and read the entire paragraph at heading prosody. Affected: - H1: 121 chars
Got: 1 >120-char heading(s)
A
Form Input Types
2 input(s) using type=text where a specific type would help
PASS
2 input(s) using type=text where a specific type would help
Info::
Input "srch-term" should use type="search" (currently type="text")
Field name "srch-term" suggests type="search". Wrong type loses mobile keyboard hints, browser autofill, and free format validation. Change to <input type="search">.
Info::
Input "srch-term" should use type="url" (currently type="text")
Field name "srch-term" suggests type="url". Wrong type loses mobile keyboard hints, browser autofill, and free format validation. Change to <input type="url">.
A+
Form Input Quality
8 form control(s) checked, no input-semantic issues
PASS
8 form control(s) checked, no input-semantic issues
Info::
All form input semantics look correct
A+
Document Language
Lang attribute set to "en"
PASS
Lang attribute set to "en"
Info::
<html lang="en"> is set and valid
Got: en
A+
Tabindex Anti-Patterns
2 explicit tabindex attribute(s) checked, no anti-patterns
PASS
2 explicit tabindex attribute(s) checked, no anti-patterns
Info::
No tabindex anti-patterns detected
A+
Iframe Accessibility
No iframes on this page
PASS
No iframes on this page
Info::
No iframes on this page
A+
Tap Target Adequacy
All tap targets meet WCAG 2.5.5/2.5.8 sizing
PASS
All tap targets meet WCAG 2.5.5/2.5.8 sizing
Info::
All tap targets meet WCAG 2.5.5 (44x44px) sizing
A+
Mobile-Readable Font Sizes
All 115 visible text node(s) render at >= 12 CSS pixels
PASS
All 115 visible text node(s) render at >= 12 CSS pixels
Info::
All text uses legible mobile font sizes (>= 12 CSS px)
A+
PWA Depth
1 PWA signal(s) surfaced
PASS
1 PWA signal(s) surfaced
Info::
Manifest has no maskable icon
Android 12+ Adaptive Icons crop non-maskable icons to a circle or squircle -- frequently hiding important parts of the logo. Add at least one icon entry with `"purpose": "maskable"` (or `"any maskable"`) and a maskable-aware design (16% safe-zone padding around the inner mark).
A+
Mobile UX Depth
1 mobile-depth signal(s) detected
PASS
1 mobile-depth signal(s) detected
Info::
Browser-chrome `theme-color` meta tag present
The page sets `<meta name="theme-color" content="...">`, which Android Chrome uses to tint the status bar and iOS Safari uses for the toolbar background. Brand polish that costs nothing and Just Works.
A+
Color Contrast (Screenshot)
20 text elements analyzed, 0 fail WCAG AA
PASS

Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.

20 pass
Show all checked elements (20)
ElementRatioRequiredFGBGResult
h1 Don't let Raiffeisen…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Don't let Raiffeisen…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 ArcelorMittal Quarte…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 European banks won…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Private Prisons comp…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 UniCredit is (mostly…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Phasing out coal, ph…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Research by the Dutc…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Nordea’s new polic…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 French banks support…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Commonwealth Bank AG…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 National Australia B…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Westpac AGM 20265.24:13.0:1
#000000
#7F7F7F
Pass
h1 East African Crude O…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Simandou Iron Ore Pr…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 JSW Utkal Steel plan…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 CoreCivic5.24:13.0:1
#000000
#7F7F7F
Pass
h1 UniCredit5.24:13.0:1
#000000
#7F7F7F
Pass
h1 Sumitomo Mitsui Fina…5.24:13.0:1
#000000
#7F7F7F
Pass
h1 JPMorgan Chase5.24:13.0:1
#000000
#7F7F7F
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.

All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback