Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.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
BLandmark Structure6 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
BForm Accessibility2 of 24 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #user_login | text | Username or Email Address | for/id |
| #user_pass | password | Password | for/id |
| #rememberme | checkbox | none | |
| #wccSwitchfunctional | checkbox | Enable Functional | aria-label |
| #wccSwitchanalytics | checkbox | Enable Analytics | aria-label |
| #wccSwitchadvertisement | checkbox | Enable Advertisement | aria-label |
| #wccSwitchothers | checkbox | Enable Others | aria-label |
| _sf_s | search | Search for: | none |
| #sf-input-3d33023bbd8eab2b9c09885a3ac22ca2 | checkbox | Artificial Intelligence and automation | for/id |
| #sf-input-47fdd7c17cb17b5b9bad8d3b092e87d0 | checkbox | Broadcasting | for/id |
| #sf-input-f22f7f2fc344083d929d262757682025 | checkbox | Cybersecurity, privacy and users | for/id |
| #sf-input-11acab5f9edbdb2e0f1a0b888df82b9b | checkbox | ICT infrastructure and operations | for/id |
| #sf-input-137cd92b212a6af775be82be190f86a1 | checkbox | Next generation technologies | for/id |
| #sf-input-24c72e7e5b0a63b83de7a50fd3528ed7 | checkbox | Software for standards | for/id |
| #sf-input-c41705a882b5212703cce35f59f1ac8c | checkbox | Technologies for life | for/id |
| #sf-input-d8a3b0b5928fbd4bbb47b284af8921c1 | checkbox | Testing and interoperability | for/id |
| #sf-input-8dc5fb049f8a7e9f6450dfc6dfb7dace | checkbox | Transport technologies | for/id |
| #sf-input-036e06d0c60743094b02ce48a266462b | checkbox | Wireless and mobile technologies | for/id |
| #sf-input-bfc09607117fe9e1de84cbf19784f59b | checkbox | Technologies | for/id |
| #sf-input-25679078df41dd5e58ac7d96e17ca191 | checkbox | Technical groups | for/id |
| #sf-input-b88b16c0680ea8415c43bf87b9cd6a88 | checkbox | Events | for/id |
| #sf-input-8ffef0121a51c3316a634da9f7bb392e | checkbox | News / Press Releases | for/id |
| #wp-submit | submit | (none) | none |
| input | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit" name="wp-submit" id="wp-submit">; <input type="submit">
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
CLink & Button QualityAction5 issue(s) across 137 links and 18 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.webtoffee.com/product/gdpr-c… | WebToffee product page, opens … | new tab | Add '(opens in new tab)' to text |
| https://portal.etsi.org/ | Member Portal | new tab | Add '(opens in new tab)' to text |
| https://www.etsi.org/subscribe-events/ | Sign up for Events news | new tab | Add '(opens in new tab)' to text |
| /membership/micro-enterprises | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Micro Enterprises | |||
| /membership/large-corporations | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Large Corporations | |||
| /membership/universities | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Universities | |||
| /membership/research-bodies | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Research Bodies | |||
| /membership/public-authorities | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Public Authorities | |||
| https://www.etsi.org/subcribe-news/ | Sign up for ETSI newsletter | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/ETSIstandar… | YouTube | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/etsi?tr… | new tab | Add '(opens in new tab)' to text | |
Generic link text like 'click here' doesn't describe the destination.
/membership/micro-enterprises ("Learn more"); /membership/large-corporations ("Learn more"); /membership/universities ("Learn more"); /membership/research-bodies ("Learn more"); /membership/public-authorities ("Learn more")
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
Add '(opens in new tab)' to link text or aria-label.
https://www.webtoffee.com/product/gdpr-cookie-consent/; https://portal.etsi.org/; https://www.etsi.org/subscribe-events/; https://www.etsi.org/subcribe-news/; https://www.youtube.com/user/ETSIstandards; https://www.linkedin.com/company/etsi?trk=biz-companies-cym
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
AHeading Hierarchy50 headings, 1 skip(s)PASS
- H1 Welcome
- H2 to the global community that is shaping tomorrow’s technology standards
- H3 We are the standards people.
- H2 Explore our technology landscape
- H4 Step 1 - Select your technology area of interest skipped
- H4 Step 2 - Discover ETSI work, technical groups, events and news related to that technology area
- H3 ETSI’s Response to the European Commission’s Proposal for the Cybersecurity Act 2
- H3 Technology Radar
- H3 Electronic Attestation of Attributes (EAA) PlugtestsTM
- H3 ETSI General Assembly: the time for ETSI is now!
- H2 Upcoming events
- H3 FutureNet World 2026
- H3 CRA Standards Unlocked – EU Tour
- H3 Defense Communications Forum
- H3 Electronic Attestation of Attributes (EAA) PlugtestsTM
- H3 Webinar: ETSI OpenOP – Enabling Telco Cloud Network Federation & 6G Experimentation
- H3 10th MCX PlugtestsTM
- H3 POSTPONED – TFS#9 Hackfest
- H3 Webinar: AI in evolution of Autonomous Networks
- H3 NG112 PlugtestsTM 2026
- H3 NG eCall PlugtestsTM 2026
- H3 EuCNC & 6G Summit
- H3 ETSI/IQC Quantum Safe Cryptography Conference 2026
- H3 Stay up to date on latest ETSI events.
- H2 Why work with ETSI? Empowering innovation with global standards
- H3 Network & collaborate
- H3 Access & influence
- H3 Gain competitive edge
- H3 Maximise impact
- H2 ETSI serves all types of organisations
- H3 Micro, Small and Medium-sized Enterprises (MSMEs)
- H3 Large corporations
- H3 Universities
- H3 Research bodies
- H3 Public authorities, regulators & NSOs
- H2 Trending news
- H3 ETSI’s Response to the European Commission’s Proposal for the Cybersecurity Act 2
- H3 ETSI General Assembly: the time for ETSI is now!
- H3 ETSI announces OpenCAPIF Release 4 aligned with 3GPP
- H3 ETSI 2026 Fellows Unveiled at General Assembly Dinner
- H3 From vision to action: Strengthening EU–Japan standards cooperation for trusted digital futures
- H3 ETSI Releases First Version of Open-Source Operator Platform to Enable Telco Cloud Network Federation & 6G Experimentation
- H3 Shaping Europe’s Cybersecurity Standards: Highlights from the 10th Cybersecurity Standardisation Conference
- H3 ETSI issues new Report on Security, Privacy, Trustworthiness and Sustainability for 6G Integrated Sensing and Communications
- H3 ETSI issues new Report on ISAC System and RAN Architectures
- H3 ETSI AI & DATA conference Ecosystem Collaboration, Education and “AI‑Native” Standardisation
- H3 ETSI Open Source MANO announces OSM Release NINETEEN, bringing a significant modernization of its codebase
- H3 One year on: Strengthening ETSI’s Voice in Global Digital Policy
- H3 Get regular news from ETSI
- H2 Follow us on LinkedIn
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
A+Alt Text QualityAll 40 images OKPASS
A404 Error PageHTTP 404, custom pagePASS
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 Welcome | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h2 to the global commun… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h2 Explore our technolo… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h2 Upcoming events | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h2 Empowering innovatio… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h2 ETSI serves all type… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h2 Trending news | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h2 Follow us on LinkedI… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 We are the standards… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 ETSI’s Response to… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 Technology Radar | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 Electronic Attestati… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 ETSI General Assembl… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 FutureNet World 2026 | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 CRA Standards Unlock… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 Defense Communicatio… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 Electronic Attestati… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 Webinar: ETSI OpenOP… | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 10th MCX Plugtests | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | Pass |
| h3 POSTPONED – TFS#9 … | 20.12:1 | 3.0:1 | #000000 | #FAFAFA | 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+Lighthouse Accessibility AuditsScore 95/100 — 2 failing, 27 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.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Step 1 - Select your technology area of interest form#search-filter-form-27 > ul > li.sf-field-taxonomy-technology > h4 |
These are opportunities to improve keyboard navigation in your application.
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 |
|---|
Go to slide 1 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 4 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 5 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 6 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 7 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 8 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 9 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 10 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 11 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 12 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 1 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 2 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 3 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 4 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 5 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 6 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 7 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 8 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 9 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 10 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 11 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
Go to slide 12 div.swiper_arrows_adjust > div.swiper > div.swiper-pagination > span.swiper-pagination-bullet |
These items highlight common accessibility best practices.