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 QualityAction11 of 31 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 4 image(s) |
| generic | 7 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
DLink & Button QualityAction5 issue(s) across 181 links and 2 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| //browse.dict.cc/ | All Languages | img no alt | Add alt attribute to the image |
| (empty) | empty | Add link text or aria-label | |
| javascript:speak_nopop(1549196,'rec') | (empty) | empty | Add link text or aria-label |
| javascript:speak_nopop(1558673,'rec') | (empty) | empty | Add link text or aria-label |
| /latest-verifications.php | More | generic text | Replace with descriptive text |
Before: More Suggested: Latest Verifications.Php | |||
| http://GreatFallsStatistics.com | GreatFallsStatistics... | new tab | Add '(opens in new tab)' to text |
| https://gigperformer.com/ | gigperformer.com | new tab | Add '(opens in new tab)' to text |
| javascript:toggle_text('explanation') | What's this? | img no alt | Add alt attribute to the image |
| https://deuk.dict.cc/ | Ukrainisch-Deutsch | img no alt | Add alt attribute to the image |
| https://enuk.dict.cc/ | (empty) | empty | Add link text or aria-label |
| https://enuk.dict.cc/ | Ukrainian-English | img no alt | Add alt attribute to the image |
| https://eur-lex.europa.eu/legal-content/… | EU law | new tab | Add '(opens in new tab)' to text |
| https://www.dict.cc/?s=about%3A#impressu… | privacy policy page | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
a (#124 on page); javascript:speak_nopop(1549196,'rec'); javascript:speak_nopop(1558673,'rec'); https://enuk.dict.cc/
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.
/latest-verifications.php ("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.
http://GreatFallsStatistics.com; https://gigperformer.com/; https://eur-lex.europa.eu/legal-content/EN/TXT/?qid=1528874672298&uri=CELEX%3…; https://www.dict.cc/?s=about%3A#impressum
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 Hierarchy4 headings, 1 skip(s)REVIEW
- H1 English-German Dictionary
- H2 dict.cc: English-German and Multilingual Dictionary
- H1 We care about your privacy! duplicate H1
- H3 Learn more why you are seeing this skipped
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
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
CForm AccessibilityAction4 of 4 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #sinp | text | (none) | none |
| input | submit | (none) | none |
| input | button | (none) | none |
| #lpddbsf | select | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="text" name="s" id="sinp">; <input type="submit">; <input type="button">; <select id="lpddbsf">
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
BColor Contrast (Screenshot)20 text elements analyzed, 0 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 English-German Dicti… | 9.90:1 | 3.0:1 | #000000 | #B2B2B2 | Pass |
| h1 We care about your p… | 7.96:1 | 3.0:1 | #000000 | #9AA0A7 | Pass |
| h2 dict.cc: English-Ger… | 7.96:1 | 3.0:1 | #000000 | #9AA0A7 | Pass |
| h2 and | 7.96:1 | 3.0:1 | #000000 | #9AA0A7 | Pass |
| h2 Dictionary | 7.96:1 | 3.0:1 | #000000 | #9AA0A7 | Pass |
| h3 Learn more why you a… | 7.96:1 | 3.0:1 | #000000 | #9AA0A7 | Pass |
| title dict.cc | German-Eng… | 8.03:1 | 4.5:1 | #000000 | #A0A0A0 | Pass |
| a All Languages | 9.90:1 | 4.5:1 | #000000 | #B2B2B2 | Pass |
| a dict.cc | 9.90:1 | 4.5:1 | #000000 | #B2B2B2 | Pass |
| div Online Dictionary En… | 5.70:1 | 4.5:1 | #666666 | #FFFEFE | Pass |
| a äöüß... | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option DE <> EN | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option DE –> EN | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option EN –> DE | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option ----- | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option DE <> EN | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option ----- | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option DE <> BG | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option DE <> BS | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | Pass |
| option DE <> CS | 20.86:1 | 4.5:1 | #000000 | #FFFEFE | 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.
BLighthouse Accessibility AuditsScore 83/100 — 3 failing, 11 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 |
|---|
dict.cc div#h1-logo-and-search > div#h1-searchtools > div#h1-mobile-header-top > div#h1-mobile-logo |
DE/EN div#h1-searchtools > div#h1-mobile-header-top > div#h1-mobile-choose-lang > div#h1-mobile-langmenubut |
Suche starten div#maincontent > div#home_text > div > div |
BG div#home_text > div > div > a.button1 |
BS div#home_text > div > div > a.button1 |
CS div#home_text > div > div > a.button1 |
DA div#home_text > div > div > a.button1 |
EL div#home_text > div > div > a.button1 |
EN div#home_text > div > div > a.button1 |
EO div#home_text > div > div > a.button1 |
ES div#home_text > div > div > a.button1 |
FI div#home_text > div > div > a.button1 |
FR div#home_text > div > div > a.button1 |
HR div#home_text > div > div > a.button1 |
HU div#home_text > div > div > a.button1 |
IS div#home_text > div > div > a.button1 |
IT div#home_text > div > div > a.button1 |
LA div#home_text > div > div > a.button1 |
NL div#home_text > div > div > a.button1 |
NO div#home_text > div > div > a.button1 |
PL div#home_text > div > div > a.button1 |
PT div#home_text > div > div > a.button1 |
RO div#home_text > div > div > a.button1 |
RU div#home_text > div > div > a.button1 |
SK div#home_text > div > div > a.button1 |
SQ div#home_text > div > div > a.button1 |
SR div#home_text > div > div > a.button1 |
SV div#home_text > div > div > a.button1 |
TR div#home_text > div > div > a.button1 |
UK div#home_text > div > div > a.button1 |
Alle div#home_text > div > div > a.button1 |
These are opportunities to improve the legibility of your content.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Learn more why you are seeing this div.sn-inner > div.sn-content > div.sn-tabs > h3 |
These are opportunities to improve keyboard navigation in your application.
Internationalization and localization
If a page doesn't specify a `lang` attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. Learn more about the `lang` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These are opportunities to improve the interpretation of your content by users in different locales.