Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DAlt Text QualityAction3 of 23 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 3 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
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
BLandmark Structure3 landmarksREVIEW
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 Hierarchy25 headingsREVIEW
- H3 Bing is the anti-AI search engine you should be using
- H3 I switched to Starlink. These are the 6 biggest surprises
- H3 Investigation: Are RAM prices dropping, or is it all illusion?
- H3 Lenovo Yoga 7a review: A capable 2-in-1 with weak graphics
- H3 LATEST STORIES
- H3 Best VPNs for torrenting: 5 top picks for speed, privacy, and security
- H3 Microsoft's next Windows 11 update targets stability and speed
- H3 Flat-rate AI plans are broken. Blame AI agents
- H3 Massive 49-inch OLED ultrawide monitor drops to $700 (now $300 off)
- H3 Microsoft officially says you don't need extra antivirus on Windows 11
- H3 Even trusted apps can spread PC malware now
- H3 Anker's 2-in-1 docking station with pop-out hub hits its best price
- H3 This Lenovo Legion 5i with RTX 5060, 32GB RAM, and OLED is $400 off
- H3 Lenovo Yoga 7a review: A capable 2-in-1 with weak graphics
- H3 This mini PC packs 32GB RAM and only costs $409 with our code
- H3 Today’s best laptop deals: Save big on work, school, home use, and gaming
- H3 Bing is the anti-AI search engine you should be using
- H3 I switched to Starlink. These are the 6 biggest surprises
- H3 Best computer deals from desktops to all-in-ones
- H3 This prompt trick forces AI to stop flattering you and think harder
- H3 One reason to use Edge: It now teases new Windows features
- H3 The best PCIe 4.0 SSDs for blistering storage speeds
- H3 Acer's RTX 5070 Helios Neo 16 AI drops to $1,500 (now $350 off)
- H3 Best Chromebooks 2026: Top picks for work, school, and more
- H3 April's Windows 11 update is trapping some PCs in a boot loop
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
CLink & Button QualityAction1 issue(s) across 299 links and 22 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| More | generic text | Replace with descriptive text | |
Before: More Suggested: Home page | |||
| https://www.facebook.com/PCWorld/ | Follow us on Facebook | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/pcworld | Follow us on X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UCDC1Pas… | Follow us on YouTube | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/pc-worl… | Follow us on LinkedIn | new tab | Add '(opens in new tab)' to text |
| https://www.pcworld.com/article/2913713/… | I switched to Starlink. These … | img no alt | Add alt attribute to the image |
| https://www.pcworld.com/article/3116546/… | Investigation: Are RAM prices … | img no alt | Add alt attribute to the image |
| https://www.pcworld.com/article/3116086/… | Lenovo Yoga 7a review: A capab… | img no alt | Add alt attribute to the image |
| https://www.facebook.com/PCWorld/ | Follow us on Facebook | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/pcworld | Follow us on X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UCDC1Pas… | Follow us on YouTube | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/pc-worl… | Follow us on LinkedIn | new tab | Add '(opens in new tab)' to text |
| https://foundryco.com/ | Foundry | new tab | Add '(opens in new tab)' to text |
Generic link text like 'click here' doesn't describe the destination.
("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.pcworld.com/article/2913713/i-switched-to-starlink-these-6-advant…"]; a[href="https://www.pcworld.com/article/3116546/investigation-are-ram-prices-dropping…"]; a[href="https://www.pcworld.com/article/3116086/lenovo-yoga-7a-review.html"]
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.facebook.com/PCWorld/; https://twitter.com/pcworld; https://www.youtube.com/channel/UCDC1Pas1aocEA5HBl7jp0ew; https://www.linkedin.com/company/pc-world_2/; https://www.facebook.com/PCWorld/; https://twitter.com/pcworld; https://www.youtube.com/channel/UCDC1Pas1aocEA5HBl7jp0ew; https://www.linkedin.com/company/pc-world_2/; https://foundryco.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
C404 Error PageActionHTTP 404, custom pageREVIEW
BFavicon & Branding4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 4 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 |
|---|---|---|---|---|---|
| h3 Bing is the anti-AI … | 3.00:1 | 3.0:1 | #000000 | #595959 | Pass |
| h3 I switched to Starli… | 3.00:1 | 3.0:1 | #000000 | #595959 | Pass |
| h3 Investigation: Are R… | 3.00:1 | 3.0:1 | #000000 | #595959 | Pass |
| h3 Lenovo Yoga 7a revie… | 3.00:1 | 3.0:1 | #000000 | #595959 | Pass |
| h3 LATEST STORIES | 3.00:1 | 3.0:1 | #000000 | #595959 | Pass |
| title PCWorld | 1.24:1 | 4.5:1 | #000000 | #3C0A0F | Fail |
| a News | 1.24:1 | 4.5:1 | #000000 | #3C0A0F | Fail |
| a All News | 3.00:1 | 4.5:1 | #000000 | #595959 | Fail |
| a Accessories | 2.82:1 | 4.5:1 | #000000 | #555555 | Fail |
| a Business | 11.18:1 | 4.5:1 | #000000 | #BDBDBD | Pass |
| a Entertainment | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Gaming | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Laptops | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Mobile | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Monitors | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a PCs & Components | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Security | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Smart Home Security | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Software | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Storage | 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.
A+Form AccessibilityAll 1 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #footerSelect | select | Select Foundry Network | aria-label |
A+Lighthouse Accessibility AuditsScore 95/100 — 2 failing, 28 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
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
a.floating-anchor > div.item-inner > div.item-image > img a.floating-anchor > div.item-inner > div.item-image > img |
a.floating-anchor > div.item-inner > div.item-image > img a.floating-anchor > div.item-inner > div.item-image > img |
a.floating-anchor > div.item-inner > div.item-image > img a.floating-anchor > div.item-inner > div.item-image > img |
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.
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 |
|---|
MORE STORIES div.articleFeed > div.articleFeed-inner > div.articleFeed-button > a.btn |
POLICIES
Expand Policies div.primaryFooter-menu-wrap > ul#footer-primary > li#menu-item-100000311-footer-primary > button.menu-toggle-button |
ABOUT
Expand About div.primaryFooter-menu-wrap > ul#footer-secondary > li#menu-item-100000322-footer-secondary > button.menu-toggle-button |
PCWORLD CATEGORIES
Expand submenu for PCWorld Categories div.primaryFooter-menu-wrap > ul#third-column-footer-menu > li#third-column-footer-menu-item-one > button.menu-toggle-button |
SUBSCRIBE
Expand submenu for Subscribe div.primaryFooter-menu-wrap > ul#forth-column-footer-menu > li#third-column-footer-menu-item > button.menu-toggle-button |