Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FFavicon & BrandingAction1 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
BLandmark Structure16 landmarksREVIEW
Multiple navigations need aria-label to distinguish them for screen readers.
Some <nav> elements lack aria-label — screen-reader users hear 'navigation' multiple times with no way to distinguish them.
Learn more ▾ ▴
When a page has multiple <nav> regions (primary, footer, breadcrumb), each needs aria-label or aria-labelledby. AT users navigate by landmark; identical 'navigation' announcements force them to enter each one to discover purpose.
Source: WAI-ARIA Authoring Practices
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
BLink & Button Quality1 issue(s) across 244 links and 7 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| (empty) | empty | Add link text or aria-label | |
| https://www.unimi.it/it/ateneo/normative… | Privacy policy | new tab | Add '(opens in new tab)' to text |
| https://www.unimi.it/it/privacy-e-cookie | Documentazione cookie | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
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.unimi.it/it/ateneo/normative/privacy; https://www.unimi.it/it/privacy-e-cookie
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
B404 Error PageHTTP 404, custom pageREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 18 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
2 contrast failures on background images/gradients
These failures are invisible to CSS-based accessibility tools like Lighthouse. The text may be fine on a solid background, but fails when rendered over an image or gradient.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h2 Language switcher | 1.06:1 | 3.0:1 | #000000 | #0B0B06 | Fail |
| h2 Profili | 1.05:1 | 3.0:1 | #000000 | #070806 | Fail |
| h2 Main navigation | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 I corsi | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 Main navigation | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 Top navbar | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 Strutture | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 Servizi | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 Concorsi, selezioni … | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 Come fare per | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 footer | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| h2 social | 2.06:1 | 3.0:1 | #000000 | #004082 | Fail |
| title home | Università d… | 5.59:1 | 4.5:1 | #000000 | #738697 | Pass |
| a Salta al contenuto p… | 5.96:1 | 4.5:1 | #000000 | #778B9C | Pass |
| a ITA | 2.48:1 | 4.5:1 | #000000 | #5F492F | Fail |
| a ENG | 1.05:1 | 4.5:1 | #000000 | #070905 | Fail |
| a Unimia | 1.65:1 | 4.5:1 | #000000 | #183453 | Fail |
| a Segreterie | 2.06:1 | 4.5:1 | #000000 | #004082 | Fail |
| a Ariel | 2.06:1 | 4.5:1 | #000000 | #004082 | Fail |
| a Biblioteche | 2.06:1 | 4.5:1 | #000000 | #004082 | Fail |
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 Hierarchy13 headingsPASS
- H2 Language switcher
- H2 Profili
- H2 Main navigation
- H2 I corsi
- H2 Main navigation
- H2 Top navbar
- H1 home
- H2 Strutture
- H2 Servizi
- H2 Concorsi, selezioni e gare
- H2 Come fare per
- H2 footer
- H2 social
A+Alt Text QualityAll 34 images OKPASS
A+Form AccessibilityAll 2 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #edit-keys-2 | search | Cerca | for/id |
| #edit-keys | search | Cerca | for/id |
A+Lighthouse Accessibility AuditsScore 96/100 — 1 failing, 23 passedPASS
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.
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 |
|---|
Facoltà e scuole nav#block-piedipagina > ul.menu > li.first > a |
Dipartimenti nav#block-piedipagina > ul.menu > li > a |
Sedi nav#block-piedipagina > ul.menu > li > a |
Uffici nav#block-piedipagina > ul.menu > li.last > a |
Segreterie studenti nav#block-piedipagina-3 > ul.menu > li.first > a |
Servizio bibliotecario nav#block-piedipagina-3 > ul.menu > li > a |
Servizi per studenti con disabilità nav#block-piedipagina-3 > ul.menu > li > a |
Servizi per studenti con DSA nav#block-piedipagina-3 > ul.menu > li > a |
Servizi tecnologici nav#block-piedipagina-3 > ul.menu > li.last > a |
Professori nav#block-piedipagina-4 > ul.menu > li.first > a |
Ricercatori nav#block-piedipagina-4 > ul.menu > li > a |
Tecnici amministrativi e bibliotecari nav#block-piedipagina-4 > ul.menu > li > a |
Consulenze e collaborazioni nav#block-piedipagina-4 > ul.menu > li > a |
Incarichi di ricerca nav#block-piedipagina-4 > ul.menu > li > a |
Gare e contratti nav#block-piedipagina-4 > ul.menu > li.last > a |
Amministrazione trasparente nav#block-piedipagina-5 > ul.menu > li.first > a |
Dichiarazione di accessibilità nav#block-piedipagina-5 > ul.menu > li > a |
Privacy e cookie nav#block-piedipagina-5 > ul.menu > li > a |
Cookie settings nav#block-piedipagina-5 > ul.menu > li > a |
Note legali nav#block-piedipagina-5 > ul.menu > li > a |
Mappa del sito nav#block-piedipagina-5 > ul.menu > li.last > a |
Tel: +39 02 5032 5032 div.field > div.field--item > p > a |
InformaStudenti div.field > div.field--item > p > a |
Posta Elettronica Certificata div.field > div.field--item > p > a |
These items highlight common accessibility best practices.