Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
CAlt Text QualityAction6 of 80 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 1 image(s) |
| generic | 5 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
CForm AccessibilityAction3 of 4 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #search-box | search | Search | aria-label |
| input | submit | (none) | none |
| #privacy_pref_optin | checkbox | (none) | none |
| #privacy_pref_optout | checkbox | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit">; <input type="checkbox" name="privacy_pref_optin" id="privacy_pref_optin">; <input type="checkbox" name="privacy_pref_optout" id="privacy_pref_optout">
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
CLink & Button QualityAction4 issue(s) across 358 links and 23 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| (empty) | empty | Add link text or aria-label | |
| https://www.penguinrandomhouse.com/the-r… | Read More | generic text | Replace with descriptive text |
Before: Read More Suggested: The Most Recent Celebrity Book Club Picks | |||
| https://www.penguinrandomhouse.com/the-r… | Read More | generic text | Replace with descriptive text |
Before: Read More Suggested: The Most Recent Celebrity Book Club Picks | |||
| https://www.facebook.com/PenguinRandomHo… | visit us on facebook | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/penguinrandom | visit us on x.com | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UC4OnzY1… | visit us on youtube | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/penguin… | visit us on linkedin | new tab | Add '(opens in new tab)' to text |
| http://pinterest.com/penguinrandom/ | visit us on pinterest | new tab | Add '(opens in new tab)' to text |
| http://instagram.com/penguinrandomhouse | visit us on instagram | new tab | Add '(opens in new tab)' to text |
| https://global.penguinrandomhouse.com | global.penguinrandomhouse.com | new tab | Add '(opens in new tab)' to text |
| /about-us/our-story/ | Our Story | new tab | Add '(opens in new tab)' to text |
| https://social-impact.penguinrandomhouse… | Social Impact | new tab | Add '(opens in new tab)' to text |
| https://careers.penguinrandomhouse.com | Careers | new tab | Add '(opens in new tab)' to text |
| https://companyreads.prhspeakers.com/ | Company Reads | new tab | Add '(opens in new tab)' to text |
| /faqs/#shopping | Shopping & Shipping FAQ | new tab | Add '(opens in new tab)' to text |
| http://www.penguinrandomhouse.biz/rights… | Subrights | new tab | Add '(opens in new tab)' to text |
| https://permissions.penguinrandomhouse.c… | Permissions | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/PenguinRandomHo… | visit us on facebook | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/penguinrandom | visit us on x.com | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UC4OnzY1… | visit us on youtube | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/penguin… | visit us on linkedin | new tab | Add '(opens in new tab)' to text |
| http://pinterest.com/penguinrandom/ | visit us on pinterest | new tab | Add '(opens in new tab)' to text |
| http://instagram.com/penguinrandomhouse | visit us on instagram | new tab | Add '(opens in new tab)' to text |
| https://global.penguinrandomhouse.com | global.penguinrandomhouse.com | new tab | Add '(opens in new tab)' to text |
| http://www.readbrightly.com/?ref=8229755… | Brightly … | new tab | Add '(opens in new tab)' to text |
| https://outofprint.com/?ref=PRH1921E2841… | Out of Print … | new tab | Add '(opens in new tab)' to text |
| http://www.tastecooking.com/?ref=E8C7796… | TASTE … | new tab | Add '(opens in new tab)' to text |
| https://igloo.penguinrandomhouse.com/hum… | FAQ | new tab | Add '(opens in new tab)' to text |
| https://igloo.penguinrandomhouse.com/hum… | FAQ | new tab | Add '(opens in new tab)' to text |
| (empty) | empty | Add link text or aria-label | |
Links without text are announced as raw URLs by screen readers.
a#home; a (#1500 on page)
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.penguinrandomhouse.com/the-read-down/the-most-recent-celebrity-bo… ("Read More"); https://www.penguinrandomhouse.com/the-read-down/the-most-recent-celebrity-bo… ("Read 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.
https://www.facebook.com/PenguinRandomHouse; https://twitter.com/penguinrandom; https://www.youtube.com/channel/UC4OnzY1OgwUE0XPAHpqlcvQ; https://www.linkedin.com/company/penguin-random-house-publishing; http://pinterest.com/penguinrandom/; http://instagram.com/penguinrandomhouse; https://global.penguinrandomhouse.com; /about-us/our-story/; https://social-impact.penguinrandomhouse.com/; https://careers.penguinrandomhouse.com (+16 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
B404 Error PageHTTP 404, custom pageREVIEW
CFavicon & BrandingAction4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 9 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 |
|---|---|---|---|---|---|
| h1 Must-Read Fiction by… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h1 Cookies and Similar … | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Must-Read Fiction by… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 The Most Recent Cele… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 The Most Recent Cele… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Shop Your Next Book | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Discover Your Next R… | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Categories | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| h2 Success! | 1.00:1 | 3.0:1 | #000000 | #000000 | Fail |
| title Penguin Random House | 17.79:1 | 4.5:1 | #000000 | #FFE8D8 | Pass |
| a Skip to Main Content… | 17.79:1 | 4.5:1 | #000000 | #FFE8D8 | Pass |
| div 📝 Quiz: What Book… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div 📝 Quiz: What Book… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p Books | 11.17:1 | 4.5:1 | #000000 | #B0C1B8 | Pass |
| p Kids | 6.90:1 | 4.5:1 | #000000 | #AA8D8C | Pass |
| p Popular | 6.06:1 | 4.5:1 | #000000 | #A6817D | Pass |
| p Authors & Events | 12.33:1 | 4.5:1 | #000000 | #B0CCC9 | Pass |
| p Recommendations | 5.85:1 | 4.5:1 | #000000 | #A67D7D | Pass |
| p Audio | 7.58:1 | 4.5:1 | #000000 | #AB9793 | Pass |
| div How To Read More Thi… | 15.95:1 | 4.5:1 | #000000 | #F5DCC8 | 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.
A+Landmark Structure6 landmarksPASS
AHeading Hierarchy13 headingsPASS
- H1 Must-Read Fiction by Arab and Arab American Authors
- H2 Must-Read Fiction by Arab and Arab American Authors
- H2 The Most Recent Celebrity Book Club Picks of 2026
- H2 The Most Recent Celebrity Book Club Picks of 2026
- H2 Shop Your Next Book
- H3 new releases
- H3 coming soon
- H3 best sellers
- H3 award winners
- H2 Discover Your Next Read
- H2 Categories
- H2 Success!
- H1 Cookies and Similar Technologies duplicate H1
A page should have only one H1. Multiple H1s dilute the document outline.
Multiple H1s blur the page's primary topic — screen-reader users and Google both prefer one H1.
Learn more ▾ ▴
HTML5's outline algorithm technically allows multiple H1s within sectioning content, but no browser implements it. In practice: one H1 per page. Use H2-H6 for subsections.
Source: WCAG 2.4.6 / Google Search Central
A+Print StylesheetPrint styles detectedPASS
A+Lighthouse Accessibility AuditsScore 96/100 — 2 failing, 27 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.
Navigation
A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more about the `tabindex` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Cookies and Similar Technologies
We, our affiliates, and our providers use coo… body.wp-singular > div#__tealiumGDPRecModal > div#prh_privacy_prompt |
Read More div#prh_privacy_prompt > div.privacy_prompt_content > p#prh_pp_copy > span#strt_inx |
I Decline All Cookies div#__tealiumGDPRecModal > div#prh_privacy_prompt > div.privacy_prompt_footer > div#consent_prompt_decline |
I Agree div#__tealiumGDPRecModal > div#prh_privacy_prompt > div.privacy_prompt_footer > div#consent_prompt_submit |
✕ body.wp-singular > div#__tealiumGDPRecModal > div#prh_privacy_prompt > div#prh_mdl_close |
These are opportunities to improve keyboard navigation in your application.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Brightly
Raise kids who love to read main#mainblock > div.container > div.footer-bttm-links > a.footer-bttm-link |
Out of Print
Shirts, totes, socks, and more for book lovers main#mainblock > div.container > div.footer-bttm-links > a.footer-bttm-link |
TASTE
An online magazine for today’s home cook main#mainblock > div.container > div.footer-bttm-links > a.footer-bttm-link |
Today's Top Books
Want to know what people are actually reading right now? main#mainblock > div.container > div.footer-bttm-links > a.footer-bttm-link |
Wonderbly
Personalized books for kids and adults main#mainblock > div.container > div.footer-bttm-links > a.footer-bttm-link |