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
Multiple navigations need aria-label to distinguish them for screen readers.
Some <nav> elements lack aria-label — screen-reader users hear 'navigation' multiple times with no way to distinguish them.
Learn more ▾ ▴
When a page has multiple <nav> regions (primary, footer, breadcrumb), each needs aria-label or aria-labelledby. AT users navigate by landmark; identical 'navigation' announcements force them to enter each one to discover purpose.
Source: WAI-ARIA Authoring Practices
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
DForm AccessibilityAction4 of 5 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #rememberme | checkbox | none | |
| #wpforms-1226464-field_8 | (Email Address) | placeholder only | |
| pwd | password | (none) | none |
| log | text | (none) | none |
| wp-submit | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="text" name="log">; <input type="password" name="pwd">; <input type="submit" name="wp-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="wpforms[fields][8]" id="wpforms-1226464-field_8">
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
F404 Error PageActionHTTP 404, bare pageFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DPrint StylesheetActionNo print stylesFIX
BLink & Button Quality2 issue(s) across 162 links and 3 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| # | More | generic text | Replace with descriptive text |
Before: More Suggested: # | |||
| # | More | generic text | Replace with descriptive text |
Before: More Suggested: # | |||
| https://www.facebook.com/theinquisitr | new tab | Add '(opens in new tab)' to text | |
| https://x.com/theinquisitr | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/@Inquisitr | YouTube | new tab | Add '(opens in new tab)' to text |
| https://news.google.com/publications/CAA… | Google News | new tab | Add '(opens in new tab)' to text |
| https://pinterest.com/inquisitr/ | new tab | Add '(opens in new tab)' to text | |
| https://linkedin.com/company/inquisitr-l… | new tab | Add '(opens in new tab)' to text | |
| https://flipboard.com/@inquisitr | new tab | Add '(opens in new tab)' to text | |
| https://www.inquisitr.com/feed | Rss | new tab | Add '(opens in new tab)' to text |
| https://facebook.com/TheInquisitr | new tab | Add '(opens in new tab)' to text | |
| https://twitter.com/theinquisitr | X | new tab | Add '(opens in new tab)' to text |
| https://pinterest.com/theinquisitr | new tab | Add '(opens in new tab)' to text | |
| https://instagram.com/theinquisitr | new tab | Add '(opens in new tab)' to text | |
| https://www.facebook.com/theinquisitr | new tab | Add '(opens in new tab)' to text | |
| https://x.com/theinquisitr | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/@Inquisitr | YouTube | new tab | Add '(opens in new tab)' to text |
| https://news.google.com/publications/CAA… | Google News | new tab | Add '(opens in new tab)' to text |
| https://pinterest.com/inquisitr/ | new tab | Add '(opens in new tab)' to text | |
| https://linkedin.com/company/inquisitr-l… | new tab | Add '(opens in new tab)' to text | |
| https://flipboard.com/@inquisitr | new tab | Add '(opens in new tab)' to text | |
| https://www.inquisitr.com/feed | Rss | new tab | Add '(opens in new tab)' to text |
| /privacy-policy | Privacy Policy | new tab | Add '(opens in new tab)' to text |
Generic link text like 'click here' doesn't describe the destination.
# ("More"); # ("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.facebook.com/theinquisitr; https://x.com/theinquisitr; https://www.youtube.com/@Inquisitr; https://news.google.com/publications/CAAqBwgKML3a-wowv8_oAg; https://pinterest.com/inquisitr/; https://linkedin.com/company/inquisitr-ltd-; https://flipboard.com/@inquisitr; https://www.inquisitr.com/feed; https://facebook.com/TheInquisitr; https://twitter.com/theinquisitr (+11 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
BFavicon & Branding5 icon(s) detectedREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
AHeading Hierarchy35 headings, 1 skip(s)PASS
- H1 Inquisitr News
- H2 Marjorie Taylor Greene Says Trump “Flat Out” Ordered Pam Bondi Not to Release Epstein Files
- H3 Meghan Markle Faced Doubts — Then Crew Shared What She Was Really Like
- H3 Obama Takes Victory Lap After Trump Suffers Setback in Virginia Referendum
- H3 Kash Patel Lashes Out At Reporters For Asking If He’s Been Drunk At Work
- H3 Pete Hegseth’s Pentagon Wants $1.5 Trillion, Iran War Could Add Hundreds of Billions More
- H3 Latest News
- H2 Mother Won $1.3M Jackpot on Betting App – Days Later, the Company Refused to Pay Even a Penny
- H4 Chris Nanos, Sheriff Leading Nancy Guthrie Case, Admits Leaving Past Job To Avoid Discipline skipped
- H4 Army Veteran Dies After Cosmetic Surgery as Husband Awaits $52M in Damages
- H4 Woman Dies of Overdose After Drone Delivers Drugs in Church Parking Lot; Dealer Sentenced
- H4 Follow US
- H3 More Stories
- H2 Two Siblings With Autism Were Left Home Alone Overnight—Now Their Mother Is Charged in the Death of One
- H3 Michael Jackson’s Biopic Labeled ‘Ghoulish, Soulless Cash Grab’ as Critics Point Out Its Flaws
- H3 Murderer on Death Row for 36 Years Delivers Final Message to Victim’s Family Before Execution
- H4 Meghan Markle’s Estranged Father Finds Love in Rehabilitation Hospital With Nurse 35 Years His Junior
- H4 Conditions Under Which U.S. Military Leaders Can Refuse Donald Trump’s Orders During the Iran War
- H4 Psychic Predicts Strain in Melania and Donald Trump’s Relationship: “The Past Creeps Into the Present”
- H3 Just Published
- H3 Soldier Who Served 27 Years Says ICE Detained His Wife Despite Legal Protections—And He Still Doesn’t Understand Why
- H3 Trump Rages at His Own Supreme Court Picks Says They Have ‘Very Little Loyalty’
- H3 Meghan Markle Spark Backlash Over Alleged “Disposable” Behavior Towards Staff
- H3 Lauren Sánchez Allegedly Tries To Repair Anna Wintour and Trump Feud
- H3 Trump Extends Iran Ceasefire in a Move That Leaves Strait of Hormuz Blocked
- H3 Donald Trump’s Whereabouts Become a Flashpoint as Situation Room Claims Surface
- H3 Tucker Carlson Says He’s “Sorry” for Supporting Trump, Admits He Misled Americans
- H3 Trump Says Bombing Iran Is a “Better Attitude” as Ceasefire Nears End
- H3 Most Recent
- H3 Netanyahu Could Face Arrest in Hungary, New PM Peter Magyar Says
- H3 Leavitt Pushes Mental Illness Care Access, Which Some Feel Trump Needs
- H2 Nancy Guthrie Update — FBI Testing DNA Is A “Very Good Sign”
- H3 Melania Trump’s Public Absence Raises Questions About Her Role and Marriage
- H3 Meghan Markle Criticized For ‘Disgusting’ Move On Queen Elizabeth’s 100th Birthday
- H3 Want the latest updates on news, celeb gossip & political chaos?
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
A+Alt Text QualityAll 43 images OKPASS
| Issue | Count |
|---|---|
| too long | 2 image(s) |
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 Inquisitr News | 16.98:1 | 3.0:1 | #000000 | #E7E7E7 | Pass |
| h3 Want the latest upda… | 16.98:1 | 3.0:1 | #000000 | #E7E7E7 | Pass |
| title Inquisitr News | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | Pass |
| p Inquisitr News | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | Pass |
| span News | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | Pass |
| span Politics | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | Pass |
| span Human Interest | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | Pass |
| span Crime | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | Pass |
| span Entertainment | 15.76:1 | 4.5:1 | #000000 | #CFE3E4 | Pass |
| span More | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Money | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Sports | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Featured | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Newsletter | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Get updates in your … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span News Alerts | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span News | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Politics | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Human Interest | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | Pass |
| span Crime | 16.98:1 | 4.5:1 | #000000 | #E7E7E7 | 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.
ALighthouse Accessibility AuditsScore 93/100 — 2 failing, 25 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.
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 |
|---|
300 partners div#cmpboxcontent > div.cmpboxtxtdiv > div.cmpboxtxt > a.cmplink |
Accept all div.cmpboxbtns > span#cmpwelcomebtnyes > a.cmpboxbtn > span#cmpbntyestxt |
Settings div.cmpboxbtns > span#cmpwelcomebtncustom > a.cmpboxbtn > span#cmpbntcustomtxt |
Privacy notice div.cmpboxinner > div.cmpboxbtns > div.cmpmore > a.cmpmorelink |
These are opportunities to improve the legibility of your content.
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 |
|---|
POLITICS div.overlay-wrap > div.overlay-inner > div.p-categories > a.p-category |
NEWS div.list-feat-holder > div.feat-holder > div.p-categories > a.p-category |
These items highlight common accessibility best practices.