Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.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 & BrandingAction1 icon(s) detectedFIX
FWeb ManifestActionInvalid JSONFIX
Manifest contains invalid JSON.
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CMobile-Readable Font SizesAction71% of visible text renders at >= 12 CSS px (40 below threshold)REVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 20 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
2 contrast failures on background images/gradients
These failures are invisible to CSS-based accessibility tools like Lighthouse. The text may be fine on a solid background, but fails when rendered over an image or gradient.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 Understand | 1.06:1 | 3.0:1 | #000000 | #090A0F | Fail |
| h2 Translation Modes | 1.06:1 | 3.0:1 | #000000 | #090A0F | Fail |
| h2 Simple Meaning & Dee… | 1.06:1 | 3.0:1 | #000000 | #090A0F | Fail |
| h2 Difficult Words & Wo… | 1.06:1 | 3.0:1 | #000000 | #090A0F | Fail |
| h3 Core Theme: | 1.06:1 | 3.0:1 | #000000 | #090A0F | Fail |
| h3 Mirza Asadullah Khan… | 1.06:1 | 3.0:1 | #000000 | #090A0F | Fail |
| title Global Shayari AI | … | 1.25:1 | 4.5:1 | #000000 | #161E2A | Fail |
| span SHAYARI | 1.12:1 | 4.5:1 | #000000 | #0D121F | Fail |
| span PRO | 1.14:1 | 4.5:1 | #000000 | #17130E | Fail |
| span Analyze | 1.05:1 | 4.5:1 | #000000 | #07090E | Fail |
| span Dictionary | 1.05:1 | 4.5:1 | #000000 | #07090E | Fail |
| span Video Studio | 1.05:1 | 4.5:1 | #000000 | #07090E | Fail |
| span Poetry Academy | 1.05:1 | 4.5:1 | #000000 | #07090E | Fail |
| span Translate to: | 1.05:1 | 4.5:1 | #000000 | #07090E | Fail |
| option English (English) | 1.05:1 | 4.5:1 | #000000 | #07090E | Fail |
| option বাংলা (Ben… | 1.05:1 | 4.5:1 | #000000 | #06080D | Fail |
| option हिन्दी (… | 1.05:1 | 4.5:1 | #000000 | #06080D | Fail |
| option اردو (Urdu) | 1.05:1 | 4.5:1 | #000000 | #06080D | Fail |
| option العربية (Arab… | 1.05:1 | 4.5:1 | #000000 | #06080D | Fail |
| option فارسی (Persian) | 1.05:1 | 4.5:1 | #000000 | #06080D | 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.
ALandmark Structure4 landmarksPASS
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
A+Heading Hierarchy6 headingsPASS
- H1 Understand Every Shayari.
- H2 Translation Modes
- H2 Simple Meaning & Deep Explanation
- H3 Core Theme:
- H3 Mirza Asadullah Khan Ghalib
- H2 Difficult Words & Word-by-Word Meaning
A+Heading Text QualityAll 6 heading(s) have substantive, well-formed textPASS
A+Alt Text QualityNo imagesPASS
AForm Accessibility1 of 2 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| select | select | Select translation language | aria-label |
| textarea | textarea | (Paste or write Shayari in Urdu, Hindi, Bengali, Persian, Arabic, or Roman transliteration... (e.g. 'دل ہی تو ہے نہ سنگ و خشت' or 'Dil hi to hai na sang-o-khisht')) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<textarea>
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
ALink & Button Quality1 issue(s) across 1 links and 50 buttonsPASS
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://en.wikipedia.org/wiki/Ghalib | View Historical Archive | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
Add '(opens in new tab)' to link text or aria-label.
https://en.wikipedia.org/wiki/Ghalib
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.text-slate-400 (#370 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
A+Form Input Types2 form control(s) checked, no type mismatchesPASS
A+Form Input Quality2 form control(s) checked, no input-semantic issuesPASS
A+Mobile Keyboard & AutofillNo autofill-eligible form controlsPASS
A+Document LanguageLang attribute set to "en"PASS
A+Tabindex Anti-PatternsNo explicit tabindex attributes foundPASS
A+Iframe AccessibilityNo iframes on this pagePASS
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
ALighthouse Accessibility AuditsScore 94/100 — 1 failing, 20 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.
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 |
|---|
header.sticky > div.mx-auto > div.flex > button.flex header.sticky > div.mx-auto > div.flex > button.flex |
div#shayari-result-section > div.flex > div.flex > button.flex div#shayari-result-section > div.flex > div.flex > button.flex |
div#shayari-result-section > div.flex > div.flex > button.flex div#shayari-result-section > div.flex > div.flex > button.flex |
div#shayari-result-section > div.flex > div.flex > button.flex div#shayari-result-section > div.flex > div.flex > button.flex |
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.