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 QualityAction5 issue(s) across 222 links and 64 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /it | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| /it/news/classici-fuori-mostra-venezia-r… | Leggi tutto … | img no alt | Add alt attribute to the image |
| /it/news/la-giuria-internazionale-della-… | Leggi tutto … | img no alt | Add alt attribute to the image |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| Leggi tutto … | img no alt | Add alt attribute to the image | |
| https://www.circuitocinemavenezia.it/ese… | Acquista biglietto | new tab | Add '(opens in new tab)' to text |
| https://www.circuitocinemavenezia.it/ese… | Acquista biglietto | new tab | Add '(opens in new tab)' to text |
| https://www.labiennale.org/it/storia | <img src="https://static.labie… | img no alt | Add alt attribute to the image |
| https://www.labiennale.org/it/la-biennal… | <img src="https://static.labie… | img no alt | Add alt attribute to the image |
| https://www.labiennale.org/it/biennale-c… | <img src="https://static.labie… | img no alt | Add alt attribute to the image |
| https://www.facebook.com/Labiennalediven… | new tab | Add '(opens in new tab)' to text | |
| https://x.com/la_Biennale | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/BiennaleCha… | youtube | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/labiennale/ | new tab | Add '(opens in new tab)' to text | |
| https://www.linkedin.com/company/fondazi… | new tab | Add '(opens in new tab)' to text | |
| https://www.facebook.com/Labiennalediven… | new tab | Add '(opens in new tab)' to text | |
| https://x.com/la_Biennale | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/BiennaleCha… | youtube | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/labiennale/ | new tab | Add '(opens in new tab)' to text | |
| https://www.linkedin.com/company/fondazi… | new tab | Add '(opens in new tab)' to text | |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
/it; a.toggle (#69 on page); a#main-content
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
Add '(opens in new tab)' to link text or aria-label.
https://www.circuitocinemavenezia.it/ese/rossini/titolo/5026_the-quatermass-x…; https://www.circuitocinemavenezia.it/ese/rossini/titolo/5029_la-finestra-sul-…; https://www.facebook.com/Labiennaledivenezia; https://x.com/la_Biennale; https://www.youtube.com/user/BiennaleChannel; https://www.instagram.com/labiennale/; https://www.linkedin.com/company/fondazione-la-biennale-di-venezia; https://www.facebook.com/Labiennaledivenezia; https://x.com/la_Biennale; https://www.youtube.com/user/BiennaleChannel (+2 more)
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
Icon-only buttons need an aria-label so screen readers can announce them.
button.lb-search-btn (#1067 on page); button.lb-search-btn (#1157 on page)
Buttons with no accessible text (icon-only, no aria-label) can't be activated by voice control or understood by screen readers.
Source: WCAG 2.1 SC 4.1.2
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
DLighthouse Accessibility AuditsActionScore 66/100 — 9 failing, 23 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.
ARIA
Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. Learn how to match ARIA attributes to their roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1 div.lb-full-page-head-section > div.container > ul.slick-dots > li#slick-slide00 |
1 div.lb-news-carousel-wrap > div.container > ul.slick-dots > li#slick-slide20 |
1 div.row > section.lb-album-carousel > ul.slick-dots > li#slick-slide30 |
1 div.view > section.lb-channel-carousel > ul.slick-dots > li#slick-slide10 |
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1
2
3
4
5
6
7 body.html > div.lb-full-page-head-section > div.container > ul.slick-dots |
1
2
3
4
5
6
7
8
9 div.view > div.lb-news-carousel-wrap > div.container > ul.slick-dots |
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 div.container-fluid > div.row > section.lb-album-carousel > ul.slick-dots |
1
2
3
4
5 div.row > div.view > section.lb-channel-carousel > ul.slick-dots |
Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more about valid values for ARIA attributes.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1 div.lb-full-page-head-section > div.container > ul.slick-dots > li#slick-slide00 |
1 div.lb-news-carousel-wrap > div.container > ul.slick-dots > li#slick-slide20 |
1 div.row > section.lb-album-carousel > ul.slick-dots > li#slick-slide30 |
1 div.view > section.lb-channel-carousel > ul.slick-dots > li#slick-slide10 |
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 |
|---|
PODCAST
LA BIENNALE ON AIR
ASCOLTA
9.05 - 22.11.2026
BIENNALE ARTE 2026
ACQUI… div.lb-full-page-head-section > div.lb-full-page-carousel-wrap > div.slick-list > div.slick-track |
CINEMA
3 APRILE 2026
BIENNALE COLLEGE CINEMA 2026/2027: ANCORA DIECI GIORNI P… div.lb-news-carousel-wrap > div.lb-news-carousel > div.slick-list > div.slick-track |
BIENNALE DANZA 2025
Myth Makers
BIENNALE MUSICA 2025
La Stella Dentro
BIENN… div.row > section.lb-album-carousel > div.slick-list > div.slick-track |
TEATRO 14 APRILE 2026
Biennale Teatro 2026 - Jacopo Giacomoni (trailer)
TEATR… div.view > section.lb-channel-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.
Names and labels
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta |
a.lb-iniziative-content > div.lb-media-wrap > div.lb-media-content > button.lb-cta a.lb-iniziative-content > div.lb-media-wrap > div.lb-media-content > button.lb-cta |
a.lb-iniziative-content > div.lb-media-wrap > div.lb-media-content > button.lb-cta a.lb-iniziative-content > div.lb-media-wrap > div.lb-media-content > button.lb-cta |
a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta |
a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta |
a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta a.lb-entry-link > div.lb-entry-wrapper > div.lb-cta-wrap > button.lb-cta |
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.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lb-media div.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lb-media |
article.lb-agenda-item > div.lb-media-wrapper > div.lb-square > img.lb-media article.lb-agenda-item > div.lb-media-wrapper > div.lb-square > img.lb-media |
article.lb-agenda-item > div.lb-media-wrapper > div.lb-square > img.lb-media article.lb-agenda-item > div.lb-media-wrapper > div.lb-square > img.lb-media |
div.row > div.col-sm-7 > div.lb-square > img.lazy div.row > div.col-sm-7 > div.lb-square > img.lazy |
div.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lazy div.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lazy |
div.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lazy div.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lazy |
div.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lazy div.lb-entry-wrapper > div.lb-media-wrapper > div.lb-square > img.lazy |
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.html > div.lb-nav-head-wrap > a body.html > div.lb-nav-head-wrap > 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.
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 |
|---|
CINEMA a.lb-entry-link > div.lb-entry-wrapper > div.lb-meta > div.lb-category |
TEATRO 16 APRILE 2026 div.content-align-wrap > div.content-align-bottom > div.lb-channel-item-meta > div.lb-title |
TUTTI I CONTATTI section#block-bean-box-contatti > div.lb-content > p > a.lb-cta-arrow-2 |
UFFICI STAMPA section#block-bean-box-press > div.lb-content > p > a.lb-cta-arrow-2 |
ISCRIVITI section#block-bean-box-newsletter > div.lb-content > p > a.lb-cta-arrow-2 |
These are opportunities to improve the legibility of your content.
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 |
|---|
1 section.lb-album-carousel > ul.slick-dots > li#slick-slide30 > button |
These items highlight common accessibility best practices.
C404 Error PageActionHTTP 404, custom pageREVIEW
BFavicon & Branding9 icon(s) detectedREVIEW
CWeb ManifestActionValid manifestREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 2 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 Homepage | 10.40:1 | 3.0:1 | #000000 | #B8B6B6 | Pass |
| h2 La Biennale on Air | 7.66:1 | 3.0:1 | #000000 | #9B9CA0 | Pass |
| h2 Biennale Arte 2026 | 3.19:1 | 3.0:1 | #000000 | #5D5D5E | Pass |
| h2 Biennale Teatro 2026 | 2.61:1 | 3.0:1 | #000000 | #505051 | Fail |
| h2 Biennale Danza 2026 | 2.02:1 | 3.0:1 | #000000 | #3F4041 | Fail |
| h2 Biennale Cinema 2026 | 13.62:1 | 3.0:1 | #000000 | #D0D0D0 | Pass |
| h2 Biennale Musica 2026 | 17.46:1 | 3.0:1 | #000000 | #EAEAEA | Pass |
| h2 Acquista online | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 La Biennale on Air | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Biennale Arte 2026 | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 News | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Sfoglia l’album | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Agenda | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Biennale Storia | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Focus On | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Biennale Channel | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Cosa Accade | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 Settori | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 La Biennale di Venez… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | Pass |
| h2 La Biennale di Venez… | 18.10:1 | 3.0:1 | #000000 | #EEEEEE | 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.
A+Heading Hierarchy31 headingsPASS
- H1 Homepage
- H2 La Biennale on Air
- H2 Biennale Arte 2026
- H2 Biennale Teatro 2026
- H2 Biennale Danza 2026
- H2 Biennale Cinema 2026
- H2 Biennale Musica 2026
- H2 Acquista online
- H2 La Biennale on Air
- H2 Biennale Arte 2026
- H2 News
- H2 Sfoglia l’album
- H2 Agenda
- H3 Biennale Educational
- H3 Acquista online
- H2 Biennale Storia
- H3 2009
- H4 György Kurtág Leone d’oro alla carriera 27 settembre 2009, Teatro alle Tese
- H2 Focus On
- H3 Storia della Biennale di Venezia
- H3 La Biennale on Air
- H3 Biennale College 2026
- H2 Biennale Channel
- H2 Cosa Accade
- H2 Settori
- H2 La Biennale di Venezia
- H2 La Biennale di Venezia
- H2 Contatti
- H2 Press
- H2 Newsletter
- H2 Seguici su
AForm Accessibility1 of 2 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #edit-qs | text | Digita cosa stai cercando | for/id |
| s | text | (Cerca) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="s">
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