Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FForm AccessibilityAction8 of 16 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #RecoverEmail | Email address | for/id | |
| #CustomerEmail | Email * | for/id | |
| #CustomerPassword | password | Password * | for/id |
| #RegisterForm-FirstName | text | First Name | for/id |
| #RegisterForm-LastName | text | Last Name | for/id |
| #RegisterForm-email | Email * | for/id | |
| #RegisterForm-password | password | Password * | for/id |
| shopsmart-phone | number | Phone number... | aria-label |
| contact[email] | (Your email address) | placeholder only | |
| q | text | (Search) | placeholder only |
| shopsmart-pin | text | (PIN) | placeholder only |
| shopsmart-submit | submit | (none) | none |
| select | select | (none) | none |
| shopsmart-submit | submit | (none) | none |
| shopsmart-redeemable-amt | number | (none) | none |
| shopsmart-submit | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<select>; <input type="submit" name="shopsmart-submit">; <input type="submit" name="shopsmart-submit">; <input type="number" name="shopsmart-redeemable-amt">; <input type="submit" name="shopsmart-submit">
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="email" name="contact[email]">; <input type="text" name="q">; <input type="text" name="shopsmart-pin">
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
FLink & Button QualityAction12 issue(s) across 144 links and 34 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.khasstores.com/policies/priv… | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| / | (empty) | empty | Add link text or aria-label |
| /search | (empty) | empty | Add link text or aria-label |
| https://khasstores.asaanretail.pk/order-… | Tracking | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/khasstores | Follow on Facebook | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/khasofficial | Follow on Twitter | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/khasstorespaki… | Follow on Instagram | new tab | Add '(opens in new tab)' to text |
| https://www.pinterest.com/khasstores/ | Follow on Pinterest | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UCE6Sr00… | Follow on YouTube | new tab | Add '(opens in new tab)' to text |
| http://tiktok.com/@khasstores | Follow on Tiktok | new tab | Add '(opens in new tab)' to text |
| / | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/khasstores | Follow on Facebook | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/khasofficial | Follow on Twitter | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/khasstorespaki… | Follow on Instagram | new tab | Add '(opens in new tab)' to text |
| https://www.pinterest.com/khasstores/ | Follow on Pinterest | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UCE6Sr00… | Follow on YouTube | 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 |
| <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 |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <input> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
/; /search; /
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
Add '(opens in new tab)' to link text or aria-label.
https://www.khasstores.com/policies/privacy-policy; https://khasstores.asaanretail.pk/order-tracking#/store/SHP_002; https://www.facebook.com/khasstores; https://twitter.com/khasofficial; https://www.instagram.com/khasstorespakistan/; https://www.pinterest.com/khasstores/; https://www.youtube.com/channel/UCE6Sr00KFGTqmfetyhsYunw; http://tiktok.com/@khasstores; https://www.facebook.com/khasstores; https://twitter.com/khasofficial (+3 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.t4s-modal-close (#760 on page); button.pswp__button (#772 on page); button.pswp__button (#773 on page); button.pswp__button (#774 on page); button.pswp__button (#775 on page); button.pswp__button (#782 on page); button.pswp__button (#783 on page); button.t4s-mini-search__submit (#1005 on page); input[type="submit"].button (#1289 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
DMobile Keyboard & AutofillAction6/7 eligible field(s) missing autocomplete or inputmodeFIX
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
BForm Input Quality2 input-semantic issue(s) across 16 form control(s)REVIEW
BMobile-Readable Font Sizes96% of visible text renders at >= 12 CSS px (2 below threshold)REVIEW
C404 Error PageActionHTTP 404, custom pageREVIEW
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 KHAS STORES | 3.88:1 | 3.0:1 | #000000 | #656A77 | Pass |
| h2 Cookie consent | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 PRE-WINTER'26 | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h2 Loyalty Points | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Get in touch | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Contact Us | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Customer Support | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Customer Support | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Customer Queries | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Customer Queries | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Quick Links | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Quick Links | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Sign up and save | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 Sign up and save | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| h3 KHAS for you!🛍️ | 6.99:1 | 3.0:1 | #000000 | #9693A2 | Pass |
| title Pakistani Dresses On… | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| p We and our partners,… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Privacy Policy | 2.44:1 | 4.5:1 | #000000 | #464C58 | Fail |
| span Manage preferences | 2.80:1 | 4.5:1 | #000000 | #4F5561 | Fail |
| button Accept | 3.13:1 | 4.5:1 | #000000 | #565C68 | Fail |
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.
BLighthouse Accessibility AuditsScore 83/100 — 4 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
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
Pre-Winter Collection '26 - LIVE NOW div.t4s-announcement-bar__wrap > div.flickityt4s-viewport > div.flickityt4s-slider > div#b_announcement_FEzeAq |
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 |
|---|
Powered by
TryVerse div.tv-modal > div.tv-footer > a.tv-powered |
Ok body.template-index > div.pop-model-wrapper-app > div.pop-model-btn-container > button#mt-pn-app-allow-button |
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.t4s-section-header__mid > div.t4s-row > div.t4s-col-md-4 > a.t4s-push-menu-btn div.t4s-section-header__mid > div.t4s-row > div.t4s-col-md-4 > a.t4s-push-menu-btn |
div.t4s-col-lg-3 > div.t4s-site-nav__icons > div.t4s-site-nav__icon > a.t4s-pr div.t4s-col-lg-3 > div.t4s-site-nav__icons > div.t4s-site-nav__icon > a.t4s-pr |
div.t4s-custom-col > div.t4s-col-inner > div.t4s-footer-content > a.t4s-d-block div.t4s-custom-col > div.t4s-col-inner > div.t4s-footer-content > a.t4s-d-block |
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 |
These items highlight common accessibility best practices.
A+Landmark Structure4 landmarksPASS
A+Heading Hierarchy15 headingsPASS
- H2 Cookie consent
- H1 KHAS STORES
- H2 PRE-WINTER'26
- H3 Get in touch
- H3 Contact Us
- H3 Customer Support
- H3 Customer Support
- H3 Customer Queries
- H3 Customer Queries
- H3 Quick Links
- H3 Quick Links
- H3 Sign up and save
- H3 Sign up and save
- H2 Loyalty Points
- H3 KHAS for you!🛍️