Accessibility
· 13 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
FAlt Text QualityAction7 of 32 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 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 QualityAction28 issue(s) across 169 links and 7 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://youtube.com/ | (empty) | empty | Add link text or aria-label |
| https://mux.com/ | (empty) | empty | Add link text or aria-label |
| https://www.gemiso.com/ | (empty) | empty | Add link text or aria-label |
| https://videolabs.io/ | (empty) | empty | Add link text or aria-label |
| https://www.kw.ac.kr/en/ | (empty) | empty | Add link text or aria-label |
| https://youtube.com/ | (empty) | empty | Add link text or aria-label |
| https://mux.com/ | (empty) | empty | Add link text or aria-label |
| /vlc/#download | (empty) | empty | Add link text or aria-label |
| /vlc/download-windows.html | (empty) | empty | Add link text or aria-label |
| /vlc/download-macosx.html | (empty) | empty | Add link text or aria-label |
| /vlc/#download | (empty) | empty | Add link text or aria-label |
| /vlc/download-android.html | (empty) | empty | Add link text or aria-label |
| /vlc/download-ios.html | (empty) | empty | Add link text or aria-label |
| /contribute.html | Learn More | generic text | Replace with descriptive text |
Before: Learn More Suggested: Contribute.Html | |||
| /contribute.html | Learn More | generic text | Replace with descriptive text |
Before: Learn More Suggested: Contribute.Html | |||
| /contribute.html | Learn More | generic text | Replace with descriptive text |
Before: Learn More Suggested: Contribute.Html | |||
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| /security/sb-vlc3022.html | here | generic text | Replace with descriptive text |
Before: here Suggested: Sb Vlc3022.Html | |||
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| https://www.twitter.com/videolan | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/vlc.media.playe… | (empty) | empty | Add link text or aria-label |
| https://floss.social/@videolan | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/vlc.media.playe… | (empty) | empty | Add link text or aria-label |
| https://www.twitter.com/videolan | (empty) | empty | Add link text or aria-label |
| https://floss.social/@videolan | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://youtube.com/; https://mux.com/; https://www.gemiso.com/; https://videolabs.io/; https://www.kw.ac.kr/en/; https://youtube.com/; https://mux.com/; /vlc/#download; /vlc/download-windows.html; /vlc/download-macosx.html (+14 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.
/contribute.html ("Learn More"); /contribute.html ("Learn More"); /contribute.html ("Learn More"); /security/sb-vlc3022.html ("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
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
CForm AccessibilityAction5 of 5 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| amount | text | (none) | none |
| amount | text | (none) | none |
| amount | text | (none) | none |
| amount | text | (none) | none |
| select | select | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="text" name="amount">; <input type="text" name="amount">; <input type="text" name="amount">; <input type="text" name="amount">; <select>
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
BLighthouse Accessibility AuditsScore 80/100 — 7 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.
ARIA
When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. Learn more about input field labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
VLC for Windows Store div.v-align > div#header-carousel > div.slick-list > div.slick-track |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
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 |
|---|
VideoLAN, a project and a non-profit organization. body.new-design > div#bodyInner > div.header > div#nonprofitOrganizationDiv2 |
Version 3.7.0 • Android div.row > div.v-align > div.inner > div#downloadDetails |
FOR EVERYONE div.container > div.row > div.col-md-5 > div.audienceCallout |
FOR PROFESSIONALS div.container > div.row > div.col-sm-6 > div.audienceCallout |
FOR DEVELOPERS div.container > div.row > div.col-sm-6 > div.audienceCallout |
DONATE div.container > div.row > div.col-md-4 > div.audienceCallout |
CONTRIBUTE div.container > div.row > div.col-md-4 > div.audienceCallout |
SPREAD THE WORD div.container > div.row > div.col-md-4 > div.audienceCallout |
2026-02-25 div.col-md-6 > div > div.item > div.date |
2026-01-31 div.col-md-6 > div > div.item > div.date |
2026-01-08 div.col-md-6 > div > div.item > div.date |
2026-01-08 div.col-md-6 > div > div.item > div.date |
2025-12-01 div.col-md-6 > div > div.item > div.date |
Legal div.row > div.col-md-12 > p > a |
Report Trademark Abuse div.col-md-12 > p > span > a |
VideoLAN non-profit organization. div.col-md-12 > p > span > a |
Made By Argon div.col-md-12 > p > span > a |
CC BY-SA 3.0+ div.col-md-12 > p > span > a |
Roman Khramov div.col-md-12 > p > span > a |
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
non-profit organization. div#bodyInner > div.header > div#nonprofitOrganizationDiv2 > a.noUnderline |
[...] div.col-md-6 > div > p > a |
[...] div.col-md-6 > div > p > a |
[...] div.col-md-6 > div > p > a |
These are opportunities to improve the legibility of your content.
Names and labels
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 |
|---|
Afrikaans | Afrikaans
Amharic | አማርኛ
Aragonese | Aragonese
Arabic | العربية
Ass… div.row > div#translation > div.footerHeading > select |
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.v-align > div.inner > div.btn-group > a.btn div.v-align > div.inner > div.btn-group > a.btn |
div.v-align > div.inner > div.platform-icons > a.icon div.v-align > div.inner > div.platform-icons > a.icon |
div.v-align > div.inner > div.platform-icons > a.icon div.v-align > div.inner > div.platform-icons > a.icon |
div.v-align > div.inner > div.platform-icons > a.icon div.v-align > div.inner > div.platform-icons > a.icon |
div.v-align > div.inner > div.platform-icons > a.icon div.v-align > div.inner > div.platform-icons > a.icon |
div.v-align > div.inner > div.platform-icons > a.icon div.v-align > div.inner > div.platform-icons > a.icon |
div.overflow-hidden > h1 > span.ltrFloatRight > a.social div.overflow-hidden > h1 > span.ltrFloatRight > a.social |
div.overflow-hidden > h1 > span.ltrFloatRight > a.social div.overflow-hidden > h1 > span.ltrFloatRight > a.social |
div.overflow-hidden > h1 > span.ltrFloatRight > a.social div.overflow-hidden > h1 > span.ltrFloatRight > a.social |
div.row > div.col-sm-12 > div.social-box > a.social div.row > div.col-sm-12 > div.social-box > a.social |
div.row > div.col-sm-12 > div.social-box > a.social div.row > div.col-sm-12 > div.social-box > a.social |
div.row > div.col-sm-12 > div.social-box > a.social div.row > div.col-sm-12 > div.social-box > a.social |
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 |
|---|
VLC for Windows div.col-xs-6 > ul > li > a |
VLC for Mac OS X div.col-xs-6 > ul > li > a |
VLC for Ubuntu div.col-xs-6 > ul > li > a |
VLC for Android div.col-xs-6 > ul > li > a |
VLC for iOS div.col-xs-6 > ul > li > a |
Skins div.col-xs-6 > ul > li > a |
Extensions div.col-xs-6 > ul > li > a |
Features div.col-xs-6 > ul > li > a |
Screenshots div.col-xs-6 > ul > li > a |
VLC Skin Editor div.col-xs-6 > ul > li > a |
DVBlast div.col-xs-6 > ul > li > a |
x264 div.col-xs-6 > ul > li > a |
x262 div.col-xs-6 > ul > li > a |
x265 div.col-xs-6 > ul > li > a |
multicat div.col-xs-6 > ul > li > a |
dav1d div.col-xs-6 > ul > li > a |
VLMa div.col-xs-6 > ul > li > a |
libVLC div.col-xs-6 > ul > li > a |
libdvdcss div.col-xs-6 > ul > li > a |
libdvdnav div.col-xs-6 > ul > li > a |
libdvdread div.col-xs-6 > ul > li > a |
libbluray div.col-xs-6 > ul > li > a |
libdvbpsi div.col-xs-6 > ul > li > a |
libaacs div.col-xs-6 > ul > li > a |
libdvbcsa div.col-xs-6 > ul > li > a |
biTStream div.col-xs-6 > ul > li > a |
vlc-unity div.col-xs-6 > ul > li > a |
Wiki div.col-xs-6 > ul > li > a |
Forums div.col-xs-6 > ul > li > a |
Mailing-Lists div.col-xs-6 > ul > li > a |
Donate money div.col-xs-6 > ul > li > a |
Donate time div.col-xs-6 > ul > li > a |
Get Goodies div.col-xs-6 > ul > li > a |
Team div.col-xs-6 > ul > li > a |
Legal div.col-xs-6 > ul > li > a |
Contact us div.col-xs-6 > ul > li > a |
Partners div.col-xs-6 > ul > li > a |
Mirrors div.col-xs-6 > ul > li > a |
Press center div.col-xs-6 > ul > li > a |
Events div.col-xs-6 > ul > li > a |
Security center div.col-xs-6 > ul > li > a |
Get Involved div.col-xs-6 > ul > li > 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.
AHeading Hierarchy7 headingsPASS
- H6 Partners
- H1 VLC media player
- H1 Other projects from VideoLAN duplicate H1
- H1 Help us out! duplicate H1
- H1 News & Updates duplicate H1
- H1 Development Blogs duplicate H1
- H1 Social media 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
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 VLC media player | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 Other projects from … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 Help us out! | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 Social media | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title VLC: Official site -… | 20.29:1 | 4.5:1 | #000000 | #FBFBFB | Pass |
| span Toggle navigation | 20.65:1 | 4.5:1 | #000000 | #FDFDFD | Pass |
| a VideoLAN | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Team & Organization | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Consulting Services … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Events | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Legal | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Press center | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Contact us | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a VLC | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Download | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Features | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Customize | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Get Goodies | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Projects | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a DVBlast | 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.