Skip to content
https://globalsecurity.org

Accessibility

· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.
SCORE
52
GRADE
F
FIX
7
REVIEW
4
PASS
2
INFO
0
Checks
13
2 PASS 4 REVIEW 7 FIX
D
Landmark Structure
Action
4 landmarks
FIX
4 landmarks
Critical::
No <main> landmark found
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Info::
2 <nav> landmark(s) found
Warning::
2 of 2 <nav> elements are unlabeled
Multiple navigations need aria-label to distinguish them for screen readers.
Warning::
Skip navigation link is missing (WCAG 2.4.1)
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Page Structure — as a screen reader sees it
BANNER header NAV MAIN (missing!) CONTENTINFO footer

Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.

Why this matters

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.

Why this matters

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.

Why this matters

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

D
Alt Text Quality
Action
3 of 22 images have issues
FIX
3 of 22 images have issues
Critical::
3 image(s) missing alt attribute
Images without alt text are invisible to screen readers.
Critical::
3 image-in-link without alt text
An image inside a link with no alt creates an empty link.
Info::
19 image(s) with good alt text
22 images 19 good alt text 3 missing
IssueCount
missing3 image(s)

Images without alt text are invisible to screen readers.

Why this matters

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

An image inside a link with no alt creates an empty link.

Why this matters

Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.

Learn more

An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.

Source: WCAG 2.1 SC 2.4.4

F
Favicon & Branding
Action
1 icon(s) detected
FIX
1 icon(s) detected
Info::
favicon.ico present at site root
Info::
No apple-touch-icon detected
iOS devices use this when users add your site to their home screen. Add <link rel='apple-touch-icon' sizes='180x180' href='/apple-touch-icon.png'>.
favicon.ico Present
PNG Icons Missing
Apple Touch Missing
SVG Favicon Missing
Manifest Icons Missing
Multiple Sizes Missing
D
Web Manifest
Action
Not found
FIX
Not found
Info::
No web manifest found
No manifest at standard paths (/manifest.json, /site.webmanifest). A manifest is optional but enables PWA features like home screen installation and standalone display.

No web manifest found.

D
Dark Mode Support
Action
No dark mode signals
FIX
No dark mode signals
Info::
No dark mode signals detected
Consider adding CSS with @media (prefers-color-scheme: dark) and <meta name='color-scheme' content='light dark'>.
Info::
Detection limited to meta tags and inline styles
External CSS files may contain prefers-color-scheme rules not visible to this scan.
Dark ModeNo Dark Mode Detected
color-scheme meta Not set Dark theme-color Not set CSS indicators Not detected

Detection limited to meta tags and inline styles.

D
Print Stylesheet
Action
No print styles
FIX
No print styles
Info::
No print-specific styles detected
When users print this page, they get the screen layout including navigation and non-essential elements. Add @media print rules to hide navigation and optimize layout for paper.
Print Stylesheet No Print Styles
Print stylesheet Not found Inline @media print Not detected
F
Navigation UX
Action
No navigation patterns
FIX
No navigation patterns
Info::
2 navigation landmark(s) detected
Info::
No breadcrumbs, search, or skip link detected
These navigation aids help users orient themselves and find content efficiently, especially on large sites.
Breadcrumbs
Search
Skip Link
Labeled Navigation 2 <nav> element(s)
Back to Top
Hamburger Menu
Sticky Navigation Cannot reliably detect (CSS-based)
1 of 6 testable patterns navigation patterns detected. Limited navigation support. Consider adding breadcrumbs, search, and skip link.
B
Form Accessibility
2 of 2 controls have issues
REVIEW
2 of 2 controls have issues
Critical::
1 control(s) without accessible label
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
Got: <input type="submit">
Warning::
1 control(s) rely on placeholder only
Placeholder text disappears on focus and is not a reliable label.
Got: <input type="text" name="q">
2 controls
0 labeled
1 placeholder only
1 unlabeled
ControlTypeLabelMethod
qtext(Enter Search Term…)placeholder only
inputsubmit(none)none

Form controls need a <label>, aria-label, or aria-labelledby for screen readers.

<input type="submit">

Why this matters

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="q">

Why this matters

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

B
404 Error Page
HTTP 404, custom page
REVIEW
HTTP 404, custom page
Info::
Correct 404 status code returned
Got: HTTP 404
Info::
Custom styled 404 page
Info::
Navigation links present on 404 page
404 Page Quality Custom 404 Page
Status Code HTTP 404 Page Title GlobalSecurity.org - Reliable News and Security Information Custom Styling Navigation Homepage Link Search Form
C
Color Contrast (Screenshot)
Action
20 text elements analyzed, 4 fail WCAG AA
REVIEW

Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.

16 pass 4 fail WCAG AA
title GlobalSecurity.org
1.00:1
#000000
on
#000000
needs 4.5:1 (normal text)
16px · top of page (header area)
div Facilities
1.14:1
#000000
on
#141418
needs 4.5:1 (normal text)
16px · mid-page
div Agencies
1.16:1
#000000
on
#12161A
needs 4.5:1 (normal text)
16px · mid-page
div Operations
1.13:1
#000000
on
#10131A
needs 4.5:1 (normal text)
16px · mid-page
Show all checked elements (20)
ElementRatioRequiredFGBGResult
h3 GlobalSecurity.org i…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 reliable security ne…15.76:13.0:1
#000000
#DFDFDF
Pass
h3 ISSN 2769-894715.76:13.0:1
#000000
#DFDFDF
Pass
title GlobalSecurity.org1.00:14.5:1
#000000
#000000
Fail
div Site Map7.37:14.5:1
#000000
#999999
Pass
div Military21.00:14.5:1
#000000
#FFFFFF
Pass
div Introduction21.00:14.5:1
#000000
#FFFFFF
Pass
div World Wide Military20.47:14.5:1
#000000
#FCFCFC
Pass
div Weapon Systems21.00:14.5:1
#000000
#FFFFFF
Pass
div Facilities21.00:14.5:1
#000000
#FFFFFF
Pass
div Agencies18.94:14.5:1
#000000
#F7F4DD
Pass
div Operations18.94:14.5:1
#000000
#F7F4DD
Pass
div News & Reports18.94:14.5:1
#000000
#F7F4DD
Pass
div WMD18.94:14.5:1
#000000
#F7F4DD
Pass
div Introduction18.94:14.5:1
#000000
#F7F4DD
Pass
div World Wide WMD18.94:14.5:1
#000000
#F7F4DD
Pass
div Weapon Systems8.87:14.5:1
#000000
#A9A9A0
Pass
div Facilities1.14:14.5:1
#000000
#141418
Fail
div Agencies1.16:14.5:1
#000000
#12161A
Fail
div Operations1.13:14.5:1
#000000
#10131A
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.

C
Lighthouse Accessibility Audits
Action
Score 71/100 — 10 failing, 17 passed
REVIEW
71

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
All Source Global Coverage a > b > big > big
Latest News Updates a > b > big > big
Iran Daily Summary a > b > big > big
The Spice Must Flow a > b > big > big
Total Information Awareness a > b > big > big
The Hounds of War a > b > big > big
Radev? Bulgaria yes! a > b > big > big
End of Eternal Darkness?? a > b > big > big
Him that hath understanding a > b > big > big
Ukraine a > b > big > big
World Wide Elections a > b > big > big
Hot Topics a > b > big > big
USofA tr > td > h1 > a
Europe tr > td > h1 > a
China tr > td > h1 > a
Russia tr > td > h1 > a
India tr > td > h1 > a
Japan tr > td > h1 > a
Ground Systems tr > td > h3 > a
Warships tr > td > h3 > a
Aircraft tr > td > h3 > a
Missiles tr > td > h3 > a
Directed Energy tr > td > h3 > a
Special Weapons tr > td > h3 > a
Intelligence Systems tr > td > h3 > a
Space Systems tr > td > h3 > a
The World At War tr > td > h2 > a
Para-Military Groups tr > td > h3 > a
Afghanistan ul > b > li > a
Albania ul > b > li > a
Algeria ul > b > li > a
Andora ul > b > li > a
Angola ul > b > li > a
Antigua & Barbuda ul > b > li > a
Argentina ul > b > li > a
Armenia ul > b > li > a
Australia ul > b > li > a
Austria ul > b > li > a
Azerbaijan ul > b > li > a
Bahamas, The ul > b > li > a
Bahrain ul > b > li > a
Bangladesh ul > b > li > a
Barbados ul > b > li > a
Belarus ul > b > li > a
Belgium ul > b > li > a
Belize ul > b > li > a
Benin ul > b > li > a
Bhutan ul > b > li > a
Bolivia ul > b > li > a
Bosnia ul > b > li > a
Botswana ul > b > li > a
Brazil ul > b > li > a
Brunei ul > b > li > a
Bulgaria ul > b > li > a
Burkina Faso ul > b > li > a
Burundi ul > b > li > a
Cabo Verde ul > b > li > a
Cameroon ul > b > li > a
Cambodia ul > b > li > a
Canada ul > b > li > a
C.A.R. ul > b > li > a
Chad ul > b > li > a
Chile ul > b > li > a
China ul > b > li > a
Colombia ul > b > li > a
Comoros ul > b > li > a
Congo Brazzaville ul > b > li > a
Congo, DR ul > b > li > a
Costa Rica ul > b > li > a
Croatia ul > b > li > a
Cuba ul > b > li > a
Cyprus ul > b > li > a
Czech Rep ul > b > li > a
Denmark ul > b > li > a
Dominica ul > b > li > a
Dominican Republic ul > b > li > a
Djibouti ul > b > li > a
Ecuador ul > b > li > a
Egypt ul > b > li > a
El Salvador ul > b > li > a
Equatorial Guinea ul > b > li > a
Eritrea ul > b > li > a
Estonia ul > b > li > a
Ethiopia ul > b > li > a
Fiji ul > b > li > a
Finland ul > b > li > a
France ul > b > li > a
Gabon ul > b > li > a
Gambia, The ul > b > li > a
Georgia ul > b > li > a
Germany ul > b > li > a
Ghana ul > b > li > a
Greece ul > b > li > a
Grenada ul > b > li > a
Guatemala ul > b > li > a
Guinea ul > b > li > a
Guinea-Bissau ul > b > li > a
Guyana ul > b > li > a
Haiti ul > b > li > a
Honduras ul > b > li > a
Hungary ul > b > li > a
Iceland ul > b > li > a
India ul > b > li > a
Indonesia ul > b > li > a
Iran ul > b > li > a
Iraq ul > b > li > a
Israel ul > b > li > a
Ireland ul > b > li > a
Italy ul > b > li > a
Ivory Coast ul > b > li > a
Jamaica ul > b > li > a
Japan ul > b > li > a
Jordan ul > b > li > a
Kazakhstan ul > b > li > a
Kenya ul > b > li > a
Kiribati ul > b > li > a
Kosovo ul > b > li > a
Kuwait ul > b > li > a
Kyrgyzstan ul > b > li > a
Laos ul > b > li > a
Latvia ul > b > li > a
Lebanon ul > b > li > a
Lesotho ul > b > li > a
Liberia ul > b > li > a
Libya ul > b > li > a
Lichtenstein ul > b > li > a
Lithuania ul > b > li > a
Luxembourg ul > b > li > a
Macedonia ul > b > li > a
Madagascar ul > b > li > a
Malaysia ul > b > li > a
Malawi ul > b > li > a
Maldives ul > b > li > a
Mali ul > b > li > a
Malta ul > b > li > a
Marshall Islands (RMI) ul > b > li > a
Mauritania ul > b > li > a
Mauritius ul > b > li > a
Mexico ul > b > li > a
Micronesia [FSM] ul > b > li > a
Moldova ul > b > li > a
Monaco ul > b > li > a
Mongolia ul > b > li > a
Montenegro ul > b > li > a
Morocco ul > b > li > a
Mozambique ul > b > li > a
Myanmar ul > b > li > a
Namibia ul > b > li > a
Nauru ul > b > li > a
Nepal ul > b > li > a
Netherlands ul > b > li > a
New Zealand ul > b > li > a
Nicaragua ul > b > li > a
Niger ul > b > li > a
Nigeria ul > b > li > a
North Korea ul > b > li > a
Norway ul > b > li > a
Oman ul > b > li > a
Pakistan ul > b > li > a
Palau ul > b > li > a
Palestine ul > b > li > a
Panama ul > b > li > a
Papua New Guinea ul > b > li > a
Paraguay ul > b > li > a
Peru ul > b > li > a
Philippines ul > b > li > a
Poland ul > b > li > a
Portugal ul > b > li > a
Qatar ul > b > li > a
Romania ul > b > li > a
Russia ul > b > li > a
Rwanda ul > b > li > a
Saint Kitts & Nevis ul > b > li > a
Saint Lucia ul > b > li > a
Saint Vincent ul > b > li > a
Samoa [Western] ul > b > li > a
San Marino ul > b > li > a
Sao Tome & Principe ul > b > li > a
Saudi Arabia ul > b > li > a
Senegal ul > b > li > a
Serbia ul > b > li > a
Seychelles ul > b > li > a
Sierra Leone ul > b > li > a
Singapore ul > b > li > a
Slovakia ul > b > li > a
Slovenia ul > b > li > a
Solomon Islands ul > b > li > a
Somalia ul > b > li > a
South Africa ul > b > li > a
South Korea ul > b > li > a
South Sudan ul > b > li > a
Spain ul > b > li > a
Sri Lanka ul > b > li > a
Sudan ul > b > li > a
Suriname ul > b > li > a
eSwatini Swaziland ul > b > li > a
Swaziland b > li > a > strike
Sweden ul > b > li > a
Switzerland ul > b > li > a
Syria ul > b > li > a
Taiwan ul > b > li > a
Tajikistan ul > b > li > a
Tanzania ul > b > li > a
Thailand ul > b > li > a
Timor Leste ul > b > li > a
Tonga ul > b > li > a
Togo ul > b > li > a
Trinidad & Tobago ul > b > li > a
Tunisia ul > b > li > a
Türkiye ul > b > li > a
Tuvalu ul > b > li > a
Turkmenistan ul > b > li > a
Uganda ul > b > li > a
Ukraine ul > b > li > a
UAE ul > b > li > a
United Kingdom ul > b > li > a
Uruguay ul > b > li > a
US of A ul > b > li > a
Uzbekistan ul > b > li > a
Vanuatu ul > b > li > a
Vatican ul > b > li > a
Venezuela ul > b > li > a
Vietnam ul > b > li > a
Yemen ul > b > li > a
Zambia ul > b > li > a
Zimbabwe ul > b > li > a
Rohingya Genocide tbody > tr > td > a
Uighur Genocide tbody > tr > td > a
Sudan Genocide tbody > tr > td > a
Election 2026 a > b > big > big
Civil War II a > b > big > big
War Between the States II a > b > big > big
Privacy Policy body.stretched > div#wrapper > p > a
Privacy Policy body.stretched > div#wrapper > p > a

These are opportunities to improve the legibility of your content.

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
td > div > a > img td > div > a > img
td > div > a > img td > div > a > img
td > div > a > img td > div > a > img

Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div#browsi_wrapper_1_ai_1_rc_0 > div#browsi_ad_1_ai_1_rc_0 > div#_fs-ad-iframe-container > iframe#_fs-ad-1040b0cd3369f3d div#browsi_wrapper_1_ai_1_rc_0 > div#browsi_ad_1_ai_1_rc_0 > div#_fs-ad-iframe-container > iframe#_fs-ad-1040b0cd3369f3d

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.

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Ground Systems Warships Aircraft Missiles Directed Energy Special Weapons Intel… tbody > tr > td > h3

These are opportunities to improve keyboard navigation in your application.

Tables and lists

Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Afghanistan Albania Algeria Andora Angola Antigua & Barbuda Argentina Armenia A… tbody > tr > td > ul
C.A.R. Chad Chile China Colombia Comoros Congo Brazzaville Congo, DR Costa Rica… tbody > tr > td > ul
Greece Grenada Guatemala Guinea Guinea-Bissau Guyana Haiti Honduras Hungary Ice… tbody > tr > td > ul
Lichtenstein Lithuania Luxembourg Macedonia Madagascar Malaysia Malawi Maldives… tbody > tr > td > ul
Pakistan Palau Palestine Panama Papua New Guinea Paraguay Peru Philippines Pola… tbody > tr > td > ul
Spain Sri Lanka Sudan Suriname eSwatini Swaziland Sweden Switzerland Syria Taiw… tbody > tr > td > ul

Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Afghanistan td > ul > b > li
Albania td > ul > b > li
Algeria td > ul > b > li
Andora td > ul > b > li
Angola td > ul > b > li
Antigua & Barbuda td > ul > b > li
Argentina td > ul > b > li
Armenia td > ul > b > li
Australia td > ul > b > li
Austria td > ul > b > li
Azerbaijan td > ul > b > li
Bahamas, The td > ul > b > li
Bahrain td > ul > b > li
Bangladesh td > ul > b > li
Barbados td > ul > b > li
Belarus td > ul > b > li
Belgium td > ul > b > li
Belize td > ul > b > li
Benin td > ul > b > li
Bhutan td > ul > b > li
Bolivia td > ul > b > li
Bosnia td > ul > b > li
Botswana td > ul > b > li
Brazil td > ul > b > li
Brunei td > ul > b > li
Bulgaria td > ul > b > li
Burkina Faso td > ul > b > li
Burundi td > ul > b > li
Cabo Verde td > ul > b > li
Cameroon td > ul > b > li
Cambodia td > ul > b > li
Canada td > ul > b > li
C.A.R. td > ul > b > li
Chad td > ul > b > li
Chile td > ul > b > li
China td > ul > b > li
Colombia td > ul > b > li
Comoros td > ul > b > li
Congo Brazzaville td > ul > b > li
Congo, DR td > ul > b > li
Costa Rica td > ul > b > li
Croatia td > ul > b > li
Cuba td > ul > b > li
Cyprus td > ul > b > li
Czech Rep td > ul > b > li
Denmark td > ul > b > li
Dominica td > ul > b > li
Dominican Republic td > ul > b > li
Djibouti td > ul > b > li
Ecuador td > ul > b > li
Egypt td > ul > b > li
El Salvador td > ul > b > li
Equatorial Guinea td > ul > b > li
Eritrea td > ul > b > li
Estonia td > ul > b > li
Ethiopia td > ul > b > li
Fiji td > ul > b > li
Finland td > ul > b > li
France td > ul > b > li
Gabon td > ul > b > li
Gambia, The td > ul > b > li
Georgia td > ul > b > li
Germany td > ul > b > li
Ghana td > ul > b > li
Greece td > ul > b > li
Grenada td > ul > b > li
Guatemala td > ul > b > li
Guinea td > ul > b > li
Guinea-Bissau td > ul > b > li
Guyana td > ul > b > li
Haiti td > ul > b > li
Honduras td > ul > b > li
Hungary td > ul > b > li
Iceland td > ul > b > li
India td > ul > b > li
Indonesia td > ul > b > li
Iran td > ul > b > li
Iraq td > ul > b > li
Israel td > ul > b > li
Ireland td > ul > b > li
Italy td > ul > b > li
Ivory Coast td > ul > b > li
Jamaica td > ul > b > li
Japan td > ul > b > li
Jordan td > ul > b > li
Kazakhstan td > ul > b > li
Kenya td > ul > b > li
Kiribati td > ul > b > li
Kosovo td > ul > b > li
Kuwait td > ul > b > li
Kyrgyzstan td > ul > b > li
Laos td > ul > b > li
Latvia td > ul > b > li
Lebanon td > ul > b > li
Lesotho td > ul > b > li
Liberia td > ul > b > li
Libya td > ul > b > li
Lichtenstein td > ul > b > li
Lithuania td > ul > b > li
Luxembourg td > ul > b > li
Macedonia td > ul > b > li
Madagascar td > ul > b > li
Malaysia td > ul > b > li
Malawi td > ul > b > li
Maldives td > ul > b > li
Mali td > ul > b > li
Malta td > ul > b > li
Marshall Islands (RMI) td > ul > b > li
Mauritania td > ul > b > li
Mauritius td > ul > b > li
Mexico td > ul > b > li
Micronesia [FSM] td > ul > b > li
Moldova td > ul > b > li
Monaco td > ul > b > li
Mongolia td > ul > b > li
Montenegro td > ul > b > li
Morocco td > ul > b > li
Mozambique td > ul > b > li
Myanmar td > ul > b > li
Namibia td > ul > b > li
Nauru td > ul > b > li
Nepal td > ul > b > li
Netherlands td > ul > b > li
New Zealand td > ul > b > li
Nicaragua td > ul > b > li
Niger td > ul > b > li
Nigeria td > ul > b > li
North Korea td > ul > b > li
Norway td > ul > b > li
Oman td > ul > b > li
Pakistan td > ul > b > li
Palau td > ul > b > li
Palestine td > ul > b > li
Panama td > ul > b > li
Papua New Guinea td > ul > b > li
Paraguay td > ul > b > li
Peru td > ul > b > li
Philippines td > ul > b > li
Poland td > ul > b > li
Portugal td > ul > b > li
Qatar td > ul > b > li
Romania td > ul > b > li
Russia td > ul > b > li
Rwanda td > ul > b > li
Saint Kitts & Nevis td > ul > b > li
Saint Lucia td > ul > b > li
Saint Vincent td > ul > b > li
Samoa [Western] td > ul > b > li
San Marino td > ul > b > li
Sao Tome & Principe td > ul > b > li
Saudi Arabia td > ul > b > li
Senegal td > ul > b > li
Serbia td > ul > b > li
Seychelles td > ul > b > li
Sierra Leone td > ul > b > li
Singapore td > ul > b > li
Slovakia td > ul > b > li
Slovenia td > ul > b > li
Solomon Islands td > ul > b > li
Somalia td > ul > b > li
South Africa td > ul > b > li
South Korea td > ul > b > li
South Sudan td > ul > b > li
Spain td > ul > b > li
Sri Lanka td > ul > b > li
Sudan td > ul > b > li
Suriname td > ul > b > li
eSwatini Swaziland td > ul > b > li
Sweden td > ul > b > li
Switzerland td > ul > b > li
Syria td > ul > b > li
Taiwan td > ul > b > li
Tajikistan td > ul > b > li
Tanzania td > ul > b > li
Thailand td > ul > b > li
Timor Leste td > ul > b > li
Tonga td > ul > b > li
Togo td > ul > b > li
Trinidad & Tobago td > ul > b > li
Tunisia td > ul > b > li
Türkiye td > ul > b > li
Tuvalu td > ul > b > li
Turkmenistan td > ul > b > li
Uganda td > ul > b > li
Ukraine td > ul > b > li
UAE td > ul > b > li
United Kingdom td > ul > b > li
Uruguay td > ul > b > li
US of A td > ul > b > li
Uzbekistan td > ul > b > li
Vanuatu td > ul > b > li
Vatican td > ul > b > li
Venezuela td > ul > b > li
Vietnam td > ul > b > li
Yemen td > ul > b > li
Zambia td > ul > b > li
Zimbabwe td > ul > b > li

These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Albania ul > b > li > a
Algeria ul > b > li > a
Andora ul > b > li > a
Angola ul > b > li > a
Argentina ul > b > li > a
Armenia ul > b > li > a
Australia ul > b > li > a
Austria ul > b > li > a
Azerbaijan ul > b > li > a
Bahamas, The ul > b > li > a
Bangladesh ul > b > li > a
Barbados ul > b > li > a
Belarus ul > b > li > a
Belgium ul > b > li > a
Belize ul > b > li > a
Benin ul > b > li > a
Bhutan ul > b > li > a
Bolivia ul > b > li > a
Bosnia ul > b > li > a
Botswana ul > b > li > a
Brazil ul > b > li > a
Brunei ul > b > li > a
Bulgaria ul > b > li > a
Burundi ul > b > li > a
Cabo Verde ul > b > li > a
Cameroon ul > b > li > a
Cambodia ul > b > li > a
Canada ul > b > li > a
C.A.R. ul > b > li > a
Chad ul > b > li > a
Chile ul > b > li > a
China ul > b > li > a
Colombia ul > b > li > a
Comoros ul > b > li > a
Congo, DR ul > b > li > a
Costa Rica ul > b > li > a
Croatia ul > b > li > a
Cuba ul > b > li > a
Cyprus ul > b > li > a
Czech Rep ul > b > li > a
Denmark ul > b > li > a
Dominica ul > b > li > a
Djibouti ul > b > li > a
Ecuador ul > b > li > a
Egypt ul > b > li > a
Eritrea ul > b > li > a
Estonia ul > b > li > a
Ethiopia ul > b > li > a
Finland ul > b > li > a
France ul > b > li > a
Gabon ul > b > li > a
Georgia ul > b > li > a
Germany ul > b > li > a
Ghana ul > b > li > a
Greece ul > b > li > a
Grenada ul > b > li > a
Guatemala ul > b > li > a
Guyana ul > b > li > a
Haiti ul > b > li > a
Honduras ul > b > li > a
Hungary ul > b > li > a
Iceland ul > b > li > a
India ul > b > li > a
Iran ul > b > li > a
Iraq ul > b > li > a
Israel ul > b > li > a
Ireland ul > b > li > a
Italy ul > b > li > a
Ivory Coast ul > b > li > a
Jamaica ul > b > li > a
Japan ul > b > li > a
Jordan ul > b > li > a
Kenya ul > b > li > a
Kiribati ul > b > li > a
Kosovo ul > b > li > a
Kuwait ul > b > li > a
Laos ul > b > li > a
Latvia ul > b > li > a
Lebanon ul > b > li > a
Lesotho ul > b > li > a
Liberia ul > b > li > a
Libya ul > b > li > a
Lichtenstein ul > b > li > a
Lithuania ul > b > li > a
Luxembourg ul > b > li > a
Macedonia ul > b > li > a
Madagascar ul > b > li > a
Malaysia ul > b > li > a
Malawi ul > b > li > a
Maldives ul > b > li > a
Mali ul > b > li > a
Malta ul > b > li > a
Mauritania ul > b > li > a
Mauritius ul > b > li > a
Mexico ul > b > li > a
Moldova ul > b > li > a
Monaco ul > b > li > a
Mongolia ul > b > li > a
Montenegro ul > b > li > a
Morocco ul > b > li > a
Mozambique ul > b > li > a
Myanmar ul > b > li > a
Namibia ul > b > li > a
Nauru ul > b > li > a
Nepal ul > b > li > a
Netherlands ul > b > li > a
New Zealand ul > b > li > a
Nicaragua ul > b > li > a
Niger ul > b > li > a
Nigeria ul > b > li > a
Norway ul > b > li > a
Oman ul > b > li > a
Pakistan ul > b > li > a
Palau ul > b > li > a
Palestine ul > b > li > a
Panama ul > b > li > a
Poland ul > b > li > a
Portugal ul > b > li > a
Qatar ul > b > li > a
Romania ul > b > li > a
Russia ul > b > li > a
Rwanda ul > b > li > a
Saint Lucia ul > b > li > a
Saint Vincent ul > b > li > a
Senegal ul > b > li > a
Serbia ul > b > li > a
Seychelles ul > b > li > a
Sierra Leone ul > b > li > a
Singapore ul > b > li > a
Slovakia ul > b > li > a
Slovenia ul > b > li > a
South Africa ul > b > li > a
South Korea ul > b > li > a
South Sudan ul > b > li > a
Spain ul > b > li > a
Sri Lanka ul > b > li > a
Sudan ul > b > li > a
Suriname ul > b > li > a
eSwatini Swaziland ul > b > li > a
Syria ul > b > li > a
Taiwan ul > b > li > a
Tajikistan ul > b > li > a
Tanzania ul > b > li > a
Thailand ul > b > li > a
Timor Leste ul > b > li > a
Tonga ul > b > li > a
Togo ul > b > li > a
Tunisia ul > b > li > a
Türkiye ul > b > li > a
Tuvalu ul > b > li > a
Uganda ul > b > li > a
Ukraine ul > b > li > a
UAE ul > b > li > a
Uruguay ul > b > li > a
US of A ul > b > li > a
Uzbekistan ul > b > li > a
Vanuatu ul > b > li > a
Vatican ul > b > li > a
Venezuela ul > b > li > a
Vietnam ul > b > li > a
Yemen ul > b > li > a
Zambia ul > b > li > a
Zimbabwe ul > b > li > a
Site Map div.col_two_third > div.col_one_third > div.widget > a
Privacy div.col_two_third > div.col_one_third > div.widget > a
Copyright div.col_two_third > div.col_one_third > div.widget > a

One main landmark helps screen reader users navigate a web page. Learn more about landmarks.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
html html

These items highlight common accessibility best practices.

Screen readers have features to make navigating tables easier. Ensuring that tables use the actual caption element instead of cells with the `[colspan]` attribute may improve the experience for screen reader users. Learn more about captions.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
GlobalSecurity.org is the leading source for reliable security news and militar… body.stretched > div#wrapper > div > table

Screen readers have features to make navigating tables easier. Ensuring that `<td>` elements in a large table (3 or more cells in width and height) have an associated table header may improve the experience for screen reader users. Learn more about table headers.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
All Source Global Coverage Latest News Updates Iran Daily Summary The… body.stretched > div#wrapper > div > table
Interactive controls are keyboard focusable
Interactive elements indicate their purpose and state
The page has a logical tab order
Visual order on the page follows DOM order
User focus is not accidentally trapped in a region
The user's focus is directed to new content added to the page
HTML5 landmark elements are used to improve navigation
Offscreen content is hidden from assistive technology
Custom controls have associated labels
Custom controls have ARIA roles
`[aria-*]` attributes match their roles
`[aria-hidden="true"]` is not present on the document `<body>`
`[aria-*]` attributes have valid values
`[aria-*]` attributes are valid and not misspelled
Buttons have an accessible name
`[user-scalable="no"]` is not used in the `<meta name="viewport">` element and the `[maximum-scale]` attribute is not less than 5.
ARIA attributes are used as specified for the element's role
Elements use only permitted ARIA attributes
Document has a `<title>` element
`<html>` element has a `[lang]` attribute
`<html>` element has a valid value for its `[lang]` attribute
Links are distinguishable without relying on color.
Links have a discernible name
No element has a `[tabindex]` value greater than 0
Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table.
`<video>` elements contain a `<track>` element with `[kind="captions"]`
Image elements do not have `[alt]` attributes that are redundant text.
`[accesskey]` values are unique
`button`, `link`, and `menuitem` elements have accessible names
Deprecated ARIA roles were not used
Elements with `role="dialog"` or `role="alertdialog"` have accessible names.
`[aria-hidden="true"]` elements do not contain focusable descendents
ARIA input fields have accessible names
ARIA `meter` elements have accessible names
ARIA `progressbar` elements have accessible names
`[role]`s have all required `[aria-*]` attributes
Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children.
`[role]`s are contained by their required parent element
`[role]` values are valid
Elements with the `role=text` attribute do not have focusable descendents.
ARIA toggle fields have accessible names
ARIA `tooltip` elements have accessible names
ARIA `treeitem` elements have accessible names
The page contains a heading, skip link, or landmark region
`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements.
Definition list items are wrapped in `<dl>` elements
ARIA IDs are unique
No form fields have multiple labels
`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute.
Input buttons have discernible text.
`<input type="image">` elements have `[alt]` text
Form elements have associated labels
The document does not use `<meta http-equiv="refresh">`
`<object>` elements have alternate text
Select elements have associated label elements.
Skip links are focusable.
`<th>` elements and elements with `[role="columnheader"/"rowheader"]` have data cells they describe.
`[lang]` attributes have a valid value
Tables have different content in the summary attribute and `<caption>`.
All heading elements contain content.
Uses ARIA roles only on compatible elements
Identical links have the same purpose.
Elements with visible text labels have matching accessible names.
A
Heading Hierarchy
7 headings, 1 skip(s)
PASS
7 headings, 1 skip(s)
Info::
Single H1 present
Warning::
Heading level skipped: H1 → H3 (missing H2)
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
  • H3 GlobalSecurity.org is the leading source for reliable security news and military information.
  • H1 USofA Europe China Russia India Japan
  • H3 Ground Systems Warships Aircraft Missiles Directed Energy Special Weapons Intelligence Systems Space Systems skipped
  • H2 The World At War
  • H3 Para-Military Groups
  • H4 Contact us
  • H3 ISSN 2769-8947

Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.

Why this matters

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

All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback