Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction5 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
F404 Error PageActionSoft 404 detectedFIX
The server returned HTTP 200 for a non-existent path. Search engines will index this page as real content. Configure your server to return HTTP 404 for missing pages.
FFavicon & BrandingAction2 icon(s) detectedFIX
FWeb ManifestActionInvalid JSONFIX
Manifest contains invalid JSON.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CHeading HierarchyAction19 headings, 1 skip(s)REVIEW
- H2 Innovative Strategies
- H2 Mission
- H2 Vision
- H2 Digital Reality
- H2 Innovative Strategies
- H2 Industries We Serve
- H2 Innovative Strategies
- H2 Join Our Team
- H3 Chummar Paul
- H3 Joby George
- H3 Sosamma Kuriakose
- H4 Trailzyz Private Limited
- H4 Trailzyz Technologies LLC
- H2 Get In Touch With Us
- H3 Where technology foster
- H5 Partnership With skipped
- H4 SERVICES
- H4 QUICK LINK
- H4 Contact US
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
Source: WCAG 2.4.6 / Google Search Central
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
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
BAlt Text Quality2 of 50 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 2 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
BForm Accessibility4 of 5 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #iti-0__search-input | search | Search | aria-label |
| (Your Email) | placeholder only | ||
| name | text | (Your Name) | placeholder only |
| input | tel | (Phone Number) | placeholder only |
| subject | text | (Subject) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="name">; <input type="email" name="email">; <input type="tel">; <input type="text" name="subject">
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 QualityAction2 issue(s) across 37 links and 6 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://wa.me/919946999112?text=Hi%20Tra… | new tab | Add '(opens in new tab)' to text | |
| https://wa.me/919946999112?text=Hi%20Tra… | new tab | Add '(opens in new tab)' to text | |
| https://www.instagram.com/trailzyz?igsh=… | new tab | Add '(opens in new tab)' to text | |
| https://www.linkedin.com/company/trialzy… | 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 |
Add '(opens in new tab)' to link text or aria-label.
https://wa.me/919946999112?text=Hi%20Trailzyz%2C%20I%20have%20a%20question%20…; https://wa.me/919946999112?text=Hi%20Trailzyz%2C%20I%20have%20a%20question%20…; https://www.instagram.com/trailzyz?igsh=NXc3OWloZGhkYXlk; https://www.linkedin.com/company/trialzyztech/
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.close-drawer-btn (#44 on page); button.menu-btn (#61 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
CMobile Keyboard & AutofillAction4/6 eligible field(s) missing autocomplete or inputmodeREVIEW
BLighthouse Accessibility AuditsScore 88/100 — 2 failing, 17 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
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#root > div#mobile-menu-drawer > div.drawer-header > button.close-drawer-btn div#root > div#mobile-menu-drawer > div.drawer-header > button.close-drawer-btn |
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
LET'S TALK div#root > div#mobile-menu-drawer > nav.drawer-nav > a.drawer-cta-btn |
These are opportunities to improve the legibility of your content.
A+Heading Text Quality1 heading-text-quality issue(s) detectedPASS
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"PASS
A+Tabindex Anti-Patterns0 positive, 1 -1-on-focusablePASS
A+Iframe AccessibilityNo iframes on this pagePASS
A+Tap Target AdequacyAll tap targets meet WCAG 2.5.5/2.5.8 sizingPASS
A+Mobile-Readable Font SizesAll 5 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
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 Innovative Strategie… | 17.94:1 | 3.0:1 | #000000 | #EDEDED | Pass |
| h2 Mission | 17.78:1 | 3.0:1 | #000000 | #ECECEC | Pass |
| h2 Vision | 16.98:1 | 3.0:1 | #000000 | #E7E7E7 | Pass |
| h2 Digital Reality | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h2 Innovative Strategie… | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h2 Industries We Serve | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h2 Innovative | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h2 Strategies | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h2 Join Our Team | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h2 Get In Touch With Us | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h3 Chummar Paul | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h3 Joby George | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h3 Sosamma Kuriakose | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| h3 Where technology fos… | 16.83:1 | 3.0:1 | #000000 | #E6E6E6 | Pass |
| title Trailzyz Private Lim… | 17.14:1 | 4.5:1 | #000000 | #E8E8E8 | Pass |
| a Home | 17.62:1 | 4.5:1 | #000000 | #EBEBEB | Pass |
| a About | 18.10:1 | 4.5:1 | #000000 | #EEEEEE | Pass |
| a Services | 18.43:1 | 4.5:1 | #000000 | #F0F0F0 | Pass |
| a Portfolio | 18.76:1 | 4.5:1 | #000000 | #F2F2F2 | Pass |
| a Let's Talk | 19.09:1 | 4.5:1 | #000000 | #F4F4F4 | 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.