Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FLink & Button QualityAction16 issue(s) across 152 links and 28 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.ted.com/about/our-organizati… | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://geni.us/oQY0y?utm_content=spotli… | (empty) | empty | Add link text or aria-label |
| https://giving.ted.com/page/tedmember?ut… | (empty) | empty | Add link text or aria-label |
| /talks/undefined | NaN min | img no alt | Add alt attribute to the image |
| /talks?sort=newest&topics%5B0%5D=undefin… | (empty) | empty | Add link text or aria-label |
| https://www.ted.com/ | Test sponsored by | img no alt | Add alt attribute to the image |
| https://www.ted.com/about?utm_medium=web… | Ideas change everything. | new tab | Add '(opens in new tab)' to text |
| https://www.ted.com/about?utm_medium=web… | Learn more about TED | new tab | Add '(opens in new tab)' to text |
| https://www.ted.com/about?utm_medium=web… | (empty) | empty | Add link text or aria-label |
| /talks?sort=newest&topics%5B0%5D=undefin… | (empty) | empty | Add link text or aria-label |
| /talks?sort=newest&topics%5B0%5D=undefin… | (empty) | empty | Add link text or aria-label |
| /talks?sort=newest&topics%5B0%5D=undefin… | (empty) | empty | Add link text or aria-label |
| https://www.linkedin.com/company/ted-con… | (empty) | empty | Add link text or aria-label |
| https://twitter.com/tedtalks | (empty) | empty | Add link text or aria-label |
| https://instagram.com/ted | (empty) | empty | Add link text or aria-label |
| https://www.youtube.com/ted | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/TED | (empty) | empty | Add link text or aria-label |
| https://play.google.com/store/apps/detai… | (empty) | empty | Add link text or aria-label |
| https://play.google.com/store/apps/detai… | (empty) | empty | Add link text or aria-label |
| <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://geni.us/oQY0y?utm_content=spotlight_knowledge; https://giving.ted.com/page/tedmember?utm_medium=website&utm_source=spotlight…; /talks?sort=newest&topics%5B0%5D=undefined; https://www.ted.com/about?utm_medium=website&utm_source=homepage-spotlight_da…; /talks?sort=newest&topics%5B0%5D=undefined; /talks?sort=newest&topics%5B0%5D=undefined; /talks?sort=newest&topics%5B0%5D=undefined; https://www.linkedin.com/company/ted-conferences/; https://twitter.com/tedtalks; https://instagram.com/ted (+4 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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="/talks/undefined"]; a[href="https://www.ted.com/"]
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.
https://www.ted.com/about/our-organization/our-policies-terms/privacy-policy; https://www.ted.com/about?utm_medium=website&utm_source=homepage-spotlight_da…; https://www.ted.com/about?utm_medium=website&utm_source=homepage-spotlight_da…
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.group (#376 on page); button.group (#380 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
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure8 landmarksREVIEW
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
BHeading Hierarchy2 headingsREVIEW
- H3 Newsletters
- H3 Newsletters
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
BAlt Text Quality1 of 27 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 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
An image inside a link with no alt creates an empty link.
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
BForm Accessibility2 of 7 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #osano-cm-dialog-toggle--category_STORAGE | checkbox | none | |
| #osano-cm-dialog-toggle--category_MARKETING | checkbox | none | |
| #osano-cm-dialog-toggle--category_PERSONALIZATION | checkbox | none | |
| #osano-cm-dialog-toggle--category_ANALYTICS | checkbox | none | |
| #navigation-search | search | Type to search | aria-label |
| #newsletter-email | (What's your email?) | placeholder only | |
| input | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input name="email">
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" id="newsletter-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
C404 Error PageActionHTTP 404, custom pageREVIEW
CFavicon & BrandingAction5 icon(s) detectedREVIEW
CLighthouse Accessibility AuditsActionScore 76/100 — 6 failing, 24 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.
ARIA
ARIA dialog elements without accessible names may prevent screen readers users from discerning the purpose of these elements. Learn how to make ARIA dialog elements more accessible.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
A challenge for your brain
Daily word, logic, and strategy games that push your… body.antialiased > section#sailthru-overlay-container |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Names and labels
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#hero-slider-images > div.cloned-standard-hero-slider-nav-prev > div.absolute > button.group div#hero-slider-images > div.cloned-standard-hero-slider-nav-prev > div.absolute > button.group |
div#hero-slider-images > div.cloned-standard-hero-slider-nav-next > div.absolute > button.group div#hero-slider-images > div.cloned-standard-hero-slider-nav-next > div.absolute > button.group |
div.gencl:absolute > div.gencl:absolute > div.gencl:flex > button.gencl:inline-flex div.gencl:absolute > div.gencl:absolute > div.gencl:flex > button.gencl:inline-flex |
div.gencl:absolute > div.gencl:absolute > div.gencl:flex > button.gencl:inline-flex div.gencl:absolute > div.gencl:absolute > div.gencl:flex > button.gencl:inline-flex |
div.gencl:absolute > div.gencl:absolute > div.gencl:flex > button.gencl:inline-flex div.gencl:absolute > div.gencl:absolute > div.gencl:flex > button.gencl:inline-flex |
body.antialiased > section#sailthru-overlay-container > div.sailthru-overlay > button.sailthru-overlay-close body.antialiased > section#sailthru-overlay-container > div.sailthru-overlay > button.sailthru-overlay-close |
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.flex > div.mb-8 > div.relative > input.newsletter-input div.flex > div.mb-8 > div.relative > input.newsletter-input |
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.mx-auto > div.flex > div.h-100 > a div.mx-auto > div.flex > div.h-100 > a |
div.mx-auto > div.flex > div.h-100 > a div.mx-auto > div.flex > div.h-100 > a |
div.w-full > div > div.mb-2 > a.relative div.w-full > div > div.mb-2 > a.relative |
div.w-full > div > div.mb-2 > a.relative div.w-full > div > div.mb-2 > a.relative |
div.w-full > div > div.mb-2 > a.relative div.w-full > div > div.mb-2 > a.relative |
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
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
head > meta head > meta |
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 |
|---|
Storage Preferences div#befbc0e5-ee15-4e14-8ba1-c77e210294a9 > div.osano-cm-dialog__content > p.osano-cm-content__drawer-links > a.osano-cm-drawer-links__link |
Third Parties div#befbc0e5-ee15-4e14-8ba1-c77e210294a9 > div.osano-cm-dialog__content > p.osano-cm-content__drawer-links > a.osano-cm-drawer-links__link |
LOVE div.flex > div.flex > div.flex > a.relative |
SCIENCE div.flex > div.flex > div.flex > a.relative |
BUSINESS div.flex > div.flex > div.flex > a.relative |
TECHNOLOGY div.flex > div.flex > div.flex > a.relative |
RELATIONSHIPS div.flex > div.flex > div.flex > a.relative |
RELATIONSHIPS div.flex > div.flex > div.flex > a.relative |
HEALTH div.flex > div.grid > div.flex > a.relative |
WAR div.flex > div.grid > div.flex > a.relative |
SCIENCE div.flex > div.grid > div.flex > a.relative |
TECHNOLOGY div.flex > div.grid > div.flex > a.relative |
GLOBAL ISSUES div.flex > div.grid > div.flex > a.relative |
TECHNOLOGY div.flex > div.grid > div.flex > a.relative |
These items highlight common accessibility best 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 |
|---|---|---|---|---|---|
| h3 Newsletters | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Newsletters | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title TED: Ideas change ev… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Opens in a new windo… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Opens an external we… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Opens an external we… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span We and our 19 IAB TC… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Personal data may be… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Our third party IAB … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span You may change your … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span You may close this b… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Privacy Policy | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Storage Preferences | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Third Parties | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Storage | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Targeted Advertising | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Personalization | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Analytics | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| button Save | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| button Accept All | 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.