Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction1 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
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
FForm AccessibilityAction8 of 8 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| location_search | text | (City or attraction) | placeholder only |
| #q | search | (Where to find the best street food) | placeholder only |
| q | search | (Where to find the best street food) | placeholder only |
| location_search | text | (City or attraction...) | placeholder only |
| #g-recaptcha-response | textarea | (none) | none |
| input | submit | (none) | none |
| #main_search_submit | submit | (none) | none |
| voice-request | textarea | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<textarea name="g-recaptcha-response" id="g-recaptcha-response">; <input type="submit">; <input type="submit" id="main_search_submit">; <textarea name="voice-request">
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
Placeholder text disappears on focus and is not a reliable label.
<input type="text" name="location_search">; <input type="search" name="q" id="q">; <input type="search" name="q">; <input type="text" name="location_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
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BHeading HierarchyNo headingsREVIEW
No headings found
Headings create the document outline for screen reader navigation.
Headings (H1-H6) create the document outline for screen reader navigation.
A page with zero headings is unnavigable by assistive tech and reads as one undifferentiated wall of text.
Learn more ▾ ▴
Screen reader users navigate by jumping between H1-H6 elements. A page with no headings has no skip targets — users have to read every word linearly. Adding a heading hierarchy (one H1, then H2 sections, optional H3 subsections) makes the page skimmable for both AT and human readers.
Source: WCAG 1.3.1 / W3C WAI
CLink & Button QualityAction7 issue(s) across 12 links and 11 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://restaurantguru.com | Restaurant Guru | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/contactus | Contact us | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/request_conte… | Request content removal | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/aboutus | About us | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/privacy_polic… | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/disclaimer | Disclaimer | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/tutorial | Help | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/terms_of_use | Terms of use | new tab | Add '(opens in new tab)' to text |
| https://restaurantguru.com/cookie_policy | Cookie policy | 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 |
| <button> | (empty) | empty | Add button text or aria-label |
Add '(opens in new tab)' to link text or aria-label.
https://restaurantguru.com; https://restaurantguru.com/contactus; https://restaurantguru.com/request_content_removal; https://restaurantguru.com/aboutus; https://restaurantguru.com/privacy_policy; https://restaurantguru.com/disclaimer; https://restaurantguru.com/tutorial; https://restaurantguru.com/terms_of_use; https://restaurantguru.com/cookie_policy
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.search_btn (#65 on page); button#microphone_4; button#microphone_3; button#microphone_5; button.voice_back-button (#154 on page); button#microphone_6; button#microphone_7
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
BFavicon & Branding10 icon(s) detectedREVIEW
CLighthouse Accessibility AuditsActionScore 79/100 — 5 failing, 18 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.content > div.header__container-menu > div.wrapper_languages > button.btn div.content > div.header__container-menu > div.wrapper_languages > button.btn |
div.home_search__top-mobile > div.search_mobile > div.text_field > button#microphone_1_mobile div.home_search__top-mobile > div.search_mobile > div.text_field > button#microphone_1_mobile |
body.homepage > div#pierre_banner > button.btn body.homepage > div#pierre_banner > button.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 |
|---|
body.homepage > div#android_info > div.android_info__elem > a#close_popup body.homepage > div#android_info > div.android_info__elem > a#close_popup |
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 |
|---|
Where to try great wine div.home_search__top-mobile > div.search_mobile > div.text_field > span |
Сountry-specific versions of Restaurant Guru: div.footer > div.content > div.national_links > p |
Copyright © 2026, Restaurant Guru div.footer > div.content > div.left_block > div.copy |
Restaurant Guru div.content > div.left_block > div.copy > a |
Contact us div.footer > div.content > div.footer_links > a.for_contact |
Request content removal div.footer > div.content > div.footer_links > a.for_about |
About us div.footer > div.content > div.footer_links > a.for_about |
Privacy Policy div.footer > div.content > div.footer_links > a.for_about |
Disclaimer div.footer > div.content > div.footer_links > a.for_about |
Help div.footer > div.content > div.footer_links > a.for_about |
Terms of use div.footer > div.content > div.footer_links > a.for_about |
Cookie policy div.footer > div.content > div.footer_links > a.for_about |
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 |
|---|
Contact us div.footer > div.content > div.footer_links > a.for_contact |
Request content removal div.footer > div.content > div.footer_links > a.for_about |
About us div.footer > div.content > div.footer_links > a.for_about |
Privacy Policy div.footer > div.content > div.footer_links > a.for_about |
Disclaimer div.footer > div.content > div.footer_links > a.for_about |
Help div.footer > div.content > div.footer_links > a.for_about |
Terms of use div.footer > div.content > div.footer_links > a.for_about |
Cookie policy div.footer > div.content > div.footer_links > a.for_about |
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+Alt Text Quality1 of 6 images have issuesPASS
| Issue | Count |
|---|---|
| filename | 1 image(s) |
A404 Error PageHTTP 404, custom pagePASS
A+Web ManifestPWA-readyPASS
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 |
|---|---|---|---|---|---|
| title Suspicious activity … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span For business | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Search | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| span City or attraction | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| span Where: | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| span Find: | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| span Log In | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| p Our systems have det… | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| p Please verify that y… | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| div Copyright © 2026, | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Restaurant Guru | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Contact us | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Request content remo… | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a About us | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Privacy Policy | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Disclaimer | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Help | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Terms of use | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| a Cookie policy | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | Pass |
| div What are you looking… | 19.43:1 | 4.5:1 | #000000 | #F6F6F6 | 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.