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
FAlt Text QualityAction67 of 95 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 14 image(s) |
| generic | 53 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
An image inside a link with no alt creates an empty link.
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
FLink & Button QualityAction5 issue(s) across 414 links and 3 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| # | More | generic text | Replace with descriptive text |
Before: More Suggested: # | |||
| https://www.flipkart.com/ | For You | img no alt | Add alt attribute to the image |
| /aw-base-new-inline-2025-at-store | Fashion | img no alt | Add alt attribute to the image |
| /mobile-phone-ab-at-store | Mobiles | img no alt | Add alt attribute to the image |
| /bpc-bau-new-inline-at-store | Beauty | img no alt | Add alt attribute to the image |
| /new-elec-clp-march-at-store | Electronics | img no alt | Add alt attribute to the image |
| /home-kitchen-25-at-store | Home | img no alt | Add alt attribute to the image |
| /tv-and-appliances-inline-ab-at-store | Appliances | img no alt | Add alt attribute to the image |
| /toys-baby-2025-new-at-store | Toys, baby.. | img no alt | Add alt attribute to the image |
| /fnhc-2025-new-at-store | Food & Health | img no alt | Add alt attribute to the image |
| /aa-2025-new-at-store | Auto Accessories | img no alt | Add alt attribute to the image |
| /twowheelers-at-store | 2 Wheelers | img no alt | Add alt attribute to the image |
| /sf-inline-2025-at-store | Sports & Fitness | img no alt | Add alt attribute to the image |
| /booksmedia-2025-at-store | Books & Media | img no alt | Add alt attribute to the image |
| /india-ka-furniture-studio-inlines-at-st… | Furniture | img no alt | Add alt attribute to the image |
| /offers-list/recommended-for-you?screen=… | (empty) | empty | Add link text or aria-label |
| /offers-list/recommended-for-you?screen=… | (empty) | empty | Add link text or aria-label |
| /offers-list/top-picks-of-the-sale?scree… | (empty) | empty | Add link text or aria-label |
| https://www.myntra.com/ | Myntra | new tab | Add '(opens in new tab)' to text |
| https://www.cleartrip.com/ | Cleartrip | new tab | Add '(opens in new tab)' to text |
| https://www.shopsy.in | Shopsy | new tab | Add '(opens in new tab)' to text |
| https://fssai.gov.in/cms/food-safety-con… | FSSAI Food Safety Connect App | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
/offers-list/recommended-for-you?screen=dynamic&pk=contentTags%3DGCD_THEME_1~marketplace%3DFLIPKART~widgetType%3DdealCardV3~contentType%3DpersonalisedRecommendation%2FC5&marketplace=FLIPKART; /offers-list/recommended-for-you?screen=dynamic&pk=contentTags%3DGCD_THEME_2~marketplace%3DFLIPKART~widgetType%3DdealCardV3~contentType%3DpersonalisedRecommendation%2FC5&marketplace=FLIPKART; /offers-list/top-picks-of-the-sale?screen=dynamic&pk=contentTags%3DGCD_THEME_4~marketplace%3DFLIPKART~widgetType%3DdealCardV3~contentType%3DpersonalisedRecommendation%2FC5&marketplace=FLIPKART
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.
# ("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.
https://www.myntra.com/; https://www.cleartrip.com/; https://www.shopsy.in; https://fssai.gov.in/cms/food-safety-connect.php
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
F404 Error PageActionHTTP 403, custom 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
BForm Accessibility2 of 2 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| q | text | (Search for Products, Brands and More) | placeholder only |
| q | text | (Search for Products, Brands and More) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="q">; <input type="text" name="q">
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
CFavicon & BrandingAction6 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 4 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 Flipkart: India's Ul… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 What Can You Buy fro… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Flipkart Loyalty and… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Payment and Affordab… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Flipkart Flights: Bo… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Flipkart Minutes: Gr… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Flipkart Reset and E… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Flipkart Kilos: Your… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Why Choose Flipkart?… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| h2 Get Exclusive Offers… | 3.66:1 | 3.0:1 | #000000 | #666666 | Pass |
| title Online Shopping Site… | 3.66:1 | 4.5:1 | #000000 | #666666 | Fail |
| div Location not set | 2.87:1 | 4.5:1 | #1F1F1F | #666666 | Fail |
| div Select delivery loca… | 1.06:1 | 4.5:1 | #1254E7 | #666666 | Fail |
| span Login | 3.66:1 | 4.5:1 | #000000 | #666666 | Fail |
| span New customer? | 8.33:1 | 4.5:1 | #000000 | #A3A3A3 | Pass |
| span Sign Up | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div My Profile | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Flipkart Plus Zone | 19.95:1 | 4.5:1 | #000000 | #F9F9F9 | Pass |
| div Orders | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Wishlist | 21.00:1 | 4.5: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.
CLighthouse Accessibility AuditsActionScore 77/100 — 4 failing, 13 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.
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 |
|---|
Hang on, loading content div.FWmYMm > div.css-g5y9jx > div.css-g5y9jx > div.css-146c3p1 |
These are opportunities to improve the legibility of your content.
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._3n8fna1co > div._3n8fna1co > div._3n8fna1co > a._3n8fna1co div._3n8fna1co > div._3n8fna1co > div._3n8fna1co > a._3n8fna1co |
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.useInterFont html.useInterFont |
These items highlight common accessibility best practices.
A+Heading Hierarchy10 headingsPASS
- H1 Flipkart: India's Ultimate One-Stop Online Shopping Destination
- H2 What Can You Buy from Flipkart?
- H2 Flipkart Loyalty and Rewards Program
- H2 Payment and Affordability: Shop Smart, Pay Smarter
- H2 Flipkart Flights: Book Your Next Getaway Effortlessly
- H2 Flipkart Minutes: Groceries and Gadgets in a Flash
- H2 Flipkart Reset and Exchange Program: Trade-in Your Old Device
- H2 Flipkart Kilos: Your Online Grocery Supermarket
- H2 Why Choose Flipkart? The Unbeatable Advantages
- H2 Get Exclusive Offers and Deals in Popular Sale Events