Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction1 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
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
DLink & Button QualityAction6 issue(s) across 45 links and 1 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://join.freeuse.com/track/MTc4MjIuM… | (empty) | empty | Add link text or aria-label |
| https://join.freeuse.com/track/MTc4MjIuM… | (empty) | empty | Add link text or aria-label |
| https://join.freeuse.com/track/MTc4MjIuM… | (empty) | empty | Add link text or aria-label |
| https://join.freeuse.com/track/MTc4MjIuM… | (empty) | empty | Add link text or aria-label |
| https://join.freeuse.com/track/MTc4MjIuM… | (empty) | empty | Add link text or aria-label |
| https://www.psmhelp.com/section2257 | 2257 | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/tos | TERMS | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/privacy | PRIVACY POLICY | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/refund | REFUND POLICY | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/faq | F.A.Q.'S | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/technicalsupport | HELP | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com | CUSTOMER SERVICE | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/billingsupport | BILLING SUPPORT | new tab | Add '(opens in new tab)' to text |
| https://www.paperstreetcash.com/ | WEBMASTERS | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/content-removal | CONTENT REMOVAL | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/complaints | COMPLAINTS | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/dmca | DMCA | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/anti-trafficking | TRUST & SAFETY | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/section2257 | Click Here | generic text | Replace with descriptive text |
Before: Click Here Suggested: Section2257 | |||
| https://www.psmhelp.com/section2257 | 18 U.S.C. 2257 Record-Keeping … | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/cookie-policy | Cookie | new tab | Add '(opens in new tab)' to text |
| https://www.psmhelp.com/privacy | Data Privacy | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
https://join.freeuse.com/track/MTc4MjIuMTA0NzIuMjA0LjY2MjYuMC4wLjAuMC4w/join?…; https://join.freeuse.com/track/MTc4MjIuMTA0NzIuMjA0LjY2MjYuMC4wLjAuMC4w/join?…; https://join.freeuse.com/track/MTc4MjIuMTA0NzIuMjA0LjY2MjYuMC4wLjAuMC4w/join?…; https://join.freeuse.com/track/MTc4MjIuMTA0NzIuMjA0LjY2MjYuMC4wLjAuMC4w/join?…; https://join.freeuse.com/track/MTc4MjIuMTA0NzIuMjA0LjY2MjYuMC4wLjAuMC4w/join?…
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.psmhelp.com/section2257 ("Click Here")
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.psmhelp.com/section2257; https://www.psmhelp.com/tos; https://www.psmhelp.com/privacy; https://www.psmhelp.com/refund; https://www.psmhelp.com/faq; https://www.psmhelp.com/technicalsupport; https://www.psmhelp.com; https://www.psmhelp.com/billingsupport; https://www.paperstreetcash.com/; https://www.psmhelp.com/content-removal (+6 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
F404 Error PageActionSoft 404 detectedFIX
The server returned HTTP 200 for a non-existent path. Search engines will index this page as real content. Configure your server to return HTTP 404 for missing pages.
FFavicon & BrandingAction2 icon(s) detectedFIX
FWeb ManifestActionInvalid JSONFIX
Manifest contains invalid JSON.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BHeading HierarchyNo headingsREVIEW
No headings found
Headings create the document outline for screen reader navigation.
Headings (H1-H6) create the document outline for screen reader navigation.
A page with zero headings is unnavigable by assistive tech and reads as one undifferentiated wall of text.
Learn more ▾ ▴
Screen reader users navigate by jumping between H1-H6 elements. A page with no headings has no skip targets — users have to read every word linearly. Adding a heading hierarchy (one H1, then H2 sections, optional H3 subsections) makes the page skimmable for both AT and human readers.
Source: WCAG 1.3.1 / W3C WAI
BAlt Text Quality2 of 5 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 2 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
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.
4 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 |
|---|---|---|---|---|---|
| title Freeuse Network - Jo… | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| a Full Videos | 2.20:1 | 4.5:1 | #000000 | #564040 | Fail |
| a Top Pornstars | 12.24:1 | 4.5:1 | #000000 | #EEC03E | Pass |
| a All sites | 11.28:1 | 4.5:1 | #000000 | #DEBB3A | Pass |
| a Login | 10.61:1 | 4.5:1 | #000000 | #D3B1A6 | Pass |
| a Join Now | 1.82:1 | 4.5:1 | #FFFFFF | #DBB9AD | Fail |
| a Full Videos | 11.30:1 | 4.5:1 | #000000 | #D9B7AA | Pass |
| a Top Pornstars | 7.07:1 | 4.5:1 | #000000 | #B38F6D | Pass |
| a All sites | 10.69:1 | 4.5:1 | #000000 | #B5BE88 | Pass |
| a Login | 5.97:1 | 4.5:1 | #000000 | #A88160 | Pass |
| a Join Now | 4.78:1 | 4.5:1 | #FFFFFF | #956949 | Pass |
| a Join Now | 3.02:1 | 4.5:1 | #FFFFFF | #B08C8A | Fail |
| a ... | 6.61:1 | 4.5:1 | #000000 | #B0877E | Pass |
| span Get Access Now! | 18.32:1 | 4.5:1 | #FFFFFF | #100A43 | Pass |
| a 2257 | 1.23:1 | 4.5:1 | #000000 | #171150 | Fail |
| a TERMS | 1.47:1 | 4.5:1 | #000000 | #3E1758 | Fail |
| a PRIVACY POLICY | 1.35:1 | 4.5:1 | #000000 | #321F22 | Fail |
| a REFUND POLICY | 5.76:1 | 4.5:1 | #000000 | #92837D | Pass |
| a F.A.Q.'S | 3.96:1 | 4.5:1 | #000000 | #8C6157 | Fail |
| a HELP | 1.09:1 | 4.5:1 | #000000 | #130D0A | Fail |
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.
CLighthouse Accessibility AuditsActionScore 75/100 — 4 failing, 12 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.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
JOIN NOW div.pin > div#pinWrapper > div.header > a#joinLinkButtonRight |
These are opportunities to improve the legibility of your content.
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 |
|---|
div#pinWrapper > div > div > img div#pinWrapper > div > div > img |
div.nextgen-col > div#gridBody > a#grid-1 > img div.nextgen-col > div#gridBody > a#grid-1 > img |
div.nextgen-col > div#gridBody > a#grid-1 > img div.nextgen-col > div#gridBody > a#grid-1 > img |
div.nextgen-col > div#gridBody > a#grid-2 > img div.nextgen-col > div#gridBody > a#grid-2 > img |
div.nextgen-col > div#gridBody > a#grid-2 > img div.nextgen-col > div#gridBody > a#grid-2 > img |
div.nextgen-col > div#gridBody > a#grid-3 > img div.nextgen-col > div#gridBody > a#grid-3 > img |
div.nextgen-col > div#gridBody > a#grid-4 > img div.nextgen-col > div#gridBody > a#grid-4 > img |
div.nextgen-col > div#gridBody > a#grid-4 > img div.nextgen-col > div#gridBody > a#grid-4 > img |
div.nextgen-col > div#gridBody > a#grid-5 > img div.nextgen-col > div#gridBody > a#grid-5 > img |
div.nextgen-col > div#gridBody > a#grid-5 > img div.nextgen-col > div#gridBody > a#grid-5 > img |
div.nextgen-col > div#gridBody > a#grid-6 > img div.nextgen-col > div#gridBody > a#grid-6 > img |
div#bottom-content > div > div.rta-logo > img div#bottom-content > div > div.rta-logo > img |
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#root > div.pin > div#pinWrapper > a#mobile-video-banner-join-link div#root > div.pin > div#pinWrapper > a#mobile-video-banner-join-link |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-1 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-1 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-2 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-2 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-3 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-3 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-4 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-4 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-5 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-5 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-6 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-6 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-7 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-7 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-8 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-8 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-9 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-9 |
div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-10 div.nextgen-row > div.nextgen-col > div#gridBody > a#grid-10 |
div.pagination-div > ul > li.l > a.join-link div.pagination-div > ul > li.l > a.join-link |
div.pagination-div > ul > li.r > a.join-link div.pagination-div > ul > li.r > a.join-link |
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
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.