Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FLink & Button QualityAction10 issue(s) across 89 links and 8 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://members.mindtools.com/login | (empty) | empty | Add link text or aria-label |
| /search-results | (empty) | empty | Add link text or aria-label |
| https://members.mindtools.com/login | (empty) | empty | Add link text or aria-label |
| /search-results | (empty) | empty | Add link text or aria-label |
| https://members.mindtools.com/login | (empty) | empty | Add link text or aria-label |
| /individuals | For Individuals | new tab | Add '(opens in new tab)' to text |
| /organizations | For Organizations | new tab | Add '(opens in new tab)' to text |
| /individuals | For Individuals | new tab | Add '(opens in new tab)' to text |
| /organizations | For Organizations | new tab | Add '(opens in new tab)' to text |
| #learn-more | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: #Learn More | |||
| https://www.facebook.com/mindtoolskineo | Visit our Facebook page | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/Mind_Tools | Visit our X page | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/mindtoo… | Visit our LinkedIn page | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/mindtools_kine… | Visit our Instagram page | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/c/MindToolsVids | Visit our YouTube channel | 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 |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://members.mindtools.com/login; /search-results; https://members.mindtools.com/login; /search-results; https://members.mindtools.com/login
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.
#learn-more ("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
Add '(opens in new tab)' to link text or aria-label.
/individuals; /organizations; /individuals; /organizations; https://www.facebook.com/mindtoolskineo; https://twitter.com/Mind_Tools; https://www.linkedin.com/company/mindtools-kineo; https://www.instagram.com/mindtools_kineo/; https://www.youtube.com/c/MindToolsVids
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.js-expander (#134 on page); button.js-expander (#158 on page); button.js-expander (#174 on page); button.js-expander (#192 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
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure3 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
BHeading Hierarchy18 headingsREVIEW
- H3 Refresh your skills
- H3 Which Tier are you?
- H3 7 day free trial
- H2 Better managers, stronger teams, lasting success.
- H2 Better managers, stronger teams, lasting success.
- H2 Personal growth with purpose.
- H3 Join thousands of employees in hundreds of companies flourishing at work.
- H2 Meaningful change starts here.
- H2 Introducing the M: Suite
- H2 Develop your skills. Grow your career.
- H2 Engaging non-desktop workers in learning
- H2 Proven impact, straight from our clients
- H2 Latest Research Report
- H2 Sign up to our newsletter
- H3 Useful Links
- H3 Solutions
- H3 Products & Services
- H4 Sign up today and enjoy 7 days free!
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
CAlt Text QualityAction23 of 33 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 23 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
BForm Accessibility3 of 3 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| s | text | (Search our Content Hub) | placeholder only |
| s | text | (Search our Content Hub) | placeholder only |
| (Your email) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="s">; <input type="text" name="s">; <input type="email" name="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
B404 Error PageHTTP 404, custom pageREVIEW
BFavicon & Branding7 icon(s) detectedREVIEW
BColor Contrast (Screenshot)20 text elements analyzed, 0 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 Better managers, str… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Better managers, str… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Personal growth with | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Meaningful change st… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Introducing the | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Develop your skills. | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Grow your career. | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Engaging non-desktop… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Proven impact, strai… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Latest Research Repo… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h2 Sign up to our newsl… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h3 Refresh your skills | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h3 Which Tier are you? | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h3 7 day free trial | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h3 Join thousands of em… | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h3 Useful Links | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h3 Solutions | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| h3 Products & Services | 5.24:1 | 3.0:1 | #000000 | #7F7F7F | Pass |
| title Leadership & Managem… | 4.83:1 | 4.5:1 | #000000 | #7F7967 | Pass |
| span Start 7-Day Free Tri… | 5.09:1 | 4.5:1 | #000000 | #7F7D75 | 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.
BLighthouse Accessibility AuditsScore 88/100 — 3 failing, 26 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.
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 |
|---|
ul.bb-unstyled > li.menu-item > a > button.js-expander ul.bb-unstyled > li.menu-item > a > button.js-expander |
ul.bb-unstyled > li.menu-item > a > button.js-expander ul.bb-unstyled > li.menu-item > a > button.js-expander |
ul.bb-unstyled > li.menu-item > a.js-expander-proxy > button.js-expander ul.bb-unstyled > li.menu-item > a.js-expander-proxy > button.js-expander |
ul.bb-unstyled > li.menu-item > a.js-expander-proxy > button.js-expander ul.bb-unstyled > li.menu-item > a.js-expander-proxy > button.js-expander |
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.bb-header > div.bb-header__right > div > a.bb-search-header-toggle div.bb-header > div.bb-header__right > div > a.bb-search-header-toggle |
div.bb-header > div.bb-header__right > div > a.bb-profile div.bb-header > div.bb-header__right > div > a.bb-profile |
header.header > div.bb-header > div.bb-header__right__mobile > a.bb-search-header-toggle header.header > div.bb-header > div.bb-header__right__mobile > a.bb-search-header-toggle |
header.header > div.bb-header > div.bb-header__right__mobile > a.bb-profile header.header > div.bb-header > div.bb-header__right__mobile > a.bb-profile |
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
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 |
|---|
Go to slide 1 div.bb-service-promo-slider > div.bb-service-promo-slider--sliders > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div.bb-service-promo-slider > div.bb-service-promo-slider--sliders > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 div.bb-service-promo-slider > div.bb-service-promo-slider--sliders > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 1 div#bb-testimonial-carousel-1418656921 > div.bb-testimonial-carousel__swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div#bb-testimonial-carousel-1418656921 > div.bb-testimonial-carousel__swiper > div.swiper-pagination > span.swiper-pagination-bullet |
FAQs div.menu-footer-useful-links-container > ul#menu-footer-useful-links > li#menu-item-43627 > a |
Talk to the Team div.menu-footer-useful-links-container > ul#menu-footer-useful-links > li#menu-item-42021 > a |
Subscribe to Mindtools div.menu-footer-useful-links-container > ul#menu-footer-useful-links > li#menu-item-42049 > a |
Contact Us div.menu-footer-useful-links-container > ul#menu-footer-useful-links > li#menu-item-43628 > a |
Join the Team div.menu-footer-useful-links-container > ul#menu-footer-useful-links > li#menu-item-43771 > a |
Organizations div.menu-footer-solutions-container > ul#menu-footer-solutions > li#menu-item-61701 > a |
Individuals div.menu-footer-solutions-container > ul#menu-footer-solutions > li#menu-item-43634 > a |
For Partners div.menu-footer-solutions-container > ul#menu-footer-solutions > li#menu-item-43632 > a |
For Public Sector div.menu-footer-solutions-container > ul#menu-footer-solutions > li#menu-item-43633 > a |
Ask M: Coach div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60847 > a |
AI Skills Practice div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60858 > a |
Content Hub div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60853 > a |
The Content Hub div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60851 > a |
Custom Learning div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60862 > a |
Insights and Analyst Services div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60861 > a |
Ask M Coach div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60854 > a |
Manager Skills Assessment div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60857 > a |
Manager Skill Builder div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60859 > a |
Off the Shelf div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60856 > a |
Onboarding & Support div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60860 > a |
Playlists div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60848 > a |
Quizzes div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60849 > a |
Skill Bites div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60850 > a |
Workshops div.menu-footer-products-services-container > ul#menu-footer-products-services > li#menu-item-60855 > a |
Mindtools Policies div.bb-footer__sole-menu > ul.bb-unstyled > li.menu-item > a |
Terms of Website Sale div.bb-footer__sole-menu > ul.bb-unstyled > li.menu-item > a |
Privacy Policy div.bb-footer__sole-menu > ul.bb-unstyled > li.menu-item > a |
Cookie Policy div.bb-footer__sole-menu > ul.bb-unstyled > li.menu-item > a |
These items highlight common accessibility best practices.