Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FLink & Button QualityAction7 issue(s) across 252 links and 170 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| # | (empty) | empty | Add link text or aria-label |
| https://myportal.lacie.com/consumer-iden… | Registro de productos LaCie | new tab | Add '(opens in new tab)' to text |
| https://investors.seagate.com/overview/d… | Inversores | new tab | Add '(opens in new tab)' to text |
| /es/es/resources/decarbonizing-data-repo… | Read the report | img no alt | Add alt attribute to the image |
| /es/es/blog/three-truths-about-hard-driv… | Leer el artículo | img no alt | Add alt attribute to the image |
| https://investors.seagate.com/overview/d… | Inversores | new tab | Add '(opens in new tab)' to text |
| /es/es/resources/decarbonizing-data-repo… | Read the report | img no alt | Add alt attribute to the image |
| /es/es/resources/decarbonizing-data-repo… | Read the report | img no alt | Add alt attribute to the image |
| /es/es/resources/decarbonizing-data-repo… | Read the report | img no alt | Add alt attribute to the image |
| /es/es/resources/decarbonizing-data-repo… | Read the report | img no alt | Add alt attribute to the image |
| https://myportal.lacie.com/consumer-iden… | Registro de productos LaCie | new tab | Add '(opens in new tab)' to text |
| /es/es/blog/three-truths-about-hard-driv… | Leer el artículo | img no alt | Add alt attribute to the image |
| /es/es/blog/three-truths-about-hard-driv… | Leer el artículo | img no alt | Add alt attribute to the image |
| /es/es/blog/three-truths-about-hard-driv… | Leer el artículo | img no alt | Add alt attribute to the image |
| https://myportal.seagate.com/consumer-id… | Registro de productos Seagate | new tab | Add '(opens in new tab)' to text |
| https://myportal.lacie.com/consumer-iden… | Registro de productos LaCie | new tab | Add '(opens in new tab)' to text |
| https://investors.seagate.com/overview/d… | Inversores | new tab | Add '(opens in new tab)' to text |
| https://branding.seagate.com/ | Portal de la marca Seagate | 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 |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <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.
#
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
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="/es/es/resources/decarbonizing-data-report/"]; a[href="/es/es/blog/three-truths-about-hard-drives-and-ssds/"]; a[href="/es/es/resources/decarbonizing-data-report/"]; a[href="/es/es/resources/decarbonizing-data-report/"]; a[href="/es/es/resources/decarbonizing-data-report/"]; a[href="/es/es/resources/decarbonizing-data-report/"]; a[href="/es/es/blog/three-truths-about-hard-drives-and-ssds/"]; a[href="/es/es/blog/three-truths-about-hard-drives-and-ssds/"]; a[href="/es/es/blog/three-truths-about-hard-drives-and-ssds/"]; a[href="https://myportal.seagate.com/consumer-identity/product-reg/product-reg-base.jsp"] (+3 more)
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://myportal.lacie.com/consumer-identity/product-reg/product-reg-base.jsp; https://investors.seagate.com/overview/default.aspx; https://investors.seagate.com/overview/default.aspx; https://myportal.lacie.com/consumer-identity/product-reg/product-reg-base.jsp
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.FeatureContentLayoutCarousel-paginationButton (#1577 on page); button.FeatureContentLayoutCarousel-paginationButton (#1580 on page); button.FeatureContentLayoutCarousel-paginationButton (#1583 on page); button.FeatureContentLayoutCarousel-navArrowButton (#1588 on page); button.FeatureContentLayoutCarousel-navArrowButton (#1592 on page); button.ContentLayoutCarousel-paginationButton (#1757 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
F404 Error PageActionHTTP 429, bare pageFIX
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
CLandmark StructureAction4 landmarksREVIEW
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
BAlt Text Quality1 of 41 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 1 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
BLighthouse Accessibility AuditsScore 88/100 — 4 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.
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 |
|---|
div.FeatureContentLayoutCarousel > div.FeatureContentLayoutCarousel-tabContainer > div.FeatureContentLayoutCarousel-controlsPanel > button.FeatureContentLayoutCarousel-navArrowButton div.FeatureContentLayoutCarousel > div.FeatureContentLayoutCarousel-tabContainer > div.FeatureContentLayoutCarousel-controlsPanel > button.FeatureContentLayoutCarousel-navArrowButton |
div.FeatureContentLayoutCarousel > div.FeatureContentLayoutCarousel-tabContainer > div.FeatureContentLayoutCarousel-controlsPanel > button.FeatureContentLayoutCarousel-navArrowButton div.FeatureContentLayoutCarousel > div.FeatureContentLayoutCarousel-tabContainer > div.FeatureContentLayoutCarousel-controlsPanel > button.FeatureContentLayoutCarousel-navArrowButton |
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 |
|---|
Seagate body#page-3787bb5404 > section.Footer > div.Container > 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.
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 |
|---|
Facebook logo div.Footer-linkGroups > div > div.Footer-links > a.Footer-link |
Configuración de cookies div.Container > div.Footer-bottom > div.Footer-legal > button#ot-sdk-btn |
Configuración de accesibilidad div.Container > div.Footer-bottom > div.Footer-legal > button#stx-a11y-settings |
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 |
|---|
Tablas de cookies div#onetrust-group-container > div#onetrust-policy > div#onetrust-policy-text > a.ot-cookie-policy-link |
AHeading Hierarchy29 headingsPASS
- H6 Productos
- H6 Base de datos de conocimientos
- H6 Descargas de asistencia técnica
- H6 Artículos
- H6 suggested searches
- H5 Read the report
- H5 Leer el artículo
- H5 Read the report
- H5 Leer el artículo
- H5 Read the report
- H5 Read the report
- H5 Read the report
- H5 Read the report
- H5 Leer el artículo
- H5 Leer el artículo
- H5 Leer el artículo
- H3 Seleccione su país/región
- H3 Log in
- H1 32 TB en tres potentes plataformas
- H1 Diseñado para escalar. Demostrado para cumplir. duplicate H1
- H1 La infraestructura de datos del mañana, disponible hoy. duplicate H1
- H1 32 TB en tres potentes plataformas duplicate H1
- H1 Diseñado para escalar. Demostrado para cumplir. duplicate H1
- H2 El almacenamiento a escala se ejecuta en Seagate
- H2 (empty)
- H2 Nuestros recursos más recientes
- H2 En Seagate nos motiva innovar
- H2 En Seagate nos motiva innovar
- H2 En Seagate nos motiva innovar
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
Empty headings appear in the document outline but provide no information.
Empty <hN> tags break the document outline — screen-reader users navigating by heading hit dead silence.
Source: WCAG 2.4.6
AForm Accessibility1 of 3 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| input | text | ¿Qué está buscando? | aria-label |
| #rememberMe | checkbox | Recordar mi país/región y selección de idioma | none |
| input | reset | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="reset">
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
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 32 TB en tres potent… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 Diseñado para escal… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 La infraestructura d… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 32 TB en tres potent… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h1 Diseñado para escal… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 El almacenamiento a … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Nuestros recursos m… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 En Seagate nos motiv… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 En Seagate nos motiv… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 En Seagate nos motiv… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Seleccione su país/… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Log in | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Líderes en almacena… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Historias de Seagate | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Blog | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Centro de recursos | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Socios | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span España (Español) | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Buscar | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Ver todos los result… | 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.