Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction20 landmarksFIX
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
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
FLink & Button QualityAction10 issue(s) across 224 links and 43 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.hachettebookgroup.com/ | Go to Hachette Book Group home | img no alt | Add alt attribute to the image |
| https://account.hachettebookgroup.com/?l… | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| https://www.hachettebookgroup.com/terms-… | Cookie Policy | new tab | Add '(opens in new tab)' to text |
| https://www.hachettebookgroup.com/terms-… | Privacy Policy. | new tab | Add '(opens in new tab)' to text |
| https://www.hachettebookgroup.com/terms-… | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://www.hachettebookgroup.com/terms-… | Terms of Use | new tab | Add '(opens in new tab)' to text |
| https://www.hachettebookgroup.com/landin… | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Banned Books | |||
| https://www.hachettebookgroup.com/contri… | (empty) | empty | Add link text or aria-label |
| https://www.hachettebookgroup.com/contri… | (empty) | empty | Add link text or aria-label |
| https://www.hachettebookgroup.com/contri… | (empty) | empty | Add link text or aria-label |
| https://www.hachettebookgroup.com/contri… | (empty) | empty | Add link text or aria-label |
| https://hachettespeakersbureau.com/ | Hachette Speakers Bureau | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/HachetteUS/ | new tab | Add '(opens in new tab)' to text | |
| https://x.com/HachetteUS | new tab | Add '(opens in new tab)' to text | |
| https://www.instagram.com/hachetteus/ | new tab | Add '(opens in new tab)' to text | |
| https://www.youtube.com/channel/UCwY9sZF… | YouTube | new tab | Add '(opens in new tab)' to text |
| https://www.tiktok.com/@hachetteus?lang=… | Tiktok | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/hachett… | new tab | Add '(opens in new tab)' to text | |
| https://www.pinterest.com/hachettebookgr… | new tab | Add '(opens in new tab)' to text | |
| https://www.threads.net/@hachetteus | Threads | new tab | Add '(opens in new tab)' to text |
| https://www.hachettebookgroup.com/newsle… | new tab | Add '(opens in new tab)' to text | |
| https://www.hachettebookgroup.com/terms-… | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://www.hachettebookgroup.com/terms-… | Terms of Use | new tab | Add '(opens in new tab)' to text |
| https://www.hbgauthorresources.com/ | Authors & Agents | new tab | Add '(opens in new tab)' to text |
| https://www.hbgresources.com/ | Librarians & Educators | new tab | Add '(opens in new tab)' to text |
| https://www.hachettespeakersbureau.com/ | Hachette Speakers Bureau | new tab | Add '(opens in new tab)' to text |
| https://joinraisingreaders.com/ | Raising Readers | new tab | Add '(opens in new tab)' to text |
| https://hbgusa.zendesk.com/hc/en-us/arti… | Do Not Sell or Share My Person… | 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://account.hachettebookgroup.com/?locale=en®ion_country=US; a (#816 on page); a.menu-bar__imprint-branding (#819 on page); https://www.hachettebookgroup.com/contributor/michael-connelly/; https://www.hachettebookgroup.com/contributor/harlan-coben/; https://www.hachettebookgroup.com/contributor/walter-mosley/; https://www.hachettebookgroup.com/contributor/adalyn-grace/
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.hachettebookgroup.com/landing-page/banned-books/ ("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.hachettebookgroup.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.hachettebookgroup.com/terms-and-policies/hachette-book-group-inc-…; https://www.hachettebookgroup.com/terms-and-policies/privacy-policy/; https://www.hachettebookgroup.com/terms-and-policies/privacy-policy/; https://www.hachettebookgroup.com/terms-and-policies/terms-of-use/; https://hachettespeakersbureau.com/; https://www.facebook.com/HachetteUS/; https://x.com/HachetteUS; https://www.instagram.com/hachetteus/; https://www.youtube.com/channel/UCwY9sZFp4zSC6z8h5LE6m9A; https://www.tiktok.com/@hachetteus?lang=en (+11 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.ai-truncate__button (#122 on page); button.carousel__pagination-button (#125 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 SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
C404 Error PageActionHTTP 404, custom pageREVIEW
BFavicon & Branding4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 15 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
1 contrast failures on background images/gradients
These failures are invisible to CSS-based accessibility tools like Lighthouse. The text may be fine on a solid background, but fails when rendered over an image or gradient.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 Hachette Book Group … | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Promotion | 2.91:1 | 3.0:1 | #000000 | #4D595E | Fail |
| h2 Explore Hachette Boo… | 4.69:1 | 3.0:1 | #000000 | #717975 | Pass |
| h2 Search | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Site Preferences | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Hachette Book Group | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Carousel pagination | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Carousel pagination | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Banned & Challenged … | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Our Authors | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Carousel pagination | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Discover More | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Footer | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h2 Shopping Cart | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| h3 Social Media | 2.77:1 | 3.0:1 | #000000 | #245A70 | Fail |
| title Hachette Book Group | 1.46:1 | 4.5:1 | #000000 | #122D38 | Fail |
| a Use code MOM26 for 2… | 4.65:1 | 4.5:1 | #000000 | #747778 | Pass |
| span Close menu | 4.63:1 | 4.5:1 | #000000 | #707874 | Pass |
| span menu | 4.71:1 | 4.5:1 | #000000 | #727976 | Pass |
| a Genres | 4.69:1 | 4.5:1 | #000000 | #717975 | 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 86/100 — 4 failing, 25 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
Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. Learn more about ARIA roles and required parent element.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
× div#page > div#privacy_collapse > div.panel-body > div#headingOne |
Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more about valid values for ARIA attributes.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
× div.panel-body > div#headingOne > h4.panel-title > button#closePrivacyOptInOut |
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.
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
× div#privacy_collapse > div.panel-body > div#headingOne > h4.panel-title |
These are opportunities to improve keyboard navigation in your application.
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.site-header__main > div.site-header__container > button.user-account__button > a div.site-header__main > div.site-header__container > button.user-account__button > 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.
AHeading Hierarchy22 headings, 1 skip(s)PASS
- H2 Promotion
- H2 Explore Hachette Book Group menu
- H2 Search
- H2 Site Preferences
- H2 Hachette Book Group menu
- H4 × skipped
- H1 Hachette Book Group Homepage
- H2 Inspiring Reads for Autism Awareness Month
- H2 Carousel pagination
- H2 Carousel pagination
- H2 Sign up to receive emails from Hachette Book Group.
- H2 Banned & Challenged Books
- H2 Our Authors
- H2 Carousel pagination
- H2 Discover More
- H2 Footer
- H3 Social Media
- H2 Get recommended reads, deals, and more from Hachette.
- H3 About About
- H3 Resources Resources
- H3 Terms and Policies Terms and Policies
- H2 Shopping Cart
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
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
A+Alt Text QualityAll 116 images OKPASS
A+Form AccessibilityAll 5 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #search-form-25 | search | Search Hachette | for/id |
| #user-preferences-currency-usd | radio | none | |
| #user-preferences-currency-cad | radio | none | |
| #email_01KM0X9F7F2DWDXA0P8XEVCMPK | Your email address | for/id | |
| #email_01KM0WJFVS2C05J0M065BMXB8P | for/id |