Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DMobile Keyboard & AutofillAction2/2 eligible field(s) missing autocomplete or inputmodeFIX
F404 Error PageActionHTTP 202, bare pageFIX
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 Structure3 landmarksREVIEW
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
CForm AccessibilityAction5 of 5 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| fullname | text | (Your name*) | placeholder only |
| numberphone | text | (Phone number*) | placeholder only |
| (Business email*) | placeholder only | ||
| content | textarea | (Please mention your project details (such as: source & target languages, volume, delivery date, etc..)) | placeholder only |
| file | file | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="file" name="file">
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="fullname">; <input type="text" name="numberphone">; <input type="email" name="email">; <textarea name="content">
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
CLink & Button QualityAction4 issue(s) across 120 links and 12 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://gtelocalize.net/about-us/ | Who We Are | img no alt | Add alt attribute to the image |
| https://gtelocalize.net/technology/ | Technology & Tools | img no alt | Add alt attribute to the image |
| https://gtelocalize.net/our-clients-feed… | Clients & Feedbacks | img no alt | Add alt attribute to the image |
| https://gtelocalize.net/our-values/ | Our Values | img no alt | Add alt attribute to the image |
| https://gtelocalize.net/certifications/ | Certifications | img no alt | Add alt attribute to the image |
| https://gtelocalize.net/solution/machine… | Machine Translation | img no alt | Add alt attribute to the image |
| https://gtelocalize.net/solution/human-t… | Human Translation | img no alt | Add alt attribute to the image |
| https://gtelocalize.net/service/website-… | Website | generic text | Replace with descriptive text |
Before: Website Suggested: Website Translation Services | |||
| https://gtelocalize.net/case-study/exnes… | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/case-study/abbot… | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/case-study/kohle… | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/case-study/fusio… | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/case-study/axi/ | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/case-study/wesch… | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/case-study/viess… | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/case-study/unodc… | View more | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/locreset/ | Explore the LocReset series | new tab | Add '(opens in new tab)' to text |
| https://gtelocalize.net/privacy-policy/ | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://clickio.com/consent/?utm_source=… | Clickio | new tab | Add '(opens in new tab)' to text |
| https://clickio.com/consent/?utm_source=… | Clickio | new tab | Add '(opens in new tab)' to text |
| <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 |
Generic link text like 'click here' doesn't describe the destination.
https://gtelocalize.net/service/website-translation-services/ ("Website")
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.
https://gtelocalize.net/case-study/exness/; https://gtelocalize.net/case-study/abbott-singapore/; https://gtelocalize.net/case-study/kohle-capital-markets/; https://gtelocalize.net/case-study/fusion-markets/; https://gtelocalize.net/case-study/axi/; https://gtelocalize.net/case-study/weschool/; https://gtelocalize.net/case-study/viessmann/; https://gtelocalize.net/case-study/unodc/; https://gtelocalize.net/locreset/; https://gtelocalize.net/privacy-policy/ (+2 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.scroll-top (#1358 on page); button.cta-modal (#1360 on page); button.cl-consent-info__close (#1766 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
CTabindex Anti-PatternsAction0 positive, 7 -1-on-focusableREVIEW
CFavicon & BrandingAction3 icon(s) detectedREVIEW
BColor Contrast (Screenshot)20 text elements analyzed, 0 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 AI-powered translati… | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h2 Our Translation Solu… | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h2 Meet Some Of Our Cli… | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h2 Client Success Stori… | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h2 LocReset series | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h2 Why Choose Us? | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h2 Our Global Presence | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h2 Get a Free Quote | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Machine Translation | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Human Translation | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Exness | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Abbott Singapore | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Kohle Capital Market… | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Fusion Markets | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Axi | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 WeSchool | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Viessmann | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 UNODC | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 We care about your p… | 3.36:1 | 3.0:1 | #000000 | #656055 | Pass |
| h3 Manage options | 3.36:1 | 3.0:1 | #000000 | #656055 | 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.
A+Heading Hierarchy26 headingsPASS
- H1 AI-powered translation partner with human accountability
- H2 Our Translation Solutions
- H3 Machine Translation
- H3 Human Translation
- H2 Meet Some Of Our Clients
- H2 Client Success Stories
- H3 Exness
- H3 Abbott Singapore
- H3 Kohle Capital Markets
- H3 Fusion Markets
- H3 Axi
- H3 WeSchool
- H3 Viessmann
- H3 UNODC
- H2 LocReset series
- H3 LocReset 6: What Enterprise TMS Buyers Actually Want?
- H3 Episode 5: Localization 2029: A Look Back
- H3 Episode 4: The EU AI Act: Language AI Regulation and What It Means for Translation
- H3 Episode 3: Scaling from a Single Market to a Global Brand
- H3 Episode 2 – Inside the Mind of the Buyer
- H3 Episode 1 – From AI Hype to Outcomes
- H2 Why Choose Us?
- H2 Our Global Presence
- H2 Get a Free Quote
- H3 We care about your privacy
- H3 Manage options
A+Heading Text Quality1 heading-text-quality issue(s) detectedPASS
A+Alt Text QualityAll 105 images OKPASS
A+Form Input Types5 form control(s) checked, no type mismatchesPASS
A+Form Input Quality5 form control(s) checked, no input-semantic issuesPASS
A+Document LanguageLang attribute set to "en-US"PASS
A+Iframe AccessibilityAll 6 iframe(s) have descriptive titlesPASS
A+Tap Target AdequacyAll tap targets meet WCAG 2.5.5/2.5.8 sizingPASS
A+Mobile-Readable Font SizesAll 60 visible text node(s) render at >= 12 CSS pixelsPASS
A+PWA DepthNo PWA depth issues detectedPASS
A+Mobile UX Depth1 mobile-depth signal(s) detectedPASS
ALighthouse Accessibility AuditsScore 94/100 — 2 failing, 29 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.
ARIA
When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. Learn more about input field labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Exness
Service: Marketing, Website, App
Language: id, ja, ko, th, vi, ms, km,… div > div.lists-case-study > div.slick-list > div.slick-track |
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.
Names and labels
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.home > div#jo60jbp9p9eg1788972500296 > iframe#jkg85qps8c2c1788972500366 body.home > div#jo60jbp9p9eg1788972500296 > iframe#jkg85qps8c2c1788972500366 |
body.home > div#jo60jbp9p9eg1788972500296 > iframe#gu9rvlll2tj1788972500383 body.home > div#jo60jbp9p9eg1788972500296 > iframe#gu9rvlll2tj1788972500383 |
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.