Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure3 landmarksREVIEW
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 Quality30 links, 9 buttons — all OKREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /help/faq/browser-platform-and-hardware-… | Learn more about supported dev… | new tab | Add '(opens in new tab)' to text |
| https://health.autodesk.com/ | Server Status | new tab | Add '(opens in new tab)' to text |
| https://apps.chrome/getit/acc638ca-7aff-… | Add to chromebook | img no alt | Add alt attribute to the image |
| /terms | Terms of Service | new tab | Add '(opens in new tab)' to text |
| https://www.autodesk.com/company/legal-n… | Legal & Trademarks | new tab | Add '(opens in new tab)' to text |
| /help/faq | FAQ | new tab | Add '(opens in new tab)' to text |
| https://www.tinkercad.com/privacy | Privacy Policy | new tab | Add '(opens in new tab)' to text |
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://apps.chrome/getit/acc638ca-7aff-405c-8648-d57276d74d1a"]
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.
/help/faq/browser-platform-and-hardware-requirements; https://health.autodesk.com/; /terms; https://www.autodesk.com/company/legal-notices-trademarks; /help/faq; https://www.tinkercad.com/privacy
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
CFavicon & BrandingAction4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 9 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
3 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 |
|---|---|---|---|---|---|
| h1 Looks like you’re … | 4.19:1 | 3.0:1 | #000000 | #186CD9 | Pass |
| h2 Tomorrow’s innovat… | 3.45:1 | 3.0:1 | #000000 | #1356E1 | Pass |
| title Tinkercad | 4.59:1 | 4.5:1 | #000000 | #1477D1 | Pass |
| div Tinkercad works best… | 3.66:1 | 4.5:1 | #000000 | #1F5BE3 | Fail |
| a Proceed anyway | 3.72:1 | 4.5:1 | #000000 | #1E5CE5 | Fail |
| a Back to website | 3.67:1 | 4.5:1 | #000000 | #185BE5 | Fail |
| a Learn more about sup… | 3.60:1 | 4.5:1 | #000000 | #1759E5 | Fail |
| p At Autodesk, we empo… | 3.32:1 | 4.5:1 | #000000 | #1053DF | Fail |
| a Start Tinkering | 3.21:1 | 4.5:1 | #000000 | #0A51DB | Fail |
| a Join Class | 2.93:1 | 4.5:1 | #000000 | #0449D6 | Fail |
| p Tinkercad is a free … | 3.08:1 | 4.5:1 | #000000 | #014DDA | Fail |
| div Tinker | 3.46:1 | 4.5:1 | #000000 | #0557E1 | Fail |
| a 3D Design | 7.00:1 | 4.5:1 | #000000 | #6794EA | Pass |
| a Circuits | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Codeblocks | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a iPad App | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Sim Lab | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Teachers | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Classrooms | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Projects | 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.
AHeading Hierarchy4 headings, 1 skip(s)PASS
- H1 Looks like you’re using a small screen
- H2 Tomorrow’s innovators are made today
- H4 Send us feedback skipped
- H4 Message sent
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 3 images OKPASS
A+Form AccessibilityAll 2 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| select | select | Select language | aria-label |
| #descriptionField | textarea | Message | for/id |
A+Web ManifestPWA-readyPASS
ALighthouse Accessibility AuditsScore 92/100 — 3 failing, 26 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 |
|---|
Free for everyone div.home > div.home-bullets > div.home-bullets-item > h3 |
Start designing in 3D div.home-products > div.home-products-item > div.home-products-item-text > h4 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
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 |
|---|
footer#footer > div.footer-kidsafe > div#ksp-seals > a |
Screen readers cannot translate non-text content. Adding alternate text to `<object>` elements helps screen readers convey meaning to users. Learn more about alt text for `object` elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.footer-kidsafe > div#ksp-seals > a > object div.footer-kidsafe > div#ksp-seals > a > object |
div.footer-kidsafe > div#ksp-seals > a > object div.footer-kidsafe > div#ksp-seals > a > object |
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.