Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DForm AccessibilityAction5 of 8 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #searchIn | select | none | |
| #sortBy | select | none | |
| #searchInWhere | select | none | |
| input | search | (Search..) | placeholder only |
| #languageFormMobile | search | (Type your language) | placeholder only |
| #languageForm | search | (Type or select your language) | placeholder only |
| #searchFrom | text | (none) | none |
| #searchTo | text | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="text" id="searchFrom">; <input type="text" id="searchTo">
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="search" id="languageFormMobile">; <input type="search">; <input type="search" id="languageForm">
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
DLink & Button QualityAction2 issue(s) across 328 links and 10 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.vaticannews.va/cdn-cgi/conte… | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/vaticannews/?br… | new tab | Add '(opens in new tab)' to text | |
| https://x.com/vaticannews | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/c/VaticanNewsEN | Youtube | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/vaticannews/ | new tab | Add '(opens in new tab)' to text | |
| https://www.vaticannews.va/en.rss.xml | Rss | new tab | Add '(opens in new tab)' to text |
| /en/cookie-policy.html | click here | generic text | Replace with descriptive text |
Before: click here Suggested: Cookie Policy.Html | |||
| https://www.vatican.va/content/leo-xiv/e… | The Pope's Agenda | new tab | Add '(opens in new tab)' to text |
| https://www.comunicazione.va/en/progetti… | progetto-pentecoste-en.png | new tab | Add '(opens in new tab)' to text |
| /en/epg.html | <img src="/etc/designs/vatican… | img no alt | Add alt attribute to the image |
| https://www.comunicazione.va/en/sostieni… | Your contribution for a great … | new tab | Add '(opens in new tab)' to text |
| https://www.vatican.va/content/vatican/e… | Vatican.va | new tab | Add '(opens in new tab)' to text |
| https://www.osservatoreromano.va/en.html | L'Osservatore Romano | new tab | Add '(opens in new tab)' to text |
| https://www.vaticanstate.va/en | Vaticanstate.va | new tab | Add '(opens in new tab)' to text |
| https://www.obolodisanpietro.va/en.html | Peter's Pence | new tab | Add '(opens in new tab)' to text |
| https://photo.vaticanmedia.va/en/ | Photo | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/vaticannews/?br… | new tab | Add '(opens in new tab)' to text | |
| https://x.com/vaticannews | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/c/VaticanNewsEN | Youtube | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/vaticannews/ | new tab | Add '(opens in new tab)' to text | |
| https://www.vaticannews.va/en.rss.xml | Rss | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
https://www.vaticannews.va/cdn-cgi/content?id=NFE1jmMP6K0H7I68WazubDER9r9KrxN…
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.
/en/cookie-policy.html ("click 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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://www.vatican.va/content/leo-xiv/en/events/month.dir.html/2026/4.html"]; a[href="/en/epg.html"]
Image-only links with no alt are unidentifiable to screen-reader users — link's destination is invisible.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://www.facebook.com/vaticannews/?brand_redir=DISABLE; https://x.com/vaticannews; https://www.youtube.com/c/VaticanNewsEN; https://www.instagram.com/vaticannews/; https://www.vaticannews.va/en.rss.xml; https://www.comunicazione.va/en/progetti/progetto-pentecoste.html; https://www.comunicazione.va/en/sostienici.html; https://www.vatican.va/content/vatican/en.html; https://www.osservatoreromano.va/en.html; https://www.vaticanstate.va/en (+7 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
F404 Error PageActionHTTP 404, bare pageFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
DLighthouse Accessibility AuditsActionScore 64/100 — 8 failing, 16 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 |
|---|
CHURCH IN THE WORLD main#main-container > div.content > section#tagsRelated-3380b26115 > div#accordion-1_head |
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
Select your language div.header-main__container > nav.header-main__nav > div.header-main__nav-container > div#mobile-selector |
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 |
|---|
THE SECRETS OF THE VATICAN MUSEUMS div.teaser__contentWrapper > a > figure.teaser__image > div.ac-connotation |
These are opportunities to improve the legibility of your content.
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.sidebar-main > a.shoulder_banner--agendaDelPapa > figure > img div.sidebar-main > a.shoulder_banner--agendaDelPapa > figure > img |
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 |
|---|
main#main-container > div.content > div.sidebar-main > a.teaser main#main-container > div.content > div.sidebar-main > a.teaser |
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
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
head > meta head > meta |
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 |
|---|
Go to the latest Audience div.content__card > article.card > div.card__footer > a.showAll |
Go to the latest Angelus div.content__card > article.card > div.card__footer > a.showAll |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
EDITORIAL div.teaser--type-article > article > div.teaser__contentWrapper > a |
Pope Leo: 'Pope Francis was a devoted shepherd who touched so many hearts' div.teaser__list > div.teaser--vns > article > a |
LISTEN TO OUR PODCASTS main#main-container > div.content > div.sidebar-main > a.teaser |
PRAYERS main#main-container > div.content > div.sidebar-main > a.teaser |
SUBSCRIBE TO OUR NEWSLETTERS
To get the latest news main#main-container > div.content > div.sidebar-main > a.teaser |
YOUR CONTRIBUTION FOR A GREAT MISSION:
SUPPORT US IN BRINGING THE POPE'S WORDS … main#main-container > div.content > div#banner-donazioni > a |
THE SECRETS OF THE VATICAN MUSEUMS div.teaser--type-video > article > div.teaser__contentWrapper > a |
Papal audiences div.content--large__inner > div.content__card > article.card > a.home_card |
Angelus div.content--large__inner > div.content__card > article.card > a.home_card |
Word of the day div.content--large__inner > div.content__card > article.card > a.home_card |
Saint of the day div.content--large__inner > div.content__card > article.card > a.home_card |
Liturgical Feasts div.content--large__inner > div.content__card > article.card > a.home_card |
Prayers div.content--large__inner > div.content__card > article.card > a.home_card |
CAlt Text QualityAction3 of 46 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 1 image(s) |
| filename | 2 image(s) |
| too long | 4 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
BFavicon & Branding14 icon(s) detectedREVIEW
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 |
|---|---|---|---|---|---|
| h2 Menu | 3.57:1 | 3.0:1 | #000000 | #CC0000 | Pass |
| h2 Search | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Search | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 ► … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 ► … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Africa | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Church in the World | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Stories | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Pope's activities | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Papal audiences | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Angelus | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Our faith | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title News from the Vatica… | 3.57:1 | 4.5:1 | #000000 | #CC0000 | Fail |
| span News from the Vatica… | 3.57:1 | 4.5:1 | #000000 | #CC0000 | Fail |
| span Menu | 8.20:1 | 4.5:1 | #000000 | #DD8C8C | Pass |
| a Pope | 17.30:1 | 4.5:1 | #000000 | #E9E9E9 | Pass |
| a Vatican | 17.30:1 | 4.5:1 | #000000 | #E9E9E9 | Pass |
| a Church | 17.30:1 | 4.5:1 | #000000 | #E9E9E9 | Pass |
| a World | 17.30:1 | 4.5:1 | #000000 | #E9E9E9 | Pass |
| a Select your language | 17.30:1 | 4.5:1 | #000000 | #E9E9E9 | 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.
ALandmark Structure6 landmarksPASS
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
A+Heading Hierarchy94 headingsPASS
- H1 News from the Vatican - News about the Church
- H2 Menu
- H2 Search
- H2 Search
- H2 Pope at hospital in Equatorial Guinea: Small acts of kindness are the ‘hidden’ daily poems of life
- H2 Claretian priest reflects on the transformation of the Church in Equatorial Guinea
- H2 Pope in Equatorial Guinea: Christ manifests harmony between faith and reason
- H2 Pope Leo: 'Pope Francis was a devoted shepherd who touched so many hearts'
- H2 Pope calls Equatorial Guinea’s leaders to reflect on justice and development
- H2 The journey that reveals the pontificate
- H2 Equatorial Guinea, Malabo, Farewell from local Civil Authorities
- H2 Day Nine in Africa: From Angola to Equatorial Guinea
- H2 Claretian priest reflects on the transformation of the Church in Equatorial Guinea
- H2 Pope at hospital in Equatorial Guinea: Small acts of kindness are the ‘hidden’ daily poems of life
- H2 Pope Leo: 'Pope Francis was a devoted shepherd who touched so many hearts'
- H2 Pope in Equatorial Guinea: Christ manifests harmony between faith and reason
- H2 The journey that reveals the pontificate
- H2 Pope calls Equatorial Guinea’s leaders to reflect on justice and development
- H2 Pope Leo recalls Francis’ legacy of generosity, mercy for Church and world
- H2 Pope: Church in Angola is growing and can help promote universal rights
- H2 Pope’s psychiatric hospital visit a ‘huge’ message on mental health
- H2 Angola will need time and planning to internalise Pope Leo's messages, says Bishop Estevao
- H2 Pope Leo XIV begins Apostolic Journey to Equatorial Guinea
- H2 Mass at Casa Santa Marta on anniversary of Pope Francis' death
- H2 Pope Leo concludes visit to Angola, flies to Equatorial Guinea
- H2 “Todos, todos, todos!”
- H2 Sri Lanka marks 7 years since Easter attacks amid continuing calls for justice
- H2 Maintaining hope: Equatorial Guinea waits for the Pope
- H2 Day Eight in Africa: Pope Leo visits the elderly and prays with the faithful in Saurimo
- H2 Sudanese priest in Angola: Sudan in need of Pope’s message for peace
- H2 Pope: Promote a reconciled memory by educating everyone in harmony
- H2 Holy See Permanent Obeserver to FAO: "Peace is essential to eradicate hunger"
- H2 Pope at Mass in Saurimo: 'The Risen One illumines our path and sanctifies us'
- H2 Celebrations in memory of Pope Francis
- H2 Pope in Angola: Jesus is with us when we forgive and pray together
- H2 'Pope Leo’s visit is an unparalleled moment for us'
- H2 Day Seven in Africa: Pope invites Angolans to begin anew, loving with a mother's heart
- H2 Pope at Mamã Muxima: It is love that must triumph, not war
- H2 Musicians, missionaries and medics at the Pope’s Mass in Kilamba
- H2 Pope Leo’s historic visit reinforces Mama Muxima as a shrine of solace in Angola
- H2 Pope Leo appeals for dialogue to end wars in Ukraine and Middle East
- H2 Pope’s journey in Africa: A call to renew our hearts
- H2 Pope at Mass in Kilamba: Jesus walks beside the Church in Angola
- H2 Pope encourages Italy’s Catholic University to foster knowledge and faith
- H2 Making peace a reality: President of Cameroonian Bishops on Pope’s visit
- H2 Day Six in Africa: From Cameroon to Angola
- H2 Pope to Angolan authorities: Don't suppress youth's visions or the elderly's dreams
- H2 Pope Leo XIV lands in Angola for third leg of his Journey
- H2 Lord’s Day Reflection: Emmaus – A Journey of Hope and Recognition
- H2 Pope: I am in Africa to encourage Catholics, not to debate with Trump
- H2 Pope Leo leaves Cameroon and heads to Angola
- H2 Pope: The peace of Christ calms life's storms, helps us go forward without fear
- H2 JRS Cameroon: Serving those forgotten by the international community
- H2 Day Five in Africa: Pope says ‘all of us’ must help address global hunger
- H2 Pope Leo XIV meets with religious superiors in Cameroon
- H2 Rekindling hope among Cameroon’s students
- H2 Pope to academic community: Form leaders dedicated to serving the common good
- H2 Pope Leo visits St. Paul Catholic Hospital in Cameroon
- H2 Kenya’s Catholic Bishops call for renewal, justice, and protection of life
- H2 Pope at Mass in Douala: African youth must reject violence and corruption
- H2 Psychology and Gospel: Sr. Kakali brings hope to young people in India
- H2 ► THE COUNCIL TODAY
- H2 Pope Leo recalls Francis’ legacy of generosity, mercy for Church and world
- H2 “Todos, todos, todos!”
- H2 Pope’s psychiatric hospital visit a ‘huge’ message on mental health
- H2 Pope: Church in Angola is growing and can help promote universal rights
- H2 ► #UKRAINE
- H2 Sri Lanka marks 7 years since Easter attacks amid continuing calls for justice
- H2 'Pope Leo’s visit is an unparalleled moment for us'
- H2 Africa
- H2 Angola will need time and planning to internalise Pope Leo's messages, says Bishop Estevao
- H2 Pope Leo’s historic visit reinforces Mama Muxima as a shrine of solace in Angola
- H2 Kenya’s Catholic Bishops call for renewal, justice, and protection of life
- H2 Kenya to host 21st AMECEA Plenary Assembly
- H2 Tanzania: Bishop Bernardin Francis Mfumbusa has died
- H2 Church in the World
- H2 Day Eight in Africa: Pope Leo visits the elderly and prays with the faithful in Saurimo
- H2 Sudanese priest in Angola: Sudan in need of Pope’s message for peace
- H2 Musicians, missionaries and medics at the Pope’s Mass in Kilamba
- H2 Psychology and Gospel: Sr. Kakali brings hope to young people in India
- H2 World News
- H2 Maintaining hope: Equatorial Guinea waits for the Pope
- H2 Cameroonians hope Pope’s visit will 'bring healing' to a divided country
- H2 Cameroon: Separatists announce pause of hostilities for Pope's visit
- H2 Iran- US talks end without agreement
- H2 Stories
- H2 Events and History of the Jubilee
- H2 Vatican Museums: Laocoön and 'the Arm of Memory'
- H2 Azerbaijani becomes 56th language available on Vatican News
- H2 "Work with Us": Website to apply for a job at the Vatican
- H2 Pope's activities
- H2 Papal audiences
- H2 Angelus
- H2 Our faith