Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureActionNo landmarksFIX
No landmarks detected
Screen reader users have no way to navigate by region.
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
DFavicon & BrandingAction19 icon(s) detectedFIX
DPrint StylesheetActionNo print stylesFIX
CForm AccessibilityAction4 of 6 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #id_edit_code | text | Custom edit code | aria-label |
| #id_url | text | Custom url | aria-label |
| input | checkbox | (none) | none |
| #metadata_text | textarea | (none) | none |
| #id_text | textarea | (none) | none |
| input | checkbox | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<textarea name="text" id="id_text">; <input type="checkbox">; <input type="checkbox">; <textarea name="metadata" id="metadata_text">
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
BLink & Button Quality2 issue(s) across 39 links and 3 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| /rentry-text-colors | Color list (opens new page, sa… | new tab | Add '(opens in new tab)' to text |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| https://get-color.com/transparent/ | Color picker that supports tra… | new tab | Add '(opens in new tab)' to text |
| https://rgbacolorpicker.com/ | Color picker that outputs RGBA | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
a (#267 on page); a (#273 on page)
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
Add '(opens in new tab)' to link text or aria-label.
/rentry-text-colors; https://get-color.com/transparent/; https://rgbacolorpicker.com/
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
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
CLighthouse Accessibility AuditsActionScore 76/100 — 6 failing, 17 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.
ARIA
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Text
Preview
How div.col-12 > form#entry-form > div.my-2 > ul#textTab |
Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. Learn more about ARIA roles and required parent element.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Text div.my-2 > ul#textTab > li.nav-item > a#text-tab |
Preview div.my-2 > ul#textTab > li.nav-item > a#preview-tab |
How div.my-2 > ul#textTab > li.nav-item > a#how-tab |
These are opportunities to improve the usage of ARIA in your application which 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 |
|---|
Preview div.my-2 > ul#textTab > li.nav-item > a#preview-tab |
How div.my-2 > ul#textTab > li.nav-item > a#how-tab |
new div.text-center > div.bottom-links > div.link-container > a.mr-1 |
what div.text-center > div.bottom-links > div.link-container > a.mx-1 |
how div.text-center > div.bottom-links > div.link-container > a.mx-1 |
langs div.text-center > div.bottom-links > div.link-container > a.mx-1 |
contacts div.text-center > div.bottom-links > div.link-container > a.mx-1 |
login div.text-center > div.bottom-links > div.link-container > a.ml-1 |
Rentry.co - Markdown Paste Service div.col-12 > form#entry-form > div.text-center > h1.mb-0 |
These are opportunities to improve the legibility of your content.
Internationalization and localization
If a page doesn't specify a `lang` attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. Learn more about the `lang` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These are opportunities to improve the interpretation of your content by users in different locales.
Tables and lists
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Text form#entry-form > div.my-2 > ul#textTab > li.nav-item |
Preview form#entry-form > div.my-2 > ul#textTab > li.nav-item |
How form#entry-form > div.my-2 > ul#textTab > li.nav-item |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
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 html |
These items highlight common accessibility best practices.
A+Heading Hierarchy78 headingsPASS
- H2 Rentry Metadata Docs
- H3 General Use
- H3 Validations
- H3 Tips
- H3 Metadata Options
- H4 GROUP: PAGE
- H5 PAGE_TITLE
- H5 PAGE_DESCRIPTION
- H5 PAGE_IMAGE
- H5 PAGE_ICON
- H4 GROUP: SHARE
- H5 SHARE_TITLE
- H5 SHARE_DESCRIPTION
- H5 SHARE_IMAGE
- H5 SHARE_TWITTER_TITLE
- H5 SHARE_TWITTER_DESCRIPTION
- H5 SHARE_TWITTER_IMAGE
- H4 GROUP: OPTION
- H5 OPTION_DISABLE_VIEWS
- H5 OPTION_DISABLE_SEARCH_ENGINE
- H5 OPTION_USE_ORIGINAL_PUB_DATE
- H4 GROUP: ACCESS
- H5 ACCESS_RECOMMENDED_THEME
- H5 ACCESS_EASY_READ
- H4 GROUP: SECRET
- H5 SECRET_VERIFY
- H5 SECRET_RAW_ACCESS_CODE
- H5 SECRET_EMAIL_ADDRESS
- H4 GROUP: SAFETY
- H5 SAFETY_PAGE_WARNING
- H5 SAFETY_PAGE_WARNING_DESCRIPTION
- H5 SAFETY_MEDIA_BLUR
- H5 SAFETY_LINK_WARNING
- H5 SAFETY_LINK_WARNING_DESCRIPTION
- H5 SAFETY_PAGE_FLAG
- H4 GROUP: CONTAINER
- H5 CONTAINER_PADDING
- H5 CONTAINER_MAX_WIDTH
- H5 CONTAINER_INNER_FOREGROUND_COLOR
- H5 CONTAINER_INNER_BACKGROUND_COLOR
- H5 CONTAINER_INNER_BACKGROUND_IMAGE
- H5 CONTAINER_INNER_BACKGROUND_IMAGE_REPEAT
- H5 CONTAINER_INNER_BACKGROUND_IMAGE_POSITION
- H5 CONTAINER_INNER_BACKGROUND_IMAGE_SIZE
- H5 CONTAINER_OUTER_FOREGROUND_COLOR
- H5 CONTAINER_OUTER_BACKGROUND_COLOR
- H5 CONTAINER_OUTER_BACKGROUND_IMAGE
- H5 CONTAINER_OUTER_BACKGROUND_IMAGE_REPEAT
- H5 CONTAINER_OUTER_BACKGROUND_IMAGE_POSITION
- H5 CONTAINER_OUTER_BACKGROUND_IMAGE_SIZE
- H5 CONTAINER_BORDER_IMAGE
- H5 CONTAINER_BORDER_IMAGE_SLICE
- H5 CONTAINER_BORDER_IMAGE_WIDTH
- H5 CONTAINER_BORDER_IMAGE_OUTSET
- H5 CONTAINER_BORDER_IMAGE_REPEAT
- H5 CONTAINER_BORDER_COLOR
- H5 CONTAINER_BORDER_WIDTH
- H5 CONTAINER_BORDER_STYLE
- H5 CONTAINER_BORDER_RADIUS
- H5 CONTAINER_SHADOW_COLOR
- H5 CONTAINER_SHADOW_OFFSET
- H5 CONTAINER_SHADOW_SPREAD
- H5 CONTAINER_SHADOW_BLUR
- H4 GROUP: CONTENT
- H5 CONTENT_FONT
- H5 CONTENT_FONT_WEIGHT
- H5 CONTENT_TEXT_DIRECTION
- H5 CONTENT_TEXT_SIZE
- H5 CONTENT_TEXT_ALIGN
- H5 CONTENT_TEXT_SHADOW_COLOR
- H5 CONTENT_TEXT_SHADOW_OFFSET
- H5 CONTENT_TEXT_SHADOW_BLUR
- H5 CONTENT_TEXT_COLOR
- H5 CONTENT_LINK_COLOR
- H5 CONTENT_BULLET_COLOR
- H5 CONTENT_LINK_BEHAVIOR
- H3 Glossary
- H1 Rentry.co - Markdown Paste Service
A+Alt Text QualityAll 5 images OKPASS
AWeb ManifestValid manifestPASS
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 Rentry.co - Markdown… | 18.09:1 | 3.0:1 | #000000 | #EDEEF0 | Pass |
| h2 Rentry Metadata Docs | 18.09:1 | 3.0:1 | #000000 | #EDEEF0 | Pass |
| h3 General Use | 18.09:1 | 3.0:1 | #000000 | #EDEEF0 | Pass |
| h3 Validations | 18.09:1 | 3.0:1 | #000000 | #EDEEF0 | Pass |
| h3 Tips | 18.09:1 | 3.0:1 | #000000 | #EDEEF0 | Pass |
| h3 Metadata Options | 18.09:1 | 3.0:1 | #000000 | #EDEEF0 | Pass |
| h3 Glossary | 18.09:1 | 3.0:1 | #000000 | #EDEEF0 | Pass |
| title Rentry.co - Markdown… | 18.09:1 | 4.5:1 | #000000 | #EDEEF0 | Pass |
| a Text | 19.24:1 | 4.5:1 | #000000 | #F4F5F6 | Pass |
| a Preview | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a How | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| th What you type | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| th What will be publish… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| td # Header 1 | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| td ## Header 2 | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span And so on up to 6. | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p Header 1 | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| p Header 2 | 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.