Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DFavicon & BrandingAction3 icon(s) detectedFIX
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure21 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
B404 Error PageHTTP 404, custom pageREVIEW
BWeb ManifestValid manifestREVIEW
BLighthouse Accessibility AuditsScore 89/100 — 2 failing, 24 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.
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.mx-large > section.flex > div.flex > img.w-[24px] div.mx-large > section.flex > div.flex > img.w-[24px] |
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
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
head > meta head > meta |
These items highlight common accessibility best practices.
A+Heading Hierarchy25 headingsPASS
- H1 Unser Chat bringt Menschen zusammen.
- H2 Dein Flirt-Chat Du willst jemanden kennenlernen?
- H2 Deine Online-Spiele Einfach online mit deinen Freunden spielen.
- H2 Schon überzeugt? Jetzt den Knuddels-Chat ausprobieren!
- H2 Dein kostenloser Chat Freunde fürs Leben finden.
- H2 DEINE THEMEN Über Themen chatten, die dich bewegen.
- H2 Werde jetzt Teil der Community. 🌟
- H2 Häufige Fragen zum Knuddels Chat
- H2 Was versteht man unter einem Chat? 🤔
- H2 Wie funktioniert die Knuddels Chat Community? 🎯
- H2 Kann ich bei Knuddels kostenlos chatten? 💰
- H2 Gibt es auch eine Chat-App von Knuddels? 📲
- H2 Ist Knuddels ein Live-Chat? ⚡
- H2 Ist Knuddels ein cooler Chat? 😎
- H2 Wie kann ich bei Knuddels neue Freunde finden? 👯
- H2 Kann ich bei Knuddels chatten und online spielen? 🎯
- H2 Ist der Knuddels Chatroom anonym? 🕶️
- H2 Ist Knuddels ein Chatroom ohne Anmeldung? 📝
- H2 Ist Knuddels der bekannte Chatroom aus den 2000ern? 📅
- H2 Ist Knuddels ein Deutscher Chat? 🇩🇪
- H2 Wie unterscheidet sich Knuddels von anderen Chats? 🤔
- H2 Kann man auf Knuddels mit anderen Menschen Nachrichten austauschen und Unterhaltungen führen? 💌
- H2 Ist Knuddels eine Plattform, um mit Teammitgliedern am Arbeitsplatz zusammenzuarbeiten? 💼
- H2 Ist Knuddels ein Sex Chat? 🍆
- H2 Werde jetzt Teil der Community!
A+Heading Text QualityAll 25 heading(s) have substantive, well-formed textPASS
AAlt Text Quality1 of 48 images have issuesPASS
| Issue | Count |
|---|---|
| missing | 1 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
A+Form AccessibilityNo form controlsPASS
ALink & Button Quality127 links, 22 buttons — all OKPASS
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /agb | AGB | new tab | Add '(opens in new tab)' to text |
| /datenschutz | Datenschutzerklärung | new tab | Add '(opens in new tab)' to text |
| https://www.hcaptcha.com/privacy | Datenschutzerklärung | new tab | Add '(opens in new tab)' to text |
| https://www.hcaptcha.com/terms | AGB | new tab | Add '(opens in new tab)' to text |
| https://play.google.com/store/apps/detai… | Android | new tab | Add '(opens in new tab)' to text |
| https://apps.apple.com/de/app/knuddels-c… | iOS | new tab | Add '(opens in new tab)' to text |
| https://apps.apple.com/de/app/knuddels-c… | Für iOS Herunterladen | new tab | Add '(opens in new tab)' to text |
| https://play.google.com/store/apps/detai… | Für Android Herunterladen | new tab | Add '(opens in new tab)' to text |
Add '(opens in new tab)' to link text or aria-label.
/agb; /datenschutz; https://www.hcaptcha.com/privacy; https://www.hcaptcha.com/terms; https://play.google.com/store/apps/details?id=com.knuddels.android; https://apps.apple.com/de/app/knuddels-chat-freunde-finden/id369409839; https://apps.apple.com/de/app/knuddels-chat-freunde-finden/id369409839?ign-mp…; https://play.google.com/store/apps/details?id=com.knuddels.android&referrer=u…
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
A+Form Input TypesNo form controls on this pagePASS
A+Form Input QualityNo form controls on this pagePASS
A+Mobile Keyboard & AutofillNo form controls -- mobile keyboard check is N/APASS
A+Document LanguageLang attribute set to "de"PASS
ATabindex Anti-Patterns0 positive, 2 -1-on-focusablePASS
A+Iframe AccessibilityAll 4 iframe(s) have descriptive titlesPASS
A+Tap Target AdequacyAll tap targets meet WCAG 2.5.5/2.5.8 sizingPASS
A+Mobile-Readable Font SizesAll 317 visible text node(s) render at >= 12 CSS pixelsPASS
A+PWA DepthNo PWA depth issues detectedPASS
A+Mobile UX Depth2 mobile-depth signal(s) detectedPASS
A+Color Contrast (Screenshot)20 text elements analyzed, 0 fail WCAG AAPASS
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 Unser Chat bringt Me… | 18.15:1 | 3.0:1 | #000000 | #EFEEEF | Pass |
| h2 Häufige Fragen zum … | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Was versteht man unt… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Wie funktioniert die… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Kann ich bei Knuddel… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Gibt es auch eine Ch… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist Knuddels ein Liv… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist Knuddels ein coo… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Wie kann ich bei Knu… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Kann ich bei Knuddel… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist der Knuddels Cha… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist Knuddels ein Cha… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist Knuddels der bek… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist Knuddels ein Deu… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Wie unterscheidet si… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Kann man auf Knuddel… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist Knuddels eine Pl… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| h2 Ist Knuddels ein Sex… | 19.43:1 | 3.0:1 | #000000 | #F6F6F6 | Pass |
| title Knuddels Chat - Im C… | 18.59:1 | 4.5:1 | #000000 | #F1F1F1 | Pass |
| span Akzeptieren & schlie… | 18.43:1 | 4.5:1 | #000000 | #F0F0F0 | 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.