Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FAlt Text QualityAction24 of 242 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 24 image(s) |
| too long | 1 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
FWeb ManifestActionValid manifestFIX
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CLandmark StructureAction4 landmarksREVIEW
A page should have only one <main> landmark.
Multiple <main> elements violate the spec — there must be exactly one per page.
Learn more ▾ ▴
HTML5 spec: 'authors must not include more than one main element' visible to AT at the same time. Multiple <main>s confuse AT and break the 'jump to main content' shortcut. Refactor to a single <main> with nested <section>/<article>.
Source: HTML5 spec
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
CLink & Button QualityAction13 issue(s) across 153 links and 6 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://ifttt.com/join?source=how-it-wor… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/spotify/youtub… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/android_messag… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/if_notificatio… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/maker_webhooks… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/google_calenda… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/clickup/google… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/discord/twitte… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/feed/wordpress | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/hue/location | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/if_notificatio… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/do_button/myq_… | (empty) | empty | Add link text or aria-label |
| https://ifttt.com/connect/lifx/weather | (empty) | empty | Add link text or aria-label |
| https://itunes.apple.com/app/apple-store… | The Apple App Store | new tab | Add '(opens in new tab)' to text |
| https://play.google.com/store/apps/detai… | The Google Play Store | new tab | Add '(opens in new tab)' to text |
| https://itunes.apple.com/app/apple-store… | The Apple App Store | new tab | Add '(opens in new tab)' to text |
| https://play.google.com/store/apps/detai… | The Google Play Store | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/ifttt | new tab | Add '(opens in new tab)' to text | |
| https://www.linkedin.com/company/ifttt/ | new tab | Add '(opens in new tab)' to text | |
| https://www.instagram.com/todayatifttt/ | new tab | Add '(opens in new tab)' to text | |
| https://www.youtube.com/@IFTTT | YouTube | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/IFTTT | new tab | Add '(opens in new tab)' to text | |
| https://www.tiktok.com/@workswithifttt | TikTok | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
https://ifttt.com/join?source=how-it-works-animation; https://ifttt.com/connect/spotify/youtube; https://ifttt.com/connect/android_messages/gmail; https://ifttt.com/connect/if_notifications/location; https://ifttt.com/connect/maker_webhooks/phone_call; https://ifttt.com/connect/google_calendar/slack; https://ifttt.com/connect/clickup/google_sheets; https://ifttt.com/connect/discord/twitter; https://ifttt.com/connect/feed/wordpress; https://ifttt.com/connect/hue/location (+3 more)
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.
https://itunes.apple.com/app/apple-store/id660944635?pt=1752682&ct=homepage-mobile&mt=8; https://play.google.com/store/apps/details?id=com.ifttt.ifttt&utm_source=homepage-mobile&utm_medium=web; https://itunes.apple.com/app/apple-store/id660944635?pt=1752682&ct=/&mt=8; https://play.google.com/store/apps/details?id=com.ifttt.ifttt&utm_source=/&utm_medium=web; https://www.facebook.com/ifttt; https://www.linkedin.com/company/ifttt/; https://www.instagram.com/todayatifttt/; https://www.youtube.com/@IFTTT; https://twitter.com/IFTTT; https://www.tiktok.com/@workswithifttt
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
CFavicon & BrandingAction3 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 7 fail WCAG AAREVIEW
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 Automate. | 1.00:1 | 3.0:1 | #FFFFFF | #FFFFFF | Fail |
| h1 Save time. | 1.00:1 | 3.0:1 | #FFFFFF | #FFFFFF | Fail |
| h1 Get more done. | 1.00:1 | 3.0:1 | #FFFFFF | #FFFFFF | Fail |
| h2 How does IFTTT work? | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Connect an automatio… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Work smarter with 10… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Automate your everyd… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Save time and boost … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Set your home on aut… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Transform your workf… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 The leading no-code … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Make your Applets mo… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Smarter workflows, m… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Our most popular int… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Top productivity int… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Our top smart home i… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title IFTTT - Automate bus… | 1.32:1 | 4.5:1 | #000000 | #222222 | Fail |
| span Recent | 1.32:1 | 4.5:1 | #000000 | #222222 | Fail |
| span Recommendations | 1.32:1 | 4.5:1 | #000000 | #222222 | Fail |
| span Finance | 1.32:1 | 4.5:1 | #000000 | #222222 | Fail |
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.
A+Heading Hierarchy27 headingsPASS
- H1 Automate. Save time.Get more done.
- H2 How does IFTTT work?
- H2 Connect an automation in a minute or less
- H2 Work smarter with 1000+ services
- H2 Automate your everyday
- H3 Our most popular integrations
- H4 Easy DIY building
- H4 Your integrations, your way
- H4 Do more with multiple actions
- H4 Up-level with AI
- H2 Save time and boost productivity
- H3 Top productivity integrations
- H4 Sync tasks and calendars
- H4 Track billable hours
- H4 Streamline work communication
- H4 Use AI to jumpstart projects
- H2 Set your home on autopilot
- H3 Our top smart home integrations
- H4 Location-based control
- H4 Voice assistants
- H4 Energy-saving automations
- H4 Smart home security automation
- H2 Transform your workflows with AI
- H2 The leading no-code automation app on mobile
- H2 Make your Applets more powerful
- H2 Top brands trust IFTTT IFTTT
- H2 Smarter workflows, measurable results
A+Form AccessibilityAll 1 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #universal-search-input | search | Search | aria-label |
A404 Error PageHTTP 404, custom pagePASS
ALighthouse Accessibility AuditsScore 93/100 — 2 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.
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 |
|---|
Save new Spotify Discover Weekly songs to an archive a.applet-card-body > div.content > div.title > span |
Spotify a.applet-card-body > div.content > div.owner > span.author |
124K a.applet-card-body > div.meta > span.installs > span.number |
Google a.applet-card-body > div.content > div.owner > span.author |
132K a.applet-card-body > div.meta > span.installs > span.number |
div.content > div.owner > span > span.by div.content > div.owner > span > span.by |
div.content > div.owner > span > span.author div.content > div.owner > span > span.author |
a.applet-card-body > div.meta > span.installs > span.number a.applet-card-body > div.meta > span.installs > span.number |
div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name |
div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name |
div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name |
div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name |
div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name |
div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name |
div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name div.explore-services-module__container > div.explore-services-module__grid > a.explore-services-module__tile > span.explore-services-module__name |
div.user-testimonial-card-wrapper > div.user-testimonial-card > div.user-testimonial-card__quote > p.user-testimonial-card__quote-text div.user-testimonial-card-wrapper > div.user-testimonial-card > div.user-testimonial-card__quote > p.user-testimonial-card__quote-text |
div.user-testimonial-card > div.user-testimonial-card__person > div.user-testimonial-card__profile > p.user-testimonial-card__profile-name div.user-testimonial-card > div.user-testimonial-card__person > div.user-testimonial-card__profile > p.user-testimonial-card__profile-name |
These are opportunities to improve the legibility of your content.
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 |
|---|
main.bg--white > section.how-it-works > div.how-it-works-container > a.how-it-works-animation main.bg--white > section.how-it-works > div.how-it-works-container > a.how-it-works-animation |
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.