Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction3 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
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
DLink & Button QualityAction15 issue(s) across 264 links and 10 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| ChatChat with crypto traders | new tab | Add '(opens in new tab)' to text | |
| /appdownload?bridge=1&ch=LjQwjoAm&af_sub… | More Download Options | new tab | Add '(opens in new tab)' to text |
| /reminder | More | generic text | Replace with descriptive text |
Before: More Suggested: Reminder | |||
| /price | More | generic text | Replace with descriptive text |
Before: More Suggested: Price | |||
| /price | More | generic text | Replace with descriptive text |
Before: More Suggested: Price | |||
| /brand-partnerships/gate-collaborates-wi… | (empty) | empty | Add link text or aria-label |
| /brand-partnerships/gate-collaborates-wi… | (empty) | empty | Add link text or aria-label |
| https://download.gateapp.org/desktop/rel… | Windows | new tab | Add '(opens in new tab)' to text |
| /developers | API | new tab | Add '(opens in new tab)' to text |
| /signup | Register Now | new tab | Add '(opens in new tab)' to text |
| /crypto/buy | Buy Crypto | new tab | Add '(opens in new tab)' to text |
| /trade/BTC_USDT | Trade Now | new tab | Add '(opens in new tab)' to text |
| https://beincrypto.com/gate-founder-cryp… | Gate Founder Dr. Han: Crypto W… | new tab | Add '(opens in new tab)' to text |
| https://u.today/press-releases/gate-laun… | Gate Launches WCTC S8 Global T… | new tab | Add '(opens in new tab)' to text |
| https://u.today/press-releases/an-open-l… | An Open Letter from Gate Found… | new tab | Add '(opens in new tab)' to text |
| https://www.panewslab.com/zh/articles/01… | Gate has launched a digital wa… | new tab | Add '(opens in new tab)' to text |
| https://x.com/Gate/status/20421667262894… | Gate Releases 13th Anniversary… | new tab | Add '(opens in new tab)' to text |
| https://u.today/gate-launches-first-trad… | Gate Launches First TradFi Cop… | new tab | Add '(opens in new tab)' to text |
| https://beincrypto.com/ondo-tokenized-st… | Institutions Can Now Access On… | new tab | Add '(opens in new tab)' to text |
| https://beincrypto.com/gate-polymarket-i… | Gate Integrates Polymarket: Ex… | new tab | Add '(opens in new tab)' to text |
| https://u.today/gate-reports-reserves-co… | Gate Reports Reserves Covering… | new tab | Add '(opens in new tab)' to text |
| (empty) | empty | Add link text or aria-label | |
| https://www.facebook.com/gatecomglobal | (empty) | empty | Add link text or aria-label |
| https://x.com/Gate | (empty) | empty | Add link text or aria-label |
| https://t.me/GateCom_EN | (empty) | empty | Add link text or aria-label |
| https://www.tiktok.com/@gate_com | (empty) | empty | Add link text or aria-label |
| https://www.instagram.com/gate.com_globa… | (empty) | empty | Add link text or aria-label |
| https://www.youtube.com/@GateExchange | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/gateio/ | (empty) | empty | Add link text or aria-label |
| https://www.tradingview.com/broker/Gate | (empty) | empty | Add link text or aria-label |
| /community | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
/brand-partnerships/gate-collaborates-with-oracle-red-bull-racing-in-f1; /brand-partnerships/gate-collaborates-with-inter; a#mantine-r9-target; https://www.facebook.com/gatecomglobal; https://x.com/Gate; https://t.me/GateCom_EN; https://www.tiktok.com/@gate_com; https://www.instagram.com/gate.com_global; https://www.youtube.com/@GateExchange; https://www.linkedin.com/company/gateio/ (+2 more)
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.
/reminder ("More"); /price ("More"); /price ("More")
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.
; /appdownload?bridge=1&ch=LjQwjoAm&af_sub1=secondscreenicon; https://download.gateapp.org/desktop/release/Gate-Setup-1.2.1.exe_20251030_20…; /developers; /signup; /crypto/buy; /trade/BTC_USDT; https://beincrypto.com/gate-founder-crypto-winter-structural-reshaping/; https://u.today/press-releases/gate-launches-wctc-s8-global-trading-challenge…; https://u.today/press-releases/an-open-letter-from-gate-founder-dr-han-on-13t… (+6 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
FFavicon & BrandingAction1 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
B404 Error PageHTTP 404, custom pageREVIEW
CLighthouse Accessibility AuditsActionScore 75/100 — 8 failing, 22 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.
ARIA
Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. Learn how to match ARIA attributes to their roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a#mantine-r18-target div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a#mantine-r18-target |
Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more about valid values for ARIA attributes.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Spot div > div.gui-font-face > div.gui_89d33d6d > button#tab-1 |
These are opportunities to improve the usage of ARIA in your application which 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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Download to Win 10,000+ USDT div.left-uVydGd > div.infoText-KjQWhu > div.subtitleContainer-lSGo5S > span.subtitle-IAjfLj |
Or Continue With div.unLoginGroupBox__FmhAA > div.muitiUnLoginBox___lhLX > div > div.muitiUnLoginLeftTitle__6anUO |
Gate Releases 13th Anniversary Brand Film, Building Platform Competitiveness Th… div.gui_596bc988 > div.gui_5967c3b9 > span > a |
Futures div.gui-font-face > div.gui_89d33d6d > button#tab-5 > span.gui_42bbd1ae |
New div.gui-font-face > div.gui_89d33d6d > button#tab-2 > span.gui_42bbd1ae |
TradFi div.gui-font-face > div.gui_89d33d6d > button#tab-6 > span.gui_42bbd1ae |
GateToken td.td__3fhz4 > div.cellWrapper__1uuSZ > div.titleColumn__aKBV5 > div.styledName__fhH_R |
+1.79% tr.css-40kf4u > td.td__3fhz4 > div.styledTextRight__RRfQX > div |
Bitcoin td.td__3fhz4 > div.cellWrapper__1uuSZ > div.titleColumn__aKBV5 > div.styledName__fhH_R |
+2.85% tr.css-40kf4u > td.td__3fhz4 > div.styledTextRight__RRfQX > div |
Ethereum td.td__3fhz4 > div.cellWrapper__1uuSZ > div.titleColumn__aKBV5 > div.styledName__fhH_R |
+2.32% tr.css-40kf4u > td.td__3fhz4 > div.styledTextRight__RRfQX > div |
Solana td.td__3fhz4 > div.cellWrapper__1uuSZ > div.titleColumn__aKBV5 > div.styledName__fhH_R |
+1.33% tr.css-40kf4u > td.td__3fhz4 > div.styledTextRight__RRfQX > div |
DogeCoin td.td__3fhz4 > div.cellWrapper__1uuSZ > div.titleColumn__aKBV5 > div.styledName__fhH_R |
+0.90% tr.css-40kf4u > td.td__3fhz4 > div.styledTextRight__RRfQX > div |
Hyperliquid td.td__3fhz4 > div.cellWrapper__1uuSZ > div.titleColumn__aKBV5 > div.styledName__fhH_R |
+3.46% tr.css-40kf4u > td.td__3fhz4 > div.styledTextRight__RRfQX > div |
More div.contentWrapper__l61RV > div.mainTableWrapper__ArIWK > a.market-down-more > div.moreDetail__YQ9Nw |
Permission audit and on-chain monitoring prevent contract vulnerabilities div.flex > a.flex-grow > div.flex-1 > p.text-[14px] |
Gate is the first mainstream platform committed to providing 100% reserves. div.flex > a.flex-grow > div.flex-1 > p.text-[14px] |
Strategy-based storage in cold wallets ensures asset safety div.flex > a.flex-grow > div.flex-1 > p.text-[14px] |
24h Volume div.flex > div.flex--grid--layout > div.flex > span.text-b8 |
Cryptocurrencies div.flex > div.flex--grid--layout > div.flex > span.text-b8 |
Simple Earn APR div.flex > div.flex--grid--layout > div.flex > span.text-b8 |
Total Reserve Ratio div.flex > div.flex--grid--layout > div.flex > span.text-b8 |
These are opportunities to improve the legibility of your content.
Tables and lists
When definition lists are not properly marked up, screen readers may produce confusing or inaccurate output. Learn how to structure definition lists correctly.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.footerBottomSection-z7WHkc > div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx div.footerBottomSection-z7WHkc > div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
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.rightInfoBox__Ik_FO > div.bg-bg-primary > div.flex > a div.rightInfoBox__Ik_FO > div.bg-bg-primary > div.flex > a |
div.rightInfoBox__Ik_FO > div.bg-bg-primary > div.flex > a div.rightInfoBox__Ik_FO > div.bg-bg-primary > div.flex > a |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 div.footerAction-VBFroD > div > dl.iconContainer-oFzwtx > a.iconItem-UyskV7 |
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
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.
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
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 |
|---|
GT
GateToken
$7.41
+1.79%
BTC
Bitcoin
$78,257.4
+2.85%
ETH
Et… div.tableWrapper__KVs6h > div.tableWrapper__xsNmX > div.table-container > table.table__nQkrh |
A+Heading Hierarchy38 headingsPASS
- H1 Gateway to Crypto
- H2 Trade Crypto Anywhere, Anytime
- H2 Trade Crypto Anywhere, Anytime
- H2 How to Get Started
- H3 Create an Account
- H3 Quick Buy
- H3 Start Trading
- H2 Safeguard Every Trade
- H3 Secure Smart Contracts
- H3 Reserve Audit Proof
- H3 Cold/Hot Wallet-Based Storage
- H2 $17.06B
- H2 4,600+
- H2 5.84%
- H2 122.64%
- H2 What the Press Says
- H3 Gate Founder Dr. Han: Crypto Winter Drives Structural Reshaping, Move Everything On-Chain Is the New Financial Paradigm
- H3 Gate Launches WCTC S8 Global Trading Challenge to Mark the 13th Anniversary with Upgrades to the Competition Ecosystem
- H3 An Open Letter from Gate Founder Dr. Han on 13th Anniversary: Releasing the Power of Transformation Through Cycles
- H3 Gate has launched a digital way to participate in Pre-IPOs, and the reservation portal is now open.
- H3 Gate Releases 13th Anniversary Brand Film, Building Platform Competitiveness Through Trust and Time
- H3 Gate Launches First TradFi Copy Trading Feature to Expand Multi-Asset Ecosystem
- H3 Institutions Can Now Access Ondo Tokenized Stocks via Gate through Talos
- H3 Gate Integrates Polymarket: Explore Global Hot Events and Market Trends for a Brand-New Prediction Market Experience
- H3 Gate Reports Reserves Covering Nearly 500 User Assets
- H2 FAQs
- H2 What is cryptocurrency exchange?
- H3 A cryptocurrency exchange is a platform that enables users to buy, sell, and trade cryptocurrencies. It supports a wide range of digital assets, including BTC, ETH, GT, and over 4,600 other digital as
- H2 What products does Gate offer?
- H3 As a global leader in cryptocurrency trading, Gate provides a wide range of products and services, including Spot, Futures, Launchpool, Simple Earn, Staking, Bots, Copy trading, and HODLer Airdrop, to
- H2 How can I buy Bitcoin and other cryptocurrencies on Gate?
- H3 Buying cryptocurrencies on Gate is simple. Just register an account, complete identity verification, deposit fiat currency or digital assets, and navigate to the trading page to place your order. Gate
- H2 How can I track cryptocurrency prices?
- H3 You can view real-time market data through the Gate website or mobile app. Additionally, you can set up price alerts, create a personalized watchlist, and use the market tools and data dashboards prov
- H2 How do I trade cryptocurrencies on Gate?
- H3 After logging into Gate account, users can access the trading and futures trading pages to buy or sell the cryptocurrencies of their choice. Alternatively, users can use the copy trading feature to au
- H2 Why choose Gate as your cryptocurrency exchange?
- H3 Founded in 2013, Gate is one of the world's earliest cryptocurrency exchanges. With over $10 billion in reserves and support for over 4,600 digital assets, Gate is a trusted platform for over 52M user
A+Alt Text QualityAll 107 images OKPASS
A+Form AccessibilityAll 15 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| input | radio | none | |
| input | radio | none | |
| input | radio | none | |
| input | radio | none | |
| input | radio | none | |
| signup | input | none | |
| #rd-0-0 | radio | About | for/id |
| #rd-1-0 | radio | Products | for/id |
| #rd2-1-0-0 | radio | Buy Crypto | for/id |
| #rd-2-0 | radio | Services | for/id |
| #rd-3-0 | radio | Learn | for/id |
| #rd2-3-0-8 | radio | Crypto Price | for/id |
| #rd2-3-0-9 | radio | How to Buy Crypto | for/id |
| #rd2-3-0-10 | radio | Crypto Price Prediction | for/id |
| #rd2-3-0-11 | radio | Crypto to Fiat | for/id |
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 |
|---|---|---|---|---|---|
| h1 Gateway to Crypto | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Trade Crypto Anywher… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Trade Crypto Anywher… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 How to Get Started | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Safeguard Every Trad… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 $17.06B | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 4,600+ | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 5.84% | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 122.64% | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 What the Press Says | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 FAQs | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 What is cryptocurren… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 What products does G… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 How can I buy Bitcoi… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 How can I track cryp… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 How do I trade crypt… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Why choose Gate as y… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Create an Account | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Quick Buy | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Start Trading | 21.00:1 | 3.0: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.