Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FFavicon & BrandingAction2 icon(s) detectedFIX
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CLandmark StructureAction3 landmarksREVIEW
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
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
BForm Accessibility3 of 3 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #search | text | (Type here to search news, photos, videos...) | placeholder only |
| #search | text | (Type here to search news, photos, videos...) | placeholder only |
| #email-sign-up | (Enter your email address...) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="search" id="search">; <input type="text" name="q" id="search">; <input type="email" name="email" id="email-sign-up">
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 QualityAction3 issue(s) across 168 links and 9 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /epapers?referrer=epaper&utm_source=webs… | E-Paper | new tab | Add '(opens in new tab)' to text |
| https://khaleejtimesevents.com | KT EVENTS | new tab | Add '(opens in new tab)' to text |
| https://futuresec.khaleejtimesevents.com… | Futuresec | new tab | Add '(opens in new tab)' to text |
| https://futureworkforcesummit.khaleejtim… | FWF Summit | new tab | Add '(opens in new tab)' to text |
| https://ktuniexpo.com/ | UniExpo | new tab | Add '(opens in new tab)' to text |
| https://bit.khaleejtimesevents.com/ | BIT Summit | new tab | Add '(opens in new tab)' to text |
| https://wtw.khaleejtimesevents.com/ | We The Women | new tab | Add '(opens in new tab)' to text |
| https://newagefinanceexpo.com/ | NAFA-8th Edition | new tab | Add '(opens in new tab)' to text |
| https://desertdrive.khaleejtimesevents.c… | Desert Drive 2026 | new tab | Add '(opens in new tab)' to text |
| https://subscriptions.khaleejtimes.com/h… | SUBSCRIPTIONS | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/khaleejtimes | facebook-khaleejtimes | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/khaleejtimes/ | instagram-khaleejtimes | new tab | Add '(opens in new tab)' to text |
| https://x.com/khaleejtimes | twitter-khaleejtimes | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/khaleej… | linkedin-khaleejtimes | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/khaleejtimes | youtube-khaleejtimes | new tab | Add '(opens in new tab)' to text |
| https://www.whatsapp.com/channel/0029Va5… | whatsapp-khaleejtimes | new tab | Add '(opens in new tab)' to text |
| https://itunes.apple.com/ae/app/khaleej-… | iOS | new tab | Add '(opens in new tab)' to text |
| https://play.google.com/store/apps/detai… | Android | new tab | Add '(opens in new tab)' to text |
| https://galadaribrothers.com/our-group/ | About Galadari Group | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/khaleejtimes | new tab | Add '(opens in new tab)' to text | |
| https://x.com/khaleejtimes | x | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/khaleejtimes | youtube | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/khaleejtimes/ | new tab | Add '(opens in new tab)' to text | |
| https://www.linkedin.com/company/khaleej… | new tab | Add '(opens in new tab)' to text | |
| https://www.whatsapp.com/channel/0029Va5… | new tab | Add '(opens in new tab)' to text | |
| https://itunes.apple.com/ae/app/khaleej-… | iOS | new tab | Add '(opens in new tab)' to text |
| https://play.google.com/store/apps/detai… | Android | 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 |
Add '(opens in new tab)' to link text or aria-label.
/epapers?referrer=epaper&utm_source=website&utm_medium=icon&utm_campaign=epap…; https://khaleejtimesevents.com; https://futuresec.khaleejtimesevents.com/; https://futureworkforcesummit.khaleejtimesevents.com/; https://ktuniexpo.com/; https://bit.khaleejtimesevents.com/; https://wtw.khaleejtimesevents.com/; https://newagefinanceexpo.com/; https://desertdrive.khaleejtimesevents.com/; https://subscriptions.khaleejtimes.com/home/subscription (+17 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.dm__pip-play-pause-button (#613 on page); button.dm__back-to-player-button (#621 on page); button#__ap_gfc_consent_box_btn__
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
C404 Error PageActionHTTP 404, custom pageREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 1 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 |
|---|---|---|---|---|---|
| h3 Follow us | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Download our Mobile … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Khaleej Times - Duba… | 18.91:1 | 4.5:1 | #000000 | #F2F3F5 | Pass |
| div WANT MORE KHALEEJ TI… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Get the latest on th… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a VIEW | 14.03:1 | 4.5:1 | #20265D | #FFFFFF | Pass |
| span Wed, Apr 22, 2026 | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span | Dhu al-Qadah 4, 14… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Fajr 4:29 AM | 1.50:1 | 4.5:1 | #000000 | #20265D | Fail |
| a E-Paper | 8.97:1 | 4.5:1 | #000000 | #A6A8BE | Pass |
| a Sign In | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Gold | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Forex | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| strong VOICE OF THE UAE. | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| p SINCE 1978 | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span DXB | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span 27.8°C | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Prayer | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Breaking | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Abu Dhabi to introdu… | 21.00:1 | 4.5: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.
A+Heading Hierarchy30 headingsPASS
- H3 Follow us
- H3 Download our Mobile App
- H1 LiveTrump says next round of peace talks expected in 3 days; no deadline for truce extension
- H2 Two new Darb toll gates in Abu Dhabi to operate 24/7 starting May 4
- H2 Sheikh Mohammed announces new Dubai Metro Gold Line, project to start immediately
- H2 Sharjah astronomers reveal likely first day of Eid Al Adha 2026 in UAE
- H2 The future of hiring isn’t AI - it’s trust infrastructure
- H2 Dubai Gold Line to ease crowding on key Metro routes, cut road traffic
- H2 UAE Lottery: Winning numbers in latest draw out; Dh30 million jackpot unclaimed
- H2 Sheikh Hamdan visits Dubai's KHDA, reviews preparations for schools reopening
- H2 Dubai Metro Gold Line map unveiled: High speed rail to run from Ras Al Khor to beyond Expo
- H2 Sharjah chocolate: What are its proposed flavours? What does Qand mean?
- H2 Watch: RAK Crown Prince performs Emirati 'Yola' dance at mass wedding in viral video
- H2 Partner Content: Canada's next-generation entrepreneur immigration programme - Exclusive early access opportunity
- H3 MOST POPULAR
- H4 Don't just scroll.Know it all. Sign up for your daily UAE news fix.
- H3 Partner Content
- H4 AI without the hype: The new HONOR 600 redefines the smartest smartphone experience
- H4 HRE Development commences handover of Skyhills Residences 1 By HRE - six months ahead of schedule
- H4 Mediclinic City Hospital reinforces leadership in robotic-assisted surgery
- H4 AVENEW Development and Wadeen Developers announce the launch of Cheval Residences at Dubai Islands
- H4 Tiger Properties sets Sesilia Tower handover for April 20, unveils 2026 delivery pipeline
- H4 CFI advances its operations in Egypt with Amr Abdelbaky appointed CEO of CFI Egypt
- H3 Videos & Podcasts
- H4 UAE launches tool to track grocery prices daily
- H4 Global Village reopens in Dubai for Season 30
- H4 UAE built through action not words or promises
- H4 Saudi sets April 18 exit deadline for Umrah visas
- H4 Gulf hiring holds steady despite regional tensions
- H4 Watch Marisa Peer break down negative thinking
AAlt Text Quality2 of 54 images have issuesPASS
| Issue | Count |
|---|---|
| missing | 1 image(s) |
| filename | 1 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
AWeb ManifestPWA-readyPASS
ALighthouse Accessibility AuditsScore 93/100 — 2 failing, 26 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
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 |
|---|
body > button#__ap_gfc_consent_box_btn__ > img body > button#__ap_gfc_consent_box_btn__ > img |
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
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html.macos html.macos |
These items highlight common accessibility best practices.