Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction5 landmarksFIX
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
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
DWeb ManifestActionNot foundFIX
No web manifest found.
DPrint StylesheetActionNo print stylesFIX
BHeading Hierarchy18 headingsREVIEW
- H2 Why Ruby?
- H3 Ecosystem
- H3 Simple
- H3 Productivity
- H3 Community
- H2 Join the Community
- H2 News
- H3 Ruby 3.2.11 Released
- H3 Ruby 3.3.11 Released
- H3 Ruby 4.0.2 Released
- H3 Ruby 3.4.9 Released
- H2 Security
- H3 CVE-2026-27820: Buffer overflow vulnerability in Zlib::GzipReader
- H3 CVE-2025-61594: URI Credential Leakage Bypass previous fixes
- H3 CVE-2025-58767: DoS vulnerability in REXML
- H3 CVE-2025-24294: Possible Denial of Service in resolv gem
- H3 CVE-2025-43857: DoS vulnerability in net-imap
- H3 Security advisories: CVE-2025-27219, CVE-2025-27220 and CVE-2025-27221
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
Source: WCAG 2.4.6 / Google Search Central
BLink & Button Quality1 issue(s) across 62 links and 3 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://try.ruby-lang.org/playground/#co… | TRY! | new tab | Add '(opens in new tab)' to text |
| https://try.ruby-lang.org/playground/#co… | TRY! | new tab | Add '(opens in new tab)' to text |
| https://try.ruby-lang.org/playground/#co… | TRY! | new tab | Add '(opens in new tab)' to text |
| https://try.ruby-lang.org/ | Try Ruby | new tab | Add '(opens in new tab)' to text |
| https://www.rubyevents.org | Upcoming international confere… | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
Add '(opens in new tab)' to link text or aria-label.
https://try.ruby-lang.org/playground/#code=%23%20Output%20%22I%20love%20Ruby%22%0Asay%20%3D%20%22I%20love%20Ruby%22%0Aputs%20say%0A%0A%23%20Output%20%22I%20*LOVE*%20RUBY%22%0Asay%20%3D%20say.sub(%22love%22%2C%20%22*love*%22)%0Aputs%20say.upcase%0A%0A%23%20Output%20%22I%20*love*%20Ruby%22%0A%23%20five%20times%0A5.times%20%7B%20puts%20say%20%7D; https://try.ruby-lang.org/playground/#code=%23%20Ruby%20knows%20what%20you%0A%23%20mean%2C%20even%20if%20you%0A%23%20want%20to%20do%20math%20on%0A%23%20an%20entire%20Array%0Acities%20%20%3D%20%25w%5B%20London%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20Oslo%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20Paris%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20Amsterdam%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20Berlin%20%5D%0Avisited%20%3D%20%25w%5BBerlin%20Oslo%5D%0A%0Aputs%20%22I%20still%20need%20%22%20%2B%0A%20%20%20%20%20%22to%20visit%20the%20%22%20%2B%0A%20%20%20%20%20%22following%20cities%3A%22%2C%0A%20%20%20%20%20cities%20-%20visited; https://try.ruby-lang.org/playground/#code=%23%20The%20Greeter%20class%0Aclass%20Greeter%0A%20%20def%20initialize(name)%0A%20%20%20%20%40name%20%3D%20name.capitalize%0A%20%20end%0A%0A%20%20def%20salute%0A%20%20%20%20puts%20%22Hello%20%23%7B%40name%7D!%22%0A%20%20end%0Aend%0A%0A%23%20Create%20a%20new%20object%0Ag%20%3D%20Greeter.new(%22world%22)%0A%0A%23%20Output%20%22Hello%20World!%22%0Ag.salute; https://try.ruby-lang.org/; https://www.rubyevents.org
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
BFavicon & Branding4 icon(s) detectedREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
BLighthouse Accessibility AuditsScore 88/100 — 3 failing, 20 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.container > div.flex > div.flex > button#mobile-menu-toggle div.container > div.flex > div.flex > button#mobile-menu-toggle |
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 |
|---|
DOWNLOAD div.absolute > div.absolute > div.flex > a.mt-4 |
# Output "I love Ruby" figure.highlight > pre > code.language-ruby > span.c1 |
puts figure.highlight > pre > code.language-ruby > span.nb |
# Output "I *LOVE* RUBY" figure.highlight > pre > code.language-ruby > span.c1 |
puts figure.highlight > pre > code.language-ruby > span.nb |
# Output "I *love* Ruby" figure.highlight > pre > code.language-ruby > span.c1 |
# five times figure.highlight > pre > code.language-ruby > span.c1 |
puts figure.highlight > pre > code.language-ruby > span.nb |
# Ruby knows what you figure.highlight > pre > code.language-ruby > span.c1 |
# mean, even if you figure.highlight > pre > code.language-ruby > span.c1 |
# want to do math on figure.highlight > pre > code.language-ruby > span.c1 |
# an entire Array figure.highlight > pre > code.language-ruby > span.c1 |
puts figure.highlight > pre > code.language-ruby > span.nb |
# The Greeter class figure.highlight > pre > code.language-ruby > span.c1 |
name figure.highlight > pre > code.language-ruby > span.nb |
name figure.highlight > pre > code.language-ruby > span.nb |
puts figure.highlight > pre > code.language-ruby > span.nb |
# Create a new object figure.highlight > pre > code.language-ruby > span.c1 |
# Output "Hello World!" figure.highlight > pre > code.language-ruby > span.c1 |
Try Ruby div.container > div.text-center > p.text-stone-700 > a.text-semantic-text-link |
Ecosystem div.why-ruby-card > div.relative > div.relative > h3.text-5xl |
Creator of Ruby div.relative > div.flex-shrink-0 > div.text-left > p.text-xs |
Simple div.why-ruby-card > div.relative > div.relative > h3.text-5xl |
Creator of Ruby on Rails div.relative > div.flex-shrink-0 > div.text-left > p.text-xs |
Productivity div.why-ruby-card > div.relative > div.relative > h3.text-5xl |
Author of "The Pragmatic Programmer" div.relative > div.flex-shrink-0 > div.text-left > p.text-xs |
Community div.why-ruby-card > div.relative > div.relative > h3.text-5xl |
Executive Director of Rails Foundation div.relative > div.flex-shrink-0 > div.text-left > p.text-xs |
The universal motto is "MINASWAN" — Matz is nice and so we are nice section.community-section > div.container > div.text-center > p.text-lg |
MINASWAN div.container > div.text-center > p.text-lg > span.font-bold |
Matz is nice and so we are nice div.container > div.text-center > p.text-lg > span.italic |
Continue Reading... div.space-y-6 > article.pb-6 > p.mt-1 > a.text-xs |
Continue Reading... div.space-y-6 > article.pb-6 > p.mt-1 > a.text-xs |
Continue Reading... div.space-y-6 > article.pb-6 > p.mt-1 > a.text-xs |
Continue Reading... div.space-y-6 > article.pb-6 > p.mt-1 > a.text-xs |
Read more news div.grid > div.lg:col-span-2 > p.mt-4 > a.text-sm |
Read more security div.grid > div > p.mt-4 > a.text-sm |
These are opportunities to improve the legibility of your content.
Best practices
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html.fonts-loaded html.fonts-loaded |
These items highlight common accessibility best practices.
A+Alt Text QualityAll 94 images OKPASS
A+Form AccessibilityNo form controlsPASS
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 |
|---|---|---|---|---|---|
| h2 Why Ruby? | 18.09:1 | 3.0:1 | #000000 | #F1EEE4 | Pass |
| h3 Ecosystem | 18.09:1 | 3.0:1 | #000000 | #F1EEE4 | Pass |
| h3 Simple | 18.09:1 | 3.0:1 | #000000 | #F1EEE4 | Pass |
| h3 Productivity | 18.09:1 | 3.0:1 | #000000 | #F1EEE4 | Pass |
| h3 Community | 18.09:1 | 3.0:1 | #000000 | #F1EEE4 | Pass |
| title Ruby Programming Lan… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Ruby | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Install | 19.76:1 | 4.5:1 | #000000 | #F9F8F4 | Pass |
| a Docs | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | Pass |
| a Libraries | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | Pass |
| a Contribution | 15.25:1 | 4.5:1 | #000000 | #E6DBBF | Pass |
| a Community | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | Pass |
| a News | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | Pass |
| span English | 17.78:1 | 4.5:1 | #000000 | #F0ECE0 | Pass |
| span Български | 17.48:1 | 4.5:1 | #000000 | #EFEADD | Pass |
| span Deutsch | 17.30:1 | 4.5:1 | #000000 | #EEE9DA | Pass |
| span English | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | Pass |
| span Español | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | Pass |
| span Français | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | Pass |
| span Indonesia | 18.09:1 | 4.5:1 | #000000 | #F1EEE4 | 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.