Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FFavicon & BrandingAction2 icon(s) detectedFIX
FWeb ManifestActionValid manifestFIX
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure17 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 10 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| input | submit | Search on the website | aria-label |
| input | submit | Search on the website | aria-label |
| #Radio-3 | radio | none | |
| #radio | radio | none | |
| #radio | radio | none | |
| #radio | radio | none | |
| #radio | radio | none | |
| #radio | radio | none | |
| #search | search | (Search…) | placeholder only |
| #search | search | (Search…) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="search" name="query" id="search">; <input type="search" name="query" id="search">
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
CLink & Button QualityAction2 issue(s) across 137 links and 12 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://accessibe.com/blog/knowledgebase… | Accessibility Screen-Reader Gu… | new tab | Add '(opens in new tab)' to text |
| https://dti.domaintools.com/?utm_source=… | Investigations | new tab | Add '(opens in new tab)' to text |
| https://dti.domaintools.com/ | Visit DomainTools Research | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/ | Visit DomainTools Technical Do… | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/api/ | Visit DomainTools API Document… | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/mcp/ | Visit DomainTools MCP Documen… | new tab | Add '(opens in new tab)' to text |
| https://research.domaintools.com/ | Go to research from DomainTool… | new tab | Add '(opens in new tab)' to text |
| https://dti.domaintools.com/?utm_source=… | Investigations | new tab | Add '(opens in new tab)' to text |
| https://dti.domaintools.com/ | Visit DomainTools Research | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/ | Visit DomainTools Technical Do… | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/api/ | Visit DomainTools API Document… | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/mcp/ | Visit DomainTools MCP Documen… | new tab | Add '(opens in new tab)' to text |
| https://research.domaintools.com/ | Go to research from DomainTool… | new tab | Add '(opens in new tab)' to text |
| https://research.domaintools.com | Experience DomainTools | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/ | Support | new tab | Add '(opens in new tab)' to text |
| https://rss.app/feeds/_22lRQJMKndkBEjVr.… | RSS | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/domaintoolsllc/ | Connect Facebook | new tab | Add '(opens in new tab)' to text |
| https://x.com/domaintools/ | Connect on X | new tab | Add '(opens in new tab)' to text |
| https://www.linkedin.com/company/domaint… | Connect on LinkedIn | new tab | Add '(opens in new tab)' to text |
| https://infosec.exchange/@DomainTools | Connect on Mastodon | new tab | Add '(opens in new tab)' to text |
| https://bsky.app/profile/did:plc:jk5cjbj… | Connect on Bluesky | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/ | DomainTools Technical Document… | new tab | Add '(opens in new tab)' to text |
| https://docs.domaintools.com/api/ | API Documentation | 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 |
Add '(opens in new tab)' to link text or aria-label.
https://accessibe.com/blog/knowledgebase/screen-reader-guide; https://dti.domaintools.com/?utm_source=https://www.domaintools.com/&utm_medi…; https://dti.domaintools.com/; https://docs.domaintools.com/; https://docs.domaintools.com/api/; https://docs.domaintools.com/mcp/; https://research.domaintools.com/; https://dti.domaintools.com/?utm_source=https://www.domaintools.com/&utm_medi…; https://dti.domaintools.com/; https://docs.domaintools.com/ (+13 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.g_clickable_btn (#1048 on page); button.g_clickable_btn (#1061 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
B404 Error PageHTTP 404, custom pageREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
BLighthouse Accessibility AuditsScore 85/100 — 5 failing, 25 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.button_arrow_wrap > div.button_arrow_element > div.g_clickable_wrap > button.g_clickable_btn div.button_arrow_wrap > div.button_arrow_element > div.g_clickable_wrap > button.g_clickable_btn |
div.slider_button_layout > div.button_arrow_wrap > div.g_clickable_wrap > button.g_clickable_btn div.slider_button_layout > div.button_arrow_wrap > div.g_clickable_wrap > button.g_clickable_btn |
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 |
|---|
div.g_btn_group > div.g_button_wrap > div.g_clickable_wrap > a.g_clickable_link div.g_btn_group > div.g_button_wrap > div.g_clickable_wrap > a.g_clickable_link |
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 |
|---|
Reject All div.cky-notice > div.cky-notice-group > div.cky-notice-btn-wrapper > button.cky-btn |
Accept All div.cky-notice > div.cky-notice-group > div.cky-notice-btn-wrapper > button.cky-btn |
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 |
|---|
Go to slide 1 div.slider_wrap > div.slider_controls > div.slider_bullet_list > button.slider_bullet_item |
Go to slide 2 div.slider_wrap > div.slider_controls > div.slider_bullet_list > button.slider_bullet_item |
Go to slide 3 div.slider_wrap > div.slider_controls > div.slider_bullet_list > button.slider_bullet_item |
Go to slide 4 div.slider_wrap > div.slider_controls > div.slider_bullet_list > button.slider_bullet_item |
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 |
|---|
Load More div.integrations_content > div.cms-integrations > div.w-pagination-wrapper > a.w-pagination-next |
Reseller Partner div.footer_group_wrap > div.footer_group_list > div.footer_group_item > a.footer_link_wrap |
Events div.footer_group_wrap > div.footer_group_list > div.footer_group_item > a.footer_link_wrap |
Careers div.footer_group_wrap > div.footer_group_list > div.footer_group_item > a.footer_link_wrap |
A+Heading Hierarchy16 headingsPASS
- H1 See What Others Miss.
- H2 DomainTools maps the Internet to bring you the most comprehensive DNS-focused threat intelligence data.
- H2 Others Guess. We’ve Got the Data.
- H2 Bring DomainTools to the AI SOC
- H2 Crucial Context for Every Stage of a Domain’s Lifecycle
- H2 Don’t React, Act First
- H3 Detect malicious domains 10 days earlier than standard industry blocklists
- H2 Our Edge. Your Advantage.
- H2 Enrich any tool with the very best data
- H2 Resources
- H2 Navigate SOC Challenges With Your Post-RiskIQ Ally
- H3 PRODUCTS
- H3 Partners
- H3 Company
- H3 Knowledge center
- H3 Client Resources
A+Alt Text QualityAll 87 images OKPASS
| Issue | Count |
|---|---|
| too long | 1 image(s) |
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 See What Others Miss… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 DomainTools maps the… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 Others Guess. | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 We’ve Got the Data | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 Bring DomainTools to… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 Crucial Context for … | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 Don’t React, Act F… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 Our Edge. Your Advan… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 Enrich any tool with… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h2 Navigate SOC Challen… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h3 Detect malicious dom… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h3 than standard indust… | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h3 PRODUCTS | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h3 Partners | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h3 Company | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h3 Knowledge center | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| h3 Client Resources | 18.26:1 | 3.0:1 | #000000 | #EFEFEF | Pass |
| title Threat Intelligence … | 18.26:1 | 4.5:1 | #000000 | #EFEFEF | Pass |
| span Press Alt+1 for scre… | 18.26:1 | 4.5:1 | #000000 | #EFEFEF | Pass |
| a Accessibility Screen… | 18.26:1 | 4.5:1 | #000000 | #EFEFEF | 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.