Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FForm AccessibilityAction10 of 11 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| select | select | Widget de tradução de idiomas | aria-label |
| #firstname-c93256d8-58e1-4a9f-ac49-d40f2065653e | text | (First Name*) | placeholder only |
| #lastname-c93256d8-58e1-4a9f-ac49-d40f2065653e | text | (Last Name*) | placeholder only |
| #email-c93256d8-58e1-4a9f-ac49-d40f2065653e | (Email Address*) | placeholder only | |
| search-input | text | (Type here to search) | placeholder only |
| input | submit | (none) | none |
| #goog-gt-votingInputSrcLang | text | (none) | none |
| #goog-gt-votingInputTrgLang | text | (none) | none |
| #goog-gt-votingInputSrcText | text | (none) | none |
| #goog-gt-votingInputTrgText | text | (none) | none |
| #goog-gt-votingInputVote | text | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit">; <input type="text" name="sl" id="goog-gt-votingInputSrcLang">; <input type="text" name="tl" id="goog-gt-votingInputTrgLang">; <input type="text" name="query" id="goog-gt-votingInputSrcText">; <input type="text" name="gtrans" id="goog-gt-votingInputTrgText">; <input type="text" name="vote" id="goog-gt-votingInputVote">
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="search-input">; <input type="text" name="firstname" id="firstname-c93256d8-58e1-4a9f-ac49-d40f2065653e">; <input type="text" name="lastname" id="lastname-c93256d8-58e1-4a9f-ac49-d40f2065653e">; <input type="email" name="email" id="email-c93256d8-58e1-4a9f-ac49-d40f2065653e">
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
FLink & Button QualityAction7 issue(s) across 307 links and 8 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.atlanticcouncil.org/blogs/me… | Iran … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/blogs/uk… | Politics & Diplomacy … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/dispatch… | Human rights … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/dispatch… | Europe … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/dispatch… | Dispatches … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/commenta… | Trackers and Data Visualizatio… | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/distingu… | (empty) | empty | Add link text or aria-label |
| https://www.atlanticcouncil.org/programs… | (empty) | empty | Add link text or aria-label |
| https://www.atlanticcouncil.org/podcasts… | (empty) | empty | Add link text or aria-label |
| https://www.atlanticcouncil.org/reimagin… | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Reimagining European Defense And Innovation Task Force | |||
| https://www.atlanticcouncil.org/dispatch… | Dispatches … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/dispatch… | Dispatches … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/content-… | The Big Story … | img no alt | Add alt attribute to the image |
| https://www.atlanticcouncil.org/blogs/uk… | UkraineAlert … | img no alt | Add alt attribute to the image |
| http://twitter.com/atlanticcouncil/ | Follow us on twitter | new tab | Add '(opens in new tab)' to text |
| http://facebook.com/atlanticcouncil/ | Follow us on facebook | new tab | Add '(opens in new tab)' to text |
| http://youtube.com/atlanticcouncil | Follow us on youtube | new tab | Add '(opens in new tab)' to text |
| http://instagram.com/atlanticcouncil/ | Follow us on instagram | new tab | Add '(opens in new tab)' to text |
| http://www.linkedin.com/company/atlantic… | Follow us on linkedin | new tab | Add '(opens in new tab)' to text |
| https://www.whatsapp.com/channel/0029VbA… | Follow us on whatsapp | new tab | Add '(opens in new tab)' to text |
| https://www.atlanticcouncil.org/privacy-… | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://www.atlanticcouncil.org/terms-of… | Terms and Conditions of Use | new tab | Add '(opens in new tab)' to text |
| https://www.atlanticcouncil.org/event/20… | (empty) | empty | Add link text or aria-label |
| https://translate.google.com | Tradutor | 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 |
Links without text are announced as raw URLs by screen readers.
https://www.atlanticcouncil.org/distinguished-leadership-awards/; https://www.atlanticcouncil.org/programs/global-energy-center/global-energy-f…; https://www.atlanticcouncil.org/podcasts/; https://www.atlanticcouncil.org/event/2026-atlantic-council-distinguished-lea…
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
Generic link text like 'click here' doesn't describe the destination.
https://www.atlanticcouncil.org/reimagining-european-defense-and-innovation-t… ("Learn 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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://www.atlanticcouncil.org/blogs/menasource/the-iran-war-has-forced-the-…"]; a[href="https://www.atlanticcouncil.org/blogs/ukrainealert/could-bulgaria-replace-hun…"]; a[href="https://www.atlanticcouncil.org/dispatches/dispatch-from-geneva-uyghur-commun…"]; a[href="https://www.atlanticcouncil.org/dispatches/dispatches-from-the-front-lines-of…"]; a[href="https://www.atlanticcouncil.org/dispatches/twenty-questions-and-expert-answer…"]; a[href="https://www.atlanticcouncil.org/commentary/trackers-and-data-visualizations/t…"]; a[href="https://www.atlanticcouncil.org/dispatches/washington-needs-a-plan-venezuela-…"]; a[href="https://www.atlanticcouncil.org/dispatches/how-the-imf-can-help-venezuela-sta…"]; a[href="https://www.atlanticcouncil.org/content-series/the-big-story/the-coming-compu…"]; a[href="https://www.atlanticcouncil.org/blogs/ukrainealert/recognizing-the-role-of-pr…"]
Image-only links with no alt are unidentifiable to screen-reader users — link's destination is invisible.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
http://twitter.com/atlanticcouncil/; http://facebook.com/atlanticcouncil/; http://youtube.com/atlanticcouncil; http://instagram.com/atlanticcouncil/; http://www.linkedin.com/company/atlantic-council ; https://www.whatsapp.com/channel/0029VbAU03VJkK7En6dvY720; https://www.atlanticcouncil.org/privacy-policy/; https://www.atlanticcouncil.org/terms-of-use/; https://translate.google.com
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.gta-site-nav--search (#657 on page); button.search-submit (#759 on page)
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
F404 Error PageActionSoft 404 detectedFIX
The server returned HTTP 200 for a non-existent path. Search engines will index this page as real content. Configure your server to return HTTP 404 for missing pages.
FWeb ManifestActionInvalid JSONFIX
Manifest contains invalid JSON.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BFavicon & Branding4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 20 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 |
|---|---|---|---|---|---|
| h2 The Iran war has for… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Could Bulgaria repla… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Uyghur communities n… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Dispatches from the … | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Who we are | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 About us | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 The Atlantic imperat… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Staff and fellows wo… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Spotlight | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 War with Iran | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Twenty questions (an… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Tracking US military… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Celebrating Excellen… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Shaping the global e… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 REPORTS FROM THE EXP… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Stream anywhere you … | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Featured project | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Featured interactive | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Support the Atlantic… | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | Fail |
| h2 Watch ACTV | 1.06:1 | 3.0:1 | #000000 | #0A0A0B | 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.
ALandmark Structure4 landmarksPASS
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
A+Heading Hierarchy46 headingsPASS
- H5 Share
- H4 Issue briefs and reports
- H4 Fast Thinking
- H4 Dispatches
- H4 Inflection Points
- H4 UkraineAlert
- H4 MENASource
- H4 Econographics
- H1 Five ideas to make the upcoming NATO Summit in Ankara a success
- H2 The Iran war has forced the US-Gulf alliance out of the shadows
- H2 Could Bulgaria replace Hungary as Putin’s proxy inside the EU?
- H2 Uyghur communities need cross-border protection from China’s ongoing atrocities
- H2 Dispatches from the front lines of Russia-linked cyberattacks on Europe
- H2 Who we are
- H2 About us
- H2 The Atlantic imperative
- H2 Staff and fellows worldwide
- H2 Spotlight
- H2 War with Iran
- H2 Twenty questions (and expert answers) about the Iran war
- H2 Tracking US military assets in the Iran war
- H2 Celebrating Excellence in Leadership
- H3 2026 Atlantic Council Distinguished Leadership Awards
- H2 Shaping the global energy future
- H3 Global Energy Forum
- H2 REPORTS FROM THE EXPERTS SHAPING GLOBAL POLICY
- H2 Stream anywhere you go
- H3 Atlantic Council Podcasts
- H2 Featured project
- H3 Reimagining European Defense and Innovation Task Force
- H2 Featured interactive
- H3 Trump Tariff Tracker
- H2 Support the Atlantic Council
- H2 Watch ACTV
- H2 Our impact
- H3 2024/2025 Annual Report
- H2 Spotlight
- H2 The future of Venezuela
- H2 Washington needs a ‘Plan Venezuela’ before it’s too late
- H2 How the IMF can help Venezuela stabilize its economy
- H2 Spotlight
- H2 Russia's war on Ukraine
- H2 The coming compute war in Ukraine
- H2 Recognizing the role of propaganda in Russia’s infrastructure of aggression
- H3 Follow us on social media
- H4 Join our network
A+Alt Text QualityAll 24 images OKPASS
A+Lighthouse Accessibility AuditsScore 97/100 — 1 failing, 29 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
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.p-page--text > div.wp-block-media-text > figure.wp-block-media-text__media > a div.p-page--text > div.wp-block-media-text > figure.wp-block-media-text__media > a |
div.p-page--text > div.wp-block-media-text > figure.wp-block-media-text__media > a div.p-page--text > div.wp-block-media-text > figure.wp-block-media-text__media > a |
div.p-page--text > div.wp-block-media-text > figure.wp-block-media-text__media > a div.p-page--text > div.wp-block-media-text > figure.wp-block-media-text__media > a |
div.featherlight > div.featherlight-content > div#ac-lightbox > a div.featherlight > div.featherlight-content > div#ac-lightbox > 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.