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 QualityAction14 of 15 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 14 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
DForm AccessibilityAction15 of 25 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #topcountries | radio | none | |
| #flagmap | radio | none | |
| #usflags | radio | none | |
| #mini | radio | none | |
| #recent | radio | none | |
| #flagsxl | checkbox | Use Large Flags | for/id |
| #labels | checkbox | Show Flag Labels | for/id |
| #pageviews | checkbox | Show Pageview Count | for/id |
| #percent | select | Show Visitors As | for/id |
| #flag_num | checkbox | Show Number of Flags | for/id |
| #useremail | text | (optional) | placeholder only |
| #customlabelinput | text | (none) | none |
| #bg | text | (none) | none |
| #text | text | (none) | none |
| #border | text | (none) | none |
| #flags_from | select | (none) | none |
| #max | select | (none) | none |
| #size | select | (none) | none |
| #flags | select | (none) | none |
| #columns | select | (none) | none |
| #newsize | select | (none) | none |
| #viewers | select | (none) | none |
| #g-recaptcha-response | textarea | (none) | none |
| input | submit | (none) | none |
| input | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<select name="flags_from" id="flags_from">; <select name="max" id="max">; <select name="size" id="size">; <select name="flags" id="flags">; <select name="columns" id="columns">; <select name="viewers" id="viewers">; <input type="text" name="customlabel" id="customlabelinput">; <input type="text" name="bg" id="bg">; <input type="text" name="text" id="text">; <input type="text" name="border" id="border"> (+4 more)
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
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="useremail" id="useremail">
Placeholder-only labels disappear when the user starts typing — they must remember what the field was for.
Learn more ▾ ▴
Placeholders are NOT labels. They vanish on input, fail color contrast checks (most are gray), and don't satisfy WCAG SC 3.3.2. Always use a real <label> alongside (or aria-labelledby).
Source: WCAG 2.1 SC 3.3.2 / Nielsen Norman
F404 Error PageActionHTTP 404, bare pageFIX
FFavicon & BrandingAction2 icon(s) detectedFIX
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
FLighthouse Accessibility AuditsActionScore 47/100 — 7 failing, 7 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.
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.
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.double-column > div.shortcolumn > p > img div.double-column > div.shortcolumn > p > img |
h3 > font > a > img h3 > font > a > img |
div.right > div.get-counter > a.thickbox > img div.right > div.get-counter > a.thickbox > 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 |
|---|
form#counterform > div.left-wide > div#bgcolor > input#bg form#counterform > div.left-wide > div#bgcolor > input#bg |
div.customization > form#counterform > div.left-wide > input#text div.customization > form#counterform > div.left-wide > input#text |
div.customization > form#counterform > div.left-wide > input#border div.customization > form#counterform > div.left-wide > input#border |
Form elements without effective labels can create frustrating experiences for screen reader users. Learn more about the `select` element.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
3… form#counterform > div.left > div#maxflags > select#max |
1
2
3
4
5
6
7
8 form#counterform > div.left > div#columnsflags > select#columns |
none
Visitors
» custom form#counterform > div.left > div#counterlabel > select#viewers |
Small
Medium
Large form#counterform > div.right > div#flagsize > select#newsize |
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 |
|---|
body > div.shell > a body > div.shell > a |
form#counterform > div.right > div.get-counter > a.thickbox form#counterform > div.right > div.get-counter > a.thickbox |
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
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 |
|---|
More choices» form#counterform > div > span#morechoiceslink > a |
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.
BLink & Button Quality2 issue(s) across 18 links and 2 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /index.html | (empty) | empty | Add link text or aria-label |
| https://flagcounter.com/ | Reset | img no alt | Add alt attribute to the image |
| #TB_inline?height=310&width=470&inlineId… | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
/index.html; #TB_inline?height=310&width=470&inlineId=continueContent&modal=true
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
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 |
|---|---|---|---|---|---|
| h2 Flag Counter! | 16.03:1 | 3.0:1 | #000000 | #E0E1E1 | Pass |
| h2 Testimonial | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Instantly Create You… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Customize your count… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Preview your selecti… | 3.77:1 | 3.0:1 | #000000 | #266BAA | Pass |
| title Flag Counter - Free … | 11.52:1 | 4.5:1 | #000000 | #A8C3DD | Pass |
| a Flag Counter | 20.62:1 | 4.5:1 | #000000 | #FCFDFE | Pass |
| a Contact | 19.62:1 | 4.5:1 | #000000 | #F2F8FD | Pass |
| a Country List | 17.94:1 | 4.5:1 | #000000 | #EDEDED | Pass |
| a FAQ | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Forum | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Welcome to | 19.95:1 | 4.5:1 | #000000 | #F9F9F9 | Pass |
| p Add our | 20.12:1 | 4.5:1 | #000000 | #FAFAFA | Pass |
| b free counter | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| p to any webpage and c… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p "...I check my homep… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span - Bob H. | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p - West Virginia | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span When you're finished… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| u Reset | 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.
AHeading Hierarchy7 headingsPASS
- H1 Flag Counter
- H2 Welcome to Flag Counter!
- H2 Testimonial
- H2 Instantly Create Your Free Counter
- H3 Customize your counter here. When you're finished, click the orange button. | Reset
- H3 Preview your selections on our sample Flag Counter:
- H1 Flag Counter duplicate H1
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