Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.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
BHeading Hierarchy81 headings, 1 skip(s)REVIEW
- H1 Home
- H1 Find Your Dream Government Job duplicate H1
- H3 0 skipped
- H3 0
- H3 0
- H2 Jobs by Profession
- H3 Medical
- H3 Engineering
- H3 Police / Defense
- H3 Banking
- H3 Railway
- H3 Nursing
- H3 Pharmacy
- H3 Post Office
- H3 Teaching
- H3 Law / Judiciary
- H3 Agriculture
- H3 Hotel Mgmt
- H3 Aviation
- H3 Scientist
- H3 PSU / Govt
- H3 Sports Quota
- H3 Apprentice
- H3 Clerk / Assistant
- H3 Forest / Env
- H2 Latest Notifications
- H2 Jobs by Qualification
- H3 10th Pass
- H3 12th Pass
- H3 Graduate
- H3 Diploma
- H3 B.Tech / B.E
- H3 ITI
- H3 Post Graduate
- H3 MBBS / BDS
- H3 Nursing
- H3 B.Ed / TET
- H3 MBA / CA
- H3 PhD / M.Phil
- H2 Jobs by Location
- H3 Across India
- H3 Andhra Pradesh
- H3 Arunachal Pr.
- H3 Assam
- H3 Bihar
- H3 Chandigarh
- H3 Chhattisgarh
- H3 Dadra & Nagar
- H3 Delhi
- H3 Goa
- H3 Gujarat
- H3 Haryana
- H3 Himachal Pr.
- H3 Jammu & Kashmir
- H3 Jharkhand
- H3 Karnataka
- H3 Kerala
- H3 Lakshadweep
- H3 Madhya Pradesh
- H3 Maharashtra
- H3 Manipur
- H3 Meghalaya
- H3 Mizoram
- H3 Nagaland
- H3 Odisha
- H3 Puducherry
- H3 Punjab
- H3 Rajasthan
- H3 Sikkim
- H3 Tamil Nadu
- H3 Telangana
- H3 Tripura
- H3 Uttar Pradesh
- H3 Uttarakhand
- H3 West Bengal
- H3 Union Territories
- H2 Jobs by Recruitment Board
- H3 About Us
- H3 Categories
- H3 Important Links
- H3 Get in Touch
A page should have only one H1. Multiple H1s dilute the document outline.
Multiple H1s blur the page's primary topic — screen-reader users and Google both prefer one H1.
Learn more ▾ ▴
HTML5's outline algorithm technically allows multiple H1s within sectioning content, but no browser implements it. In practice: one H1 per page. Use H2-H6 for subsections.
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 8 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
CForm AccessibilityAction3 of 8 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| s | search | Search for: | none |
| your-name | text | Your name | none |
| your-email | Your email | none | |
| your-subject | text | Subject | none |
| your-message | textarea | Your message (optional) | none |
| s | text | (Search Job (e.g. SSC, Police)...) | placeholder only |
| category_name | select | (none) | none |
| input | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<select name="category_name">; <input type="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="text" name="s">
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
BLink & Button Quality4 issue(s) across 455 links and 15 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://t.me/govtrank | Join Telegram | new tab | Add '(opens in new tab)' to text |
| https://www.whatsapp.com/channel/0029VbC… | Join WhatsApp | 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 |
Add '(opens in new tab)' to link text or aria-label.
https://t.me/govtrank; https://www.whatsapp.com/channel/0029VbCNhfYIiRos4r3XKH3E
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.search-trigger (#286 on page); button.search-submit (#295 on page); button#pnfpb-push-subscribe-icon; button#pnfpb-push-subscribe-button
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
BTap Target Adequacy1 tap target(s) too small or too close togetherREVIEW
BMobile-Readable Font Sizes98% of visible text renders at >= 12 CSS px (4 below threshold)REVIEW
CFavicon & BrandingAction3 icon(s) detectedREVIEW
BLighthouse Accessibility AuditsScore 82/100 — 6 failing, 28 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.gc-container > div.gc-row > div.gc-col > button.search-trigger div.gc-container > div.gc-row > div.gc-col > button.search-trigger |
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 |
|---|
Select State / UT
Andhra Pradesh
Arunachal Pradesh
Assam
Bihar
Chhattisgarh
Goa… section.hero-section > div.hero-content > form.search-glass > select |
Including a skip link can help users skip to the main content to save time. Learn more about skip links.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Skip to content body.home > div.page-wrap > a.skip-link |
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 |
|---|
Government Job section.hero-section > div.hero-content > h1.hero-heading > span |
SEARCH section.hero-section > div.hero-content > form.search-glass > button |
Profession section.profession-section > div.sec-head > h2 > span |
Sam Neill Dies at tbody > tr > td.td-org > span.gr-org-name |
Entertainment News tbody > tr > td.td-edu > a.gr-tag |
Film History tbody > tr > td.td-edu > a.gr-tag |
Jurassic Park tbody > tr > td.td-edu > a.gr-tag |
New Zealand Cinema tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Bastille Day 2026 Explained: tbody > tr > td.td-org > span.gr-org-name |
Bastille Day tbody > tr > td.td-edu > a.gr-tag |
France History tbody > tr > td.td-edu > a.gr-tag |
French Culture tbody > tr > td.td-edu > a.gr-tag |
French Revolution tbody > tr > td.td-edu > a.gr-tag |
July 14 tbody > tr > td.td-edu > a.gr-tag |
USA Events tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Galaxy S26 Ultra tbody > tr > td.td-edu > a.gr-tag |
OLED Screen tbody > tr > td.td-edu > a.gr-tag |
Red Tint tbody > tr > td.td-edu > a.gr-tag |
Samsung Display tbody > tr > td.td-edu > a.gr-tag |
Technology News tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Saint Lucia Travel Advisory tbody > tr > td.td-org > span.gr-org-name |
Caribbean Travel tbody > tr > td.td-edu > a.gr-tag |
Level 2 Advisory tbody > tr > td.td-edu > a.gr-tag |
Saint Lucia tbody > tr > td.td-edu > a.gr-tag |
Travel Safety tbody > tr > td.td-edu > a.gr-tag |
USA Travelers tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
IBM tbody > tr > td.td-edu > a.gr-tag |
IBM Stock tbody > tr > td.td-edu > a.gr-tag |
Q2 2026 Earnings tbody > tr > td.td-edu > a.gr-tag |
Technology Stocks tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
June 2026 CPI Report tbody > tr > td.td-org > span.gr-org-name |
Bureau of Labor Statistics tbody > tr > td.td-edu > a.gr-tag |
Consumer Prices tbody > tr > td.td-edu > a.gr-tag |
CPI Report tbody > tr > td.td-edu > a.gr-tag |
Inflation tbody > tr > td.td-edu > a.gr-tag |
June 2026 CPI tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Manila Clams Found in tbody > tr > td.td-org > span.gr-org-name |
Atlantic Coast tbody > tr > td.td-edu > a.gr-tag |
Environment tbody > tr > td.td-edu > a.gr-tag |
Invasive Species tbody > tr > td.td-edu > a.gr-tag |
Manila Clam tbody > tr > td.td-edu > a.gr-tag |
Marine Science tbody > tr > td.td-edu > a.gr-tag |
Massachusetts tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
FDA tbody > tr > td.td-edu > a.gr-tag |
Infant Botulism tbody > tr > td.td-edu > a.gr-tag |
Infant Formula Recall tbody > tr > td.td-edu > a.gr-tag |
Nara Organics tbody > tr > td.td-edu > a.gr-tag |
Parent Safety tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Listeria Soft Cheese Recall tbody > tr > td.td-org > span.gr-org-name |
Cheese Recall tbody > tr > td.td-edu > a.gr-tag |
FDA Recall tbody > tr > td.td-edu > a.gr-tag |
Food Safety tbody > tr > td.td-edu > a.gr-tag |
Health News tbody > tr > td.td-edu > a.gr-tag |
Listeria tbody > tr > td.td-edu > a.gr-tag |
Requeson tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Salmonella Enteritidis Outbreak 2026: tbody > tr > td.td-org > span.gr-org-name |
Enteritidis tbody > tr > td.td-edu > a.gr-tag |
FDA tbody > tr > td.td-edu > a.gr-tag |
Food Safety tbody > tr > td.td-edu > a.gr-tag |
Outbreak 2026 tbody > tr > td.td-edu > a.gr-tag |
Salmonella tbody > tr > td.td-edu > a.gr-tag |
USA Health News tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
E. coli O157 Outbreak tbody > tr > td.td-org > span.gr-org-name |
E. coli tbody > tr > td.td-edu > a.gr-tag |
FDA Investigation tbody > tr > td.td-edu > a.gr-tag |
Food Safety tbody > tr > td.td-edu > a.gr-tag |
Foodborne Illness tbody > tr > td.td-edu > a.gr-tag |
Health Alert tbody > tr > td.td-edu > a.gr-tag |
Outbreak News tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Why Berdly Is Trending tbody > tr > td.td-org > span.gr-org-name |
Berdly tbody > tr > td.td-edu > a.gr-tag |
Deltarune Chapter 5 tbody > tr > td.td-edu > a.gr-tag |
Gaming News tbody > tr > td.td-edu > a.gr-tag |
Nintendo Switch tbody > tr > td.td-edu > a.gr-tag |
Toby Fox tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
SpaceX Starlink Launch July tbody > tr > td.td-org > span.gr-org-name |
Falcon 9 tbody > tr > td.td-edu > a.gr-tag |
Rocket Launch tbody > tr > td.td-edu > a.gr-tag |
SpaceX tbody > tr > td.td-edu > a.gr-tag |
Technology News tbody > tr > td.td-edu > a.gr-tag |
Vandenberg tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Heat Advisory vs Extreme tbody > tr > td.td-org > span.gr-org-name |
Extreme Heat Warning tbody > tr > td.td-edu > a.gr-tag |
NWS tbody > tr > td.td-edu > a.gr-tag |
USA Weather tbody > tr > td.td-edu > a.gr-tag |
Weather Alert tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
What Is the Heat tbody > tr > td.td-org > span.gr-org-name |
Heat Index tbody > tr > td.td-edu > a.gr-tag |
Heat Safety tbody > tr > td.td-edu > a.gr-tag |
National Weather Service tbody > tr > td.td-edu > a.gr-tag |
Summer Weather tbody > tr > td.td-edu > a.gr-tag |
Weather Explained tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Judge Rebukes Trump IRS tbody > tr > td.td-org > span.gr-org-name |
Breaking News tbody > tr > td.td-edu > a.gr-tag |
Donald Trump tbody > tr > td.td-edu > a.gr-tag |
Federal Court tbody > tr > td.td-edu > a.gr-tag |
IRS tbody > tr > td.td-edu > a.gr-tag |
Kathleen Williams tbody > tr > td.td-edu > a.gr-tag |
US Law tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Clock Change tbody > tr > td.td-edu > a.gr-tag |
Daylight Saving Time tbody > tr > td.td-edu > a.gr-tag |
S.29 tbody > tr > td.td-edu > a.gr-tag |
Sunshine Protection Act tbody > tr > td.td-edu > a.gr-tag |
US Law tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Amy Coney Barrett tbody > tr > td.td-edu > a.gr-tag |
Elena Kagan tbody > tr > td.td-edu > a.gr-tag |
Federal Budget tbody > tr > td.td-edu > a.gr-tag |
Senate Hearing tbody > tr > td.td-edu > a.gr-tag |
Supreme Court tbody > tr > td.td-edu > a.gr-tag |
US Politics tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
1883 tbody > tr > td.td-edu > a.gr-tag |
Landman tbody > tr > td.td-edu > a.gr-tag |
Paramount Plus tbody > tr > td.td-edu > a.gr-tag |
Streaming Guide tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Media News tbody > tr > td.td-edu > a.gr-tag |
Movies and TV tbody > tr > td.td-edu > a.gr-tag |
Netflix July 2026 tbody > tr > td.td-edu > a.gr-tag |
New on Netflix tbody > tr > td.td-edu > a.gr-tag |
Watch Guide tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Stranger Things Season 5: tbody > tr > td.td-org > span.gr-org-name |
Netflix tbody > tr > td.td-edu > a.gr-tag |
Stranger Things tbody > tr > td.td-edu > a.gr-tag |
Stranger Things 5 tbody > tr > td.td-edu > a.gr-tag |
Streaming Guide tbody > tr > td.td-edu > a.gr-tag |
TV Release Date tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Digger Movie Trailer: Tom tbody > tr > td.td-org > span.gr-org-name |
Alejandro Inarritu tbody > tr > td.td-edu > a.gr-tag |
Digger Movie tbody > tr > td.td-edu > a.gr-tag |
Movie Trailer tbody > tr > td.td-edu > a.gr-tag |
Tom Cruise tbody > tr > td.td-edu > a.gr-tag |
Warner Bros tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Celebrity News tbody > tr > td.td-edu > a.gr-tag |
Christina P tbody > tr > td.td-edu > a.gr-tag |
Comedy tbody > tr > td.td-edu > a.gr-tag |
Entertainment News tbody > tr > td.td-edu > a.gr-tag |
Tom Segura tbody > tr > td.td-edu > a.gr-tag |
Your Mom's House tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Cyclospora tbody > tr > td.td-edu > a.gr-tag |
FDA tbody > tr > td.td-edu > a.gr-tag |
Food Safety tbody > tr > td.td-edu > a.gr-tag |
Outbreak 2026 tbody > tr > td.td-edu > a.gr-tag |
Public Health tbody > tr > td.td-edu > a.gr-tag |
USA Health tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Crypto News tbody > tr > td.td-edu > a.gr-tag |
Cryptocurrency tbody > tr > td.td-edu > a.gr-tag |
Investor Risk tbody > tr > td.td-edu > a.gr-tag |
Memecoin tbody > tr > td.td-edu > a.gr-tag |
Official Trump tbody > tr > td.td-edu > a.gr-tag |
TRUMP Coin tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Why the U.S. and tbody > tr > td.td-org > span.gr-org-name |
ICC tbody > tr > td.td-edu > a.gr-tag |
International Criminal Court tbody > tr > td.td-edu > a.gr-tag |
Justice Department tbody > tr > td.td-edu > a.gr-tag |
Rome Statute tbody > tr > td.td-edu > a.gr-tag |
United States tbody > tr > td.td-edu > a.gr-tag |
US Politics tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Christopher Nolan tbody > tr > td.td-edu > a.gr-tag |
July 2026 Movies tbody > tr > td.td-edu > a.gr-tag |
Matt Damon tbody > tr > td.td-edu > a.gr-tag |
Movie News tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Entertainment News tbody > tr > td.td-edu > a.gr-tag |
Nickelodeon tbody > tr > td.td-edu > a.gr-tag |
SpongeBob Day tbody > tr > td.td-edu > a.gr-tag |
SpongeBob SquarePants tbody > tr > td.td-edu > a.gr-tag |
TikTok Live tbody > tr > td.td-edu > a.gr-tag |
Tom Kenny tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Baseball tbody > tr > td.td-edu > a.gr-tag |
Derby stats tbody > tr > td.td-edu > a.gr-tag |
Home Run Derby tbody > tr > td.td-edu > a.gr-tag |
Kyle Schwarber tbody > tr > td.td-edu > a.gr-tag |
MLB tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
Kyle Schwarber Hits Seven tbody > tr > td.td-org > span.gr-org-name |
Home Run Derby tbody > tr > td.td-edu > a.gr-tag |
Jordan Walker tbody > tr > td.td-edu > a.gr-tag |
Kyle Schwarber tbody > tr > td.td-edu > a.gr-tag |
MLB tbody > tr > td.td-edu > a.gr-tag |
Philadelphia Phillies tbody > tr > td.td-edu > a.gr-tag |
Phillies tbody > tr > td.td-edu > a.gr-tag |
Apply Now tbody > tr > td.td-btn > a.gr-gradient-btn |
View All Posts div.elementor-element > div.elementor-shortcode > div.gr-view-all-container > a.gr-view-all-btn |
10th Pass div.qual-grid > a.qual-card > div.qual-info > h3 |
Matric Level Jobs div.qual-grid > a.qual-card > div.qual-info > p |
12th Pass div.qual-grid > a.qual-card > div.qual-info > h3 |
Inter Level Jobs div.qual-grid > a.qual-card > div.qual-info > p |
Graduate div.qual-grid > a.qual-card > div.qual-info > h3 |
Bachelor Degree div.qual-grid > a.qual-card > div.qual-info > p |
Diploma div.qual-grid > a.qual-card > div.qual-info > h3 |
Polytechnic Jobs div.qual-grid > a.qual-card > div.qual-info > p |
B.Tech / B.E div.qual-grid > a.qual-card > div.qual-info > h3 |
Engineering Jobs div.qual-grid > a.qual-card > div.qual-info > p |
ITI div.qual-grid > a.qual-card > div.qual-info > h3 |
Industrial Training div.qual-grid > a.qual-card > div.qual-info > p |
Post Graduate div.qual-grid > a.qual-card > div.qual-info > h3 |
Masters Degree div.qual-grid > a.qual-card > div.qual-info > p |
MBBS / BDS div.qual-grid > a.qual-card > div.qual-info > h3 |
Medical Jobs div.qual-grid > a.qual-card > div.qual-info > p |
Nursing div.qual-grid > a.qual-card > div.qual-info > h3 |
B.Sc / GNM / ANM div.qual-grid > a.qual-card > div.qual-info > p |
B.Ed / TET div.qual-grid > a.qual-card > div.qual-info > h3 |
Teaching Jobs div.qual-grid > a.qual-card > div.qual-info > p |
MBA / CA div.qual-grid > a.qual-card > div.qual-info > h3 |
Management Jobs div.qual-grid > a.qual-card > div.qual-info > p |
PhD / M.Phil div.qual-grid > a.qual-card > div.qual-info > h3 |
Research Jobs div.qual-grid > a.qual-card > div.qual-info > p |
Across India section.location-section > div.loc-grid > a.state-card > h3.state-name |
Andhra Pradesh section.location-section > div.loc-grid > a.state-card > h3.state-name |
Arunachal Pr. section.location-section > div.loc-grid > a.state-card > h3.state-name |
Assam section.location-section > div.loc-grid > a.state-card > h3.state-name |
Bihar section.location-section > div.loc-grid > a.state-card > h3.state-name |
Chandigarh section.location-section > div.loc-grid > a.state-card > h3.state-name |
Chhattisgarh section.location-section > div.loc-grid > a.state-card > h3.state-name |
Dadra & Nagar section.location-section > div.loc-grid > a.state-card > h3.state-name |
Delhi section.location-section > div.loc-grid > a.state-card > h3.state-name |
Goa section.location-section > div.loc-grid > a.state-card > h3.state-name |
Gujarat section.location-section > div.loc-grid > a.state-card > h3.state-name |
Haryana section.location-section > div.loc-grid > a.state-card > h3.state-name |
Himachal Pr. section.location-section > div.loc-grid > a.state-card > h3.state-name |
Jammu & Kashmir section.location-section > div.loc-grid > a.state-card > h3.state-name |
Jharkhand section.location-section > div.loc-grid > a.state-card > h3.state-name |
Karnataka section.location-section > div.loc-grid > a.state-card > h3.state-name |
Kerala section.location-section > div.loc-grid > a.state-card > h3.state-name |
Lakshadweep section.location-section > div.loc-grid > a.state-card > h3.state-name |
Madhya Pradesh section.location-section > div.loc-grid > a.state-card > h3.state-name |
Maharashtra section.location-section > div.loc-grid > a.state-card > h3.state-name |
Manipur section.location-section > div.loc-grid > a.state-card > h3.state-name |
Meghalaya section.location-section > div.loc-grid > a.state-card > h3.state-name |
Mizoram section.location-section > div.loc-grid > a.state-card > h3.state-name |
Nagaland section.location-section > div.loc-grid > a.state-card > h3.state-name |
Odisha section.location-section > div.loc-grid > a.state-card > h3.state-name |
Puducherry section.location-section > div.loc-grid > a.state-card > h3.state-name |
Punjab section.location-section > div.loc-grid > a.state-card > h3.state-name |
Rajasthan section.location-section > div.loc-grid > a.state-card > h3.state-name |
Sikkim section.location-section > div.loc-grid > a.state-card > h3.state-name |
Tamil Nadu section.location-section > div.loc-grid > a.state-card > h3.state-name |
Telangana section.location-section > div.loc-grid > a.state-card > h3.state-name |
Tripura section.location-section > div.loc-grid > a.state-card > h3.state-name |
Uttar Pradesh section.location-section > div.loc-grid > a.state-card > h3.state-name |
Uttarakhand section.location-section > div.loc-grid > a.state-card > h3.state-name |
West Bengal section.location-section > div.loc-grid > a.state-card > h3.state-name |
Union Territories section.location-section > div.loc-grid > a.state-card > h3.state-name |
UPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
SSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
NTA div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
GATE div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
UGC NET div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
IBPS div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
SBI div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
RBI div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
LIC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
PNB div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
Bank of Baroda div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
Canara Bank div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
RRB (Railways) div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
RRC (Group D) div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
Metro Rail div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
Indian Army div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
Indian Navy div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
Indian Air Force div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
BSF div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
CRPF div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
CISF div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
ITBP div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
SSB div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
State Police div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
DRDO div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
ISRO div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
BARC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
CSIR div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
ICMR div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
ICAR div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
IIT div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
NIT div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
AIIMS div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
ONGC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
IOCL div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
NTPC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
SAIL div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
BHEL div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
GAIL div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
AAI div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
FCI div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
KVS div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
NVS div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
CTET div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
UPPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
UPSSSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
BPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
BSSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
RPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
RSMSSB div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
MPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
MPPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
HSSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
JPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
JSSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
WBPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
KPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
TNPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
TSPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
APPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
OPSC div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
GovtRank delivers accurate and verified government job updates, exams,
results… div.textwidget > div.footer-about > p > strong |
CLICK TO KNOW MORE div.textwidget > div.footer-about > p > a.about-btn |
Union Territories Jobs div.menu-extra-container > ul#menu-extra > li#menu-item-2351 > a |
Jobs By Qualification div.menu-extra-container > ul#menu-extra > li#menu-item-2346 > a |
Admit Cards div.menu-extra-container > ul#menu-extra > li#menu-item-2343 > a |
Results div.menu-extra-container > ul#menu-extra > li#menu-item-2349 > a |
Answer Keys div.menu-extra-container > ul#menu-extra > li#menu-item-2344 > a |
Upcoming Notifications div.menu-extra-container > ul#menu-extra > li#menu-item-2842 > a |
Shop div.menu-extra-container > ul#menu-extra > li#menu-item-2804 > a |
About Us div.menu-footer-container > ul#menu-footer > li#menu-item-2336 > a |
Contact Us div.menu-footer-container > ul#menu-footer > li#menu-item-2337 > a |
Privacy Policy div.menu-footer-container > ul#menu-footer > li#menu-item-2334 > a |
Disclaimer div.menu-footer-container > ul#menu-footer > li#menu-item-2338 > a |
Terms & Conditions div.menu-footer-container > ul#menu-footer > li#menu-item-2339 > a |
About the Author: Vinit Rajput div.menu-footer-container > ul#menu-footer > li#menu-item-2335 > a |
SEND US A MESSAGE div.textwidget > div > p > strong |
p > label > span.wpcf7-form-control-wrap > input.wpcf7-form-control p > label > span.wpcf7-form-control-wrap > input.wpcf7-form-control |
p > label > span.wpcf7-form-control-wrap > input.wpcf7-form-control p > label > span.wpcf7-form-control-wrap > input.wpcf7-form-control |
p > label > span.wpcf7-form-control-wrap > input.wpcf7-form-control p > label > span.wpcf7-form-control-wrap > input.wpcf7-form-control |
div#wpcf7-f259-o1 > form.wpcf7-form > p > input.wpcf7-form-control div#wpcf7-f259-o1 > form.wpcf7-form > p > input.wpcf7-form-control |
Copyright © 2026 GovtRank. All Rights Reserved. | GovtRank.com is a private por… div.footer-bottom > div.gc-container > div.copyright-info > p |
Everestthemes div.gc-container > div.copyright-info > p > a |
These are opportunities to improve the legibility of your content.
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 |
|---|
0 div.stats-grid > div.stat-item > div.stat-text > h3.anim-counter |
These are opportunities to improve keyboard navigation in your application.
Best practices
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
BSF div.elementor-element > section.boards-section > div.boards-cloud > a.board-tag |
These items highlight common accessibility best practices.
ALandmark Structure5 landmarksPASS
The skip-link anchor (e.g., `href="#main"`) points at an ID that has no corresponding element on the page. Activating the link does nothing -- a silent WCAG 2.4.1 failure that the visual link presence hides. Add `id="main"` (or whichever matches the href) to the target landmark.
Skip link points at an ID that doesn't exist on the page. The link looks fine visually but does nothing when activated -- silent WCAG 2.4.1 failure.
Learn more ▾ ▴
Find the target landmark (typically <main> or the first <h1>) and add `id="..."` matching the skip link's href fragment. Test by tabbing to the skip link and pressing Enter -- focus should jump to the target.
Source: WCAG 2.1 SC 2.4.1
AHeading Text Quality2 heading-text-quality issue(s) detectedPASS
A+Form Input Types1 input(s) using type=text where a specific type would helpPASS
A+Form Input Quality8 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 AccessibilityNo iframes on this pagePASS
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 Home | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 Find Your Dream | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Jobs by | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Latest | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Jobs by | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Jobs by | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Jobs by | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Medical | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Engineering | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Police / Defense | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Banking | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Railway | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Nursing | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Pharmacy | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Post Office | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Teaching | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Law / Judiciary | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Agriculture | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Hotel Mgmt | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Aviation | 21.00:1 | 3.0: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.