Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureActionNo landmarksFIX
No landmarks detected
Screen reader users have no way to navigate by region.
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
FAlt Text QualityAction20 of 20 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 20 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
FLink & Button QualityAction14 issue(s) across 188 links and 4 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /fr/ | (empty) | empty | Add link text or aria-label |
| /xmas.php | (empty) | empty | Add link text or aria-label |
| / | English | img no alt | Add alt attribute to the image |
| /es/ | Español | img no alt | Add alt attribute to the image |
| /de/ | Deutsch | img no alt | Add alt attribute to the image |
| /it/ | Italiano | img no alt | Add alt attribute to the image |
| /pt/ | Português | img no alt | Add alt attribute to the image |
| /tnt.php | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| https://www.mansgreback.com | https://www.mansgreback.com | new tab | Add '(opens in new tab)' to text |
| ./faq.php#copyright | Gratuit pour un usage personne… | new tab | Add '(opens in new tab)' to text |
| lacheyard-script.font | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| https://nhfonts.etsy.com/ | https://nhfonts.etsy.com/ | new tab | Add '(opens in new tab)' to text |
| ./faq.php#copyright | 100% Gratuit | new tab | Add '(opens in new tab)' to text |
| super-starfish.font | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| https://www.mjtype.com | https://www.mjtype.com | new tab | Add '(opens in new tab)' to text |
| ./faq.php#copyright | Gratuit pour un usage personne… | new tab | Add '(opens in new tab)' to text |
| study-night.font | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| https://originfonts.com/ | https://originfonts.com/ | new tab | Add '(opens in new tab)' to text |
| ./faq.php#copyright | Gratuit pour un usage personne… | new tab | Add '(opens in new tab)' to text |
| milk-yogurt.font | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| https://justtheskills.com/vendor/tokokoo… | https://justtheskills.com/vend… | new tab | Add '(opens in new tab)' to text |
| ./faq.php#copyright | Gratuit pour un usage personne… | new tab | Add '(opens in new tab)' to text |
| contador.font | (empty) | empty | Add link text or aria-label |
| http://luc.devroye.org/fonts.html | On snot and fonts | new tab | Add '(opens in new tab)' to text |
| /manage-utiq | here | generic text | Replace with descriptive text |
Before: here Suggested: Manage Utiq | |||
| https://consenthub.utiq.com/pages/privac… | supported internet connection | new tab | Add '(opens in new tab)' to text |
| https://consenthub.utiq.com/ | Utiq’s privacy portal (“co… | new tab | Add '(opens in new tab)' to text |
| https://consenthub.utiq.com/pages/privac… | Utiq's privacy statement | new tab | Add '(opens in new tab)' to text |
| https://cmp.sirdata.com/ | powered bySirdata | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
/fr/; /xmas.php; /tnt.php; a (#262 on page); lacheyard-script.font; a (#282 on page); super-starfish.font; a (#302 on page); study-night.font; a (#322 on page) (+3 more)
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.
/manage-utiq ("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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="/"]; a[href="/es/"]; a[href="/de/"]; a[href="/it/"]; a[href="/pt/"]; a[href="https://www.mansgreback.com"]; a[href="https://nhfonts.etsy.com/"]; a[href="https://www.mjtype.com"]; a[href="https://originfonts.com/"]; a[href="https://justtheskills.com/vendor/tokokoo/"]
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.
./faq.php#copyright; ./faq.php#copyright; ./faq.php#copyright; ./faq.php#copyright; ./faq.php#copyright; http://luc.devroye.org/fonts.html; https://consenthub.utiq.com/pages/privacy-statement#telecom-operators; https://consenthub.utiq.com/; https://consenthub.utiq.com/pages/privacy-statement; https://cmp.sirdata.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
FFavicon & BrandingAction2 icon(s) detectedFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DPrint StylesheetActionNo print stylesFIX
DLighthouse Accessibility AuditsActionScore 58/100 — 7 failing, 11 passedFIX
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 |
|---|
15 439 téléchargements (1 760 hier) div.container > div > div.lv2right > span.light |
17 447 téléchargements (1 751 hier) div.container > div > div.lv2right > span.light |
53 500 téléchargements (1 682 hier) div.container > div > div.lv2right > span.light |
22 915 téléchargements (403 hier) div.container > div > div.lv2right > span.light |
75 763 téléchargements (319 hier) div.container > div > div.lv2right > span.light |
partners div.sd-cmp-xbcna > div.sd-cmp-VhJqD > div > strong.vendors |
Do not accept div.sd-cmp-gpI1s > div.sd-cmp-Wfd7X > button.sd-cmp-7Ga7b > span.sd-cmp-j-Z5- |
powered by div.sd-cmp-Wfd7X > div.sd-cmp-KebVX > a > span |
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 > div > a#top > img div > div > a#top > img |
div.dfsmall > div.dfsmall > a > img div.dfsmall > div.dfsmall > a > img |
div.dfsmall > div.dfsmall > a.tdn > img div.dfsmall > div.dfsmall > a.tdn > img |
div.dfsmall > div.dfsmall > b > img div.dfsmall > div.dfsmall > b > img |
div.dfsmall > div.dfsmall > a.tdn > img div.dfsmall > div.dfsmall > a.tdn > img |
div.dfsmall > div.dfsmall > a.tdn > img div.dfsmall > div.dfsmall > a.tdn > img |
div.dfsmall > div.dfsmall > a.tdn > img div.dfsmall > div.dfsmall > a.tdn > img |
div.dfsmall > div.dfsmall > a.tdn > img div.dfsmall > div.dfsmall > a.tdn > img |
div.container > div > div > img div.container > div > div > img |
div.container > div > a > img div.container > div > a > img |
div > div.lv1left > a.tdn > img.out div > div.lv1left > a.tdn > img.out |
div > div.lv1left > a.tdn > img.out div > div.lv1left > a.tdn > img.out |
div > div.lv1left > a.tdn > img.out div > div.lv1left > a.tdn > img.out |
div > div.lv1left > a.tdn > img.out div > div.lv1left > a.tdn > img.out |
div > div.lv1left > a.tdn > img.out div > div.lv1left > a.tdn > img.out |
div.layout > div.container > div > img.fleche div.layout > div.container > div > img.fleche |
div > div.dfsmall > div > img div > div.dfsmall > div > img |
div > div.dfsmall > div > img div > div.dfsmall > div > img |
div#width > div.tdn > div.right > img div#width > div.tdn > div.right > img |
div#width > div.tdn > div > img div#width > div.tdn > div > img |
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div > div > form > input.search_form div > div > form > input.search_form |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.layout > div.container > div > iframe div.layout > div.container > div > iframe |
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.container > div > div > a#top div.container > div > div > a#top |
div > div.dfsmall > div.dfsmall > a div > div.dfsmall > div.dfsmall > a |
div.layout > div.container > div > a div.layout > div.container > div > a |
div.container > div > div.preview > a div.container > div > div.preview > a |
div.container > div > div.preview > a div.container > div > div.preview > a |
div.container > div > div.preview > a div.container > div > div.preview > a |
div.container > div > div.preview > a div.container > div > div.preview > a |
div.container > div > div.preview > a div.container > div > div.preview > 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.
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 |
|---|
div > div > form > input.search_form div > div > form > input.search_form |
These are opportunities to improve keyboard navigation in your application.
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 |
|---|
Fantaisie tr > td > div.metacat > a |
Cartoon tr > td > div.catpp > a |
BD, Comic tr > td > div.catpp > a |
Groovy tr > td > div.catpp > a |
Old School tr > td > div.catpp > a |
Spirales tr > td > div.catpp > a |
Western tr > td > div.catpp > a |
Usé tr > td > div.catpp > a |
Destructuré tr > td > div.catpp > a |
Destroy tr > td > div.catpp > a |
Horreur tr > td > div.catpp > a |
Feu, Glace tr > td.colthemes > div.catpp > a |
Déco tr > td.colthemes > div.catpp > a |
Typewriter tr > td.colthemes > div.catpp > a |
Rétro tr > td.colthemes > div.catpp > a |
Lettrines tr > td.colthemes > div.catpp > a |
Grille tr > td.colthemes > div.catpp > a |
Divers tr > td.colthemes > div.catpp > a |
Etranger tr > td.colthemes > div.metacat > a |
Chinois, Jap. tr > td.colthemes > div.catpp > a |
Arabe tr > td.colthemes > div.catpp > a |
Mexicain tr > td.colthemes > div.catpp > a |
Russe tr > td.colthemes > div.catpp > a |
Divers tr > td.colthemes > div.catpp > a |
Techno tr > td.colthemes > div.metacat > a |
Carré td.colthemes > div > div.catpp > a |
LCD td.colthemes > div > div.catpp > a |
Divers td.colthemes > div > div.catpp > a |
Bitmap td.colthemes > div > div.metacat > a |
Pixel, Bitmap td.colthemes > div > div.catpp > a |
Gothique tr > td.colthemes > div.metacat > a |
Médiéval tr > td.colthemes > div.catpp > a |
Moderne tr > td.colthemes > div.catpp > a |
Celtique tr > td.colthemes > div.catpp > a |
Lettrines tr > td.colthemes > div.catpp > a |
Divers tr > td.colthemes > div.catpp > a |
Basique tr > td.colthemes > div.metacat > a |
Sans serif tr > td.colthemes > div.catpp > a |
Serif tr > td.colthemes > div.catpp > a |
Largeur fixe tr > td.colthemes > div.catpp > a |
Divers tr > td.colthemes > div.catpp > a |
Script tr > td.colthemes > div.metacat > a |
Calligraphie tr > td.colthemes > div.catpp > a |
Scolaire tr > td.colthemes > div.catpp > a |
Manuscrit tr > td.colthemes > div.catpp > a |
Brush tr > td.colthemes > div.catpp > a |
Trash tr > td.colthemes > div.catpp > a |
Graffiti tr > td.colthemes > div.catpp > a |
Old School tr > td.colthemes > div.catpp > a |
Divers tr > td.colthemes > div.catpp > a |
Symboles tr > td.colthemes > div.metacat > a |
Alien tr > td.colthemes > div.catpp > a |
Animaux tr > td.colthemes > div.catpp > a |
Asiatique tr > td.colthemes > div.catpp > a |
Ancien tr > td.colthemes > div.catpp > a |
Esotérique tr > td.colthemes > div.catpp > a |
Fantastique tr > td.colthemes > div.catpp > a |
Horreur tr > td.colthemes > div.catpp > a |
Jeux tr > td.colthemes > div.catpp > a |
Formes tr > td.colthemes > div.catpp > a |
Codes barres tr > td.colthemes > div.catpp > a |
Nature tr > td.colthemes > div.catpp > a |
Sport tr > td.colthemes > div.catpp > a |
Têtes tr > td.colthemes > div.catpp > a |
Enfants tr > td.colthemes > div.catpp > a |
TV, Cinéma tr > td.colthemes > div.catpp > a |
Logos tr > td.colthemes > div.catpp > a |
Sexy tr > td.colthemes > div.catpp > a |
Armée tr > td.colthemes > div.catpp > a |
Musique tr > td.colthemes > div.catpp > a |
Divers tr > td.colthemes > div.catpp > a |
Fêtes tr > td.colthemes > div.metacat > a |
St Valentin tr > td.colthemes > div.catpp > a |
Pâques tr > td.colthemes > div.catpp > a |
Halloween tr > td.colthemes > div.catpp > a |
Noël tr > td.colthemes > div.catpp > a |
Divers tr > td.colthemes > div.catpp > a |
These items highlight common accessibility best practices.
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
BForm Accessibility2 of 2 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| q | text | (none) | none |
| input | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="text" name="q">; <input type="submit">
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
B404 Error PageHTTP 404, custom pageREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
CColor Contrast (Screenshot)Action20 text elements analyzed, 20 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
7 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 DaFont - Polices à … | 2.45:1 | 4.5:1 | #000000 | #4C4C4C | Fail |
| a English | 2.45:1 | 4.5:1 | #000000 | #4C4C4C | Fail |
| b Français | 2.45:1 | 3.0:1 | #000000 | #4C4C4C | Fail |
| a Español | 2.45:1 | 4.5:1 | #000000 | #4C4C4C | Fail |
| a Deutsch | 2.45:1 | 4.5:1 | #000000 | #4C4C4C | Fail |
| a Italiano | 1.61:1 | 4.5:1 | #000000 | #313131 | Fail |
| a Português | 2.41:1 | 4.5:1 | #000000 | #4B4B4B | Fail |
| a Mon compte | 2.41:1 | 4.5:1 | #000000 | #4B4B4B | Fail |
| a Inscription | 1.52:1 | 4.5:1 | #000000 | #2D2D2D | Fail |
| a Thèmes | 2.41:1 | 4.5:1 | #000000 | #4B4B4B | Fail |
| a Nouveautés | 1.50:1 | 4.5:1 | #000000 | #432323 | Fail |
| a Auteurs | 2.41:1 | 4.5:1 | #000000 | #4B4B4B | Fail |
| a Top | 2.41:1 | 4.5:1 | #000000 | #4B4B4B | Fail |
| a Forum | 1.74:1 | 4.5:1 | #000000 | #363636 | Fail |
| a FAQ | 2.41:1 | 4.5:1 | #000000 | #4B4B4B | Fail |
| a Proposer une police | 1.44:1 | 4.5:1 | #000000 | #421E1E | Fail |
| a Logiciels | 1.26:1 | 4.5:1 | #000000 | #1E1E1E | Fail |
| a Fantaisie | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| a Cartoon | 2.41:1 | 4.5:1 | #000000 | #4B4B4B | Fail |
| a BD, Comic | 1.44:1 | 4.5:1 | #000000 | #431E1E | 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.