Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DAlt Text QualityAction6 of 83 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 3 image(s) |
| generic | 3 image(s) |
| too long | 21 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
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
CHeading HierarchyAction69 headings, 1 skip(s)REVIEW
- H2 The Middle Eastʼs leading independent news source since 2012
- H2 Search
- H2 Main navigation
- H2 Secondary Navigation
- H2 Who is Ahmad Vahidi, IRGC chief and hard-liner against nuclear compromise?
- H2 Split over Maliki, Iraq’s Shiite bloc delays PM vote as deadline nears: What to know
- H2 'Is it worth it?' Syria's Sharaa faces backlash over Missy Elliott performance
- H2 Iran executes 14th person since war over alleged Mossad ties: What to know
- H2 Iran seizes two cargo ships in Hormuz after Trump extends ceasefire
- H3 Latest News
- H2 Trump extends ceasefire with Iran ‘until discussions concluded’
- H2 How are Iran-linked tankers still moving through Hormuz blockade?
- H2 Military planners to discuss Hormuz reopening in London
- H2 As Iran's power struggle deepens, US talks stall, who’s calling the shots in Tehran?
- H2 Get unlimited access for as little as $2/week.
- H3 Subscriber-Only Benefits
- H2 Trump looks for way out on war, but Iran may not oblige
- H2 Exclusive-US intercepts three Iranian oil tankers in Asian waters, sources say
- H2 Trump says eight Iranian women won't be executed, Iran disputes entire account
- H2 US wants to see unified response from Iran, White House says
- H3 Featured Newsletters
- H2 US forces board Iran-linked tanker
- H2 How are tankers bypassing Hormuz blockade?
- H2 Does the UAE need a US financial cushion?
- H2 NEOM’s new logistics look
- H3 Editor's choice
- H2 Ceasefire or strategic pause? How Iran is framing war narrative amid deep mistrust
- H2 Trump ceasefire leaves Netanyahu flustered as Iran gains politically
- H2 Shelly Kittleson's kidnapping by suspected Iran-backed militia exposes Iraq government weakness
- H2 Expert insight on the Middle East—delivered regularly
- H3 Read By
- H3 Audio
- H2 What to make of Pakistan’s increased defense ties with Saudi Arabia
- H2 As Iran declares Strait of Hormuz “fully open”, what does it mean for Gulf?
- H2 Lebanon’s Ghassan Salame: Israel talks ‘not negotiations,’ Hezbollah disarmament by force ‘illusion’
- H3 Interviews
- H2 UAE official says opening Hormuz integral to any Iran deal, describes infrastructure damage 'manageable'
- H2 Minister warns aid cuts to Lebanon risk empowering Hezbollah
- H2 Despite Trump’s U-turns, US may still support Iran’s Kurds, says Komala’s Mohtadi
- H2 Olmert: Only Israel-Lebanon deal can curb Hezbollah, occupation 'unviable'
- H3 The City Pulse Newsletters
- H2 Izmir opens new art center backed by Centre Pompidou
- H2 Saudi creatives in Milan
- H2 Rethinking fashion in Doha
- H2 Barjeel Art Foundation unveils plans for Sharjah museum
- H3 Analysis
- H2 As Iran's power struggle deepens, US talks stall, who’s calling the shots in Tehran?
- H2 Gulf energy deals face Iran war stress test as global expansion meets oil shock
- H2 Israel sees chance of US-Iran deal as almost 'non-existent,' readies for war
- H2 'Is it worth it?' Syria's Sharaa faces backlash over Missy Elliott performance
- H3 Videos
- H2 Iran War at One Month: Outlook and Implications
- H2 Ukraine's Zelenskyy capitalizes on Iran war to ink security deal with Saudi Arabia
- H2 French ISIS Member Convicted of Genocide Against Yazidis
- H2 AL-MONITOR's Ezgi Akin at Turkey-Iran Border Crossing
- H3 AL-MONITOR Live Journalism
- H2 AL-MONITOR Global Institute hosts food security forum with Dr. Conrad Rein
- H2 AL-MONITOR Global Institute hosts Digital Cooperation Organization Secretary-General Deemah AlYahya
- H2 AL-MONITOR Global Institute hosts Iraqi Kurdistan Prime Minister Masrour Barzani and US Energy Secretary Chris Wright
- H3 Our Journalists
- H2 Samuel Wendel
- H2 Amberin Zaman
- H2 Adam Lucente
- H2 Jack Dutton
- H2 Elizabeth Hagedorn
- H2 Ezgi Akin
- H2 The Middle Eastʼs leading independent news source since 2012
- H2 Sign up to our Daily Briefing
- H5 ©2026 AL-MONITOR, LLC. All rights reserved. skipped
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
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
BForm Accessibility2 of 2 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #edit-text | text | (Keywords, topics and authors) | placeholder only |
| #edit-email | (Email Address) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="text" id="edit-text">; <input type="email" name="email" id="edit-email">
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
CLink & Button QualityAction13 issue(s) across 250 links and 7 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| # | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| https://art19.com/shows/the-al-monitor-b… | (empty) | empty | Add link text or aria-label |
| https://rss.art19.com/episodes/c9be65ba-… | Download | new tab | Add '(opens in new tab)' to text |
| https://art19.com/privacy | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://art19.com/shows/the-al-monitor-b… | (empty) | empty | Add link text or aria-label |
| https://rss.art19.com/episodes/79ebb3d1-… | Download | new tab | Add '(opens in new tab)' to text |
| https://art19.com/privacy | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| (empty) | empty | Add link text or aria-label | |
| # | Download | new tab | Add '(opens in new tab)' to text |
| https://art19.com/privacy | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| /videos/iran-war-one-month-outlook-and-i… | (empty) | empty | Add link text or aria-label |
| /videos/iran-war-one-month-outlook-and-i… | (empty) | empty | Add link text or aria-label |
| /videos/ukraines-zelenskyy-capitalizes-i… | (empty) | empty | Add link text or aria-label |
| /videos/ukraines-zelenskyy-capitalizes-i… | (empty) | empty | Add link text or aria-label |
| /videos/french-isis-member-convicted-gen… | (empty) | empty | Add link text or aria-label |
| /videos/french-isis-member-convicted-gen… | (empty) | empty | Add link text or aria-label |
| /videos/al-monitors-ezgi-akin-turkey-ira… | (empty) | empty | Add link text or aria-label |
| /videos/al-monitors-ezgi-akin-turkey-ira… | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
#; a#main-content; https://art19.com/shows/the-al-monitor-brief; https://art19.com/shows/the-al-monitor-brief; a.awp-series-link (#991 on page); /videos/iran-war-one-month-outlook-and-implications; /videos/iran-war-one-month-outlook-and-implications; /videos/ukraines-zelenskyy-capitalizes-iran-war-ink-security-deal-saudi-arabia; /videos/ukraines-zelenskyy-capitalizes-iran-war-ink-security-deal-saudi-arabia; /videos/french-isis-member-convicted-genocide-against-yazidis (+3 more)
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://rss.art19.com/episodes/c9be65ba-fead-480e-b2e7-65acaf4ac24f.mp3; https://art19.com/privacy; https://rss.art19.com/episodes/79ebb3d1-5c4a-485c-a04d-b0228d0a1d2c.mp3; https://art19.com/privacy; #; https://art19.com/privacy
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
B404 Error PageHTTP 404, custom pageREVIEW
BFavicon & Branding22 icon(s) detectedREVIEW
BLighthouse Accessibility AuditsScore 86/100 — 4 failing, 23 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 |
|---|
The Middle Eastʼs leading independent news source since 2012 div.footer__inner > div.footer__top > div.footer__footer_logo > h2.h2 |
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 |
|---|
©2026 AL-MONITOR, LLC. All rights reserved. footer.footer > div.footer__inner > div.footer__bottom > h5.h5 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.section--content > div.split-60-40 > div.split-60-40__region > img.image div.section--content > div.split-60-40 > div.split-60-40__region > img.image |
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.header__primary > div.header__primary_content > div.header__search_nav > a#toggle-expand div.header__primary > div.header__primary_content > div.header__search_nav > a#toggle-expand |
div.awp-micro-table-wrapper > div.awp-left > div.awp-brand-logo > a.awp-series-link div.awp-micro-table-wrapper > div.awp-left > div.awp-brand-logo > a.awp-series-link |
div.awp-micro-table-wrapper > div.awp-left > div.awp-brand-logo > a.awp-series-link div.awp-micro-table-wrapper > div.awp-left > div.awp-brand-logo > a.awp-series-link |
div.awp-micro-table-wrapper > div.awp-left > div.awp-brand-logo > a.awp-series-link div.awp-micro-table-wrapper > div.awp-left > div.awp-brand-logo > a.awp-series-link |
div.card__meta > div.byline > div.byline__media > a div.card__meta > div.byline > div.byline__media > a |
div.byline > div.byline__media > div.time_watch > a div.byline > div.byline__media > div.time_watch > a |
div.card__meta > div.byline > div.byline__media > a div.card__meta > div.byline > div.byline__media > a |
div.byline > div.byline__media > div.time_watch > a div.byline > div.byline__media > div.time_watch > a |
div.card__meta > div.byline > div.byline__media > a div.card__meta > div.byline > div.byline__media > a |
div.byline > div.byline__media > div.time_watch > a div.byline > div.byline__media > div.time_watch > a |
div.card__meta > div.byline > div.byline__media > a div.card__meta > div.byline > div.byline__media > a |
div.byline > div.byline__media > div.time_watch > a div.byline > div.byline__media > div.time_watch > a |
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.
ALandmark Structure7 landmarksPASS
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
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 |
|---|---|---|---|---|---|
| h2 The Middle Eastʼs l… | 6.06:1 | 3.0:1 | #000000 | #808B98 | Pass |
| h2 Search | 6.26:1 | 3.0:1 | #000000 | #808E9B | Pass |
| h2 Main navigation | 5.55:1 | 3.0:1 | #000000 | #788498 | Pass |
| h2 Secondary Navigation | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h2 Get unlimited access… | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h2 Expert insight on th… | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h2 The Middle Eastʼs l… | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h2 Sign up to our Daily… | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Latest News | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Subscriber-Only Bene… | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Featured Newsletters | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Editor's choice | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Read By | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Audio | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Interviews | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 The City Pulse Newsl… | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Analysis | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Videos | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 AL-MONITOR Live Jour… | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | Pass |
| h3 Our Journalists | 19.13:1 | 3.0:1 | #000000 | #F6F4F1 | 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.