Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FForm AccessibilityAction5 of 5 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #gwFrom | text | (e.g. Bopal, Ahmedabad) | placeholder only |
| #gwTo | text | (e.g. SVPI Airport) | placeholder only |
| #gwDate | date | (none) | none |
| #gwTime | time | (none) | none |
| #gwPax | select | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="date" id="gwDate">; <input type="time" id="gwTime">; <select id="gwPax">
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" id="gwFrom">; <input type="text" id="gwTo">
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
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
BHeading Hierarchy42 headings, 2 skip(s)REVIEW
- H1 Taxi Service in Ahmedabad — Book Cab 24/7 From ₹11/KM
- H3 Get Your Fare in 30 Seconds skipped
- H2 Three Generations on Ahmedabad’s Roads
- H3 Everything on Paper
- H2 Your 5 AM Flight Is Our Responsibility
- H2 Reliable Taxi Service in Ahmedabad, Honest Fares
- H3 Always on Time
- H3 Fixed Pricing
- H3 Fully Legal & Insured
- H3 Every Kind of Car
- H3 A Human Answers
- H3 Truly Local
- H3 Comfort Included
- H3 Live GPS Tracking
- H2 Taxi Service in Ahmedabad for Every Kind of Ride
- H3 Airport Taxi: SVPI Pickup & Drop
- H3 Local Taxi & City Tours
- H3 Outstation Cabs From Ahmedabad
- H3 Corporate, Weddings & Groups
- H3 Full-Day & Hourly Rentals
- H3 One-Way Drops: Pay One Side Only
- H2 Pick the Car That Fits Your Trip
- H3 Compact Sedan
- H3 Premium Sedan
- H3 SUV
- H3 SUV
- H3 Premium SUV
- H3 Tempo Traveller (12/14 Seater)
- H3 Tempo Traveller (27 Seater)
- H3 Force Urbania
- H3 Transparent Fares: No Hidden Charges
- H2 Popular Taxi Routes From Ahmedabad
- H2 In This Trade, Operators Grow Together
- H2 From Call to Comfortable Ride
- H2 GoldenWay Taxi Office, Ahmedabad
- H2 Clear Terms, Told Upfront
- H2 Good to Know Before You Book
- H2 Ready When You Are
- H4 Quick Links skipped
- H4 Areas We Serve in Ahmedabad
- H4 Nearby Cities
- H4 Popular Trips from Ahmedabad
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
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
BMobile-Readable Font Sizes99% of visible text renders at >= 12 CSS px (2 below threshold)REVIEW
C404 Error PageActionCould not testREVIEW
404 page quality check not available.
CFavicon & BrandingAction3 icon(s) detectedREVIEW
BLighthouse Accessibility AuditsScore 80/100 — 5 failing, 19 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.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Get Your Fare in 30 Seconds div#top > section.hero > div#book > h3 |
QUICK LINKS footer.gw-footer > div.gw-f-top > div.gw-f-col > h4 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#book > div.two-col > div.field > input#gwDate div#book > div.two-col > div.field > input#gwDate |
div#book > div.two-col > div.field > input#gwTime div#book > div.two-col > div.field > input#gwTime |
Form elements without effective labels can create frustrating experiences for screen reader users. Learn more about the `select` element.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1
2
3
4
5
6
7+ section.hero > div#book > div.field > select#gwPax |
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.gwx > div.gw-topbar > div.gw-tb-right > a.gw-tb-phone div.gwx > div.gw-topbar > div.gw-tb-right > a.gw-tb-phone |
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. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Privacy Policy footer.gw-footer > div.gw-f-bottom > span > a |
Terms & Conditions footer.gw-footer > div.gw-f-bottom > span > a |
These are opportunities to improve the legibility of your content.
A+Heading Text QualityAll 42 heading(s) have substantive, well-formed textPASS
A+Alt Text QualityAll 11 images OKPASS
ALink & Button Quality60 links, 8 buttons — all OKPASS
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://wa.me/919601094774 | new tab | Add '(opens in new tab)' to text | |
| https://wa.me/919601094774 | Get a quote | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Get one-way fare | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Mount Abu | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Udaipur | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Statue of Unity | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Dwarka | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Somnath | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Vadodara | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Mumbai | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Rajkot | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Surat | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Bhuj | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Ambaji | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Shankheshwar | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Palitana | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Dakor | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Nathdwara | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Jaipur | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Sarangpur | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Surendranagar | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Silvassa | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=One-way%… | Ahmedabad to Saputara | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=Vendor%2… | Vendor WhatsApp | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774 | WhatsApp us | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774 | WhatsApp us | new tab | Add '(opens in new tab)' to text |
| https://wa.me/919601094774?text=Vendor%2… | Vendor Collaboration | new tab | Add '(opens in new tab)' to text |
Add '(opens in new tab)' to link text or aria-label.
https://wa.me/919601094774; https://wa.me/919601094774; https://wa.me/919601094774?text=One-way%20taxi%20fare%20please; https://wa.me/919601094774?text=One-way%20fare%20for%20Ahmedabad%20to%20Mount…; https://wa.me/919601094774?text=One-way%20fare%20for%20Ahmedabad%20to%20Udaip…; https://wa.me/919601094774?text=One-way%20fare%20for%20Ahmedabad%20to%20Statu…; https://wa.me/919601094774?text=One-way%20fare%20for%20Ahmedabad%20to%20Dwark…; https://wa.me/919601094774?text=One-way%20fare%20for%20Ahmedabad%20to%20Somna…; https://wa.me/919601094774?text=One-way%20fare%20for%20Ahmedabad%20to%20Vadod…; https://wa.me/919601094774?text=One-way%20fare%20for%20Ahmedabad%20to%20Mumba… (+17 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
A+Form Input Types5 form control(s) checked, no type mismatchesPASS
A+Form Input Quality5 form control(s) checked, no input-semantic issuesPASS
A+Mobile Keyboard & AutofillNo autofill-eligible form controlsPASS
A+Document LanguageLang attribute set to "en-US"PASS
A+Tabindex Anti-PatternsNo explicit tabindex attributes foundPASS
A+Iframe AccessibilityAll 1 iframe(s) have descriptive titlesPASS
A+Tap Target AdequacyAll tap targets meet WCAG 2.5.5/2.5.8 sizingPASS
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 |
|---|---|---|---|---|---|
| h1 Taxi Service in Ahme… | 14.15:1 | 3.0:1 | #000000 | #D7D4C9 | Pass |
| h1 From ₹11/KM | 14.15:1 | 3.0:1 | #000000 | #D7D4C9 | Pass |
| h2 Three Generations on… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Your 5 AM Flight Is … | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Reliable Taxi Servic… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Taxi Service in Ahme… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Pick the Car That Fi… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Popular Taxi Routes … | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 In This Trade, Opera… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 From Call to Comfort… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 GoldenWay Taxi Offic… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Clear Terms, Told Up… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Good to Know Before … | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h2 Ready When You Are | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h3 Get Your Fare in 30 … | 14.15:1 | 3.0:1 | #000000 | #D7D4C9 | Pass |
| h3 Everything on Paper | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h3 Always on Time | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h3 Fixed Pricing | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h3 Fully Legal & Insure… | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | Pass |
| h3 Every Kind of Car | 14.01:1 | 3.0:1 | #000000 | #D6D3C8 | 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.