MOTS Audit
← Back to audit tool
"Is your website accessible?" sounds simple. But accessible doesn't just mean "loads in a browser." Here's what each pillar really means, with side-by-side examples your developer can copy.
Pillar 1 of 5
The myth: "If my site is on Google somewhere, I'm fine."
The reality: Being indexed isn't the same as being findable. SEO is about giving Google the right signals — titles, descriptions, headings, structured data — so it knows when to show your page and what to display in the result.
<title>Home</title> <meta name="description" content="Welcome to our website."> <!-- no structured data -->
<title>Sharma Electronics — Sitabuldi, Nagpur · Mixers, fans, ACs</title> <meta name="description" content="Family-run electronics store in Sitabuldi since 1985. Same-day delivery in Nagpur...">
Pillar 2 of 5
The myth: "I checked on my phone, it opens fine."
The reality: "Opens" isn't the same as "usable." Mobile-ready means text is readable without zooming, buttons are far enough apart that thumbs don't mis-tap, and the page loads fast on a slow 4G connection — not the office WiFi the developer tested on.
<button style="padding:4px 6px; font-size:11px"> Buy </button> /* Thumb hits Wishlist by mistake */
<button style="padding:12px 14px; font-size:14px; margin-bottom:8px"> Buy now </button> /* Easy to hit, easy to read */
Pillar 3 of 5
The myth: "AI? My customers Google me, they don't use ChatGPT."
The reality: Google's AI Overview already answers 30%+ of searches before showing blue links. ChatGPT, Gemini, and Perplexity all extract facts from websites. If your site doesn't tell AI tools who you are in machine-readable form, they'll guess — or skip you entirely.
<body> <h1>Sharma Electronics</h1> <p>We sell mixers and fans.</p> </body> <!-- no JSON-LD, no llms.txt -->
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "LocalBusiness", "name": "Sharma Electronics", "address": { ... }, "foundingDate": "1985" } </script>
/llms.txt, parse /robots.txt for rules covering GPTBot, ClaudeBot, Google-Extended, PerplexityBot and others, count JSON-LD blocks and check for Organization/LocalBusiness types, verify author + publication metadata, and confirm a valid sitemap.Pillar 4 of 5
The myth: "Accessibility is for blind people. I don't have any blind customers."
The reality: Accessibility helps everyone: a low-contrast button is invisible to elderly customers and to anyone reading outside in bright sunlight. Alt text on product images becomes searchable on Google. A keyboard-navigable form helps a customer with a broken touchscreen. WCAG accessibility correlates strongly with conversion rate.
<button style="background:#f1f5f9; color:#cbd5e1"> Add to cart </button> /* Contrast ratio: 1.6 (fails WCAG) */
<button style="background:#1e3a5f; color:#ffffff"> Add to cart </button> /* Contrast ratio: 11.5 (WCAG AAA) */
<img src="/images/mixer-bajaj-500w.jpg" > /* Google can't index this product. */ /* Screen reader skips it. */
<img src="/images/mixer-bajaj-500w.jpg" alt="Bajaj 500W mixer-grinder with 3 jars, black" > /* Indexable by Google Images. */ /* Read out by screen readers. */
Pillar 5 of 5
The myth: "I have HTTPS, so my site is secure."
The reality: HTTPS is the front door's lock. Security headers are the alarm system, the cameras, and the smoke detector. A visitor (or Google) can tell the difference within seconds — and 84% of shoppers say they leave a site that looks untrustworthy.
Your connection is not private.
/* Certificate expired 12 days ago.
No HSTS header — first-time
visitors loaded over HTTP and
any login was sent in plain text. */
Connection is secure.
/* Cert valid for 89 days, auto-renews.
HSTS header forces HTTPS for all
future visits (max-age=63072000).
No mixed content. */
Strict-Transport-Security:
max-age=63072000;
includeSubDomains
<footer> © 2025 example-store <!-- no address --> <!-- no phone --> <!-- no privacy policy --> <!-- no GST/registration --> </footer>
<footer> Sharma Electronics Shop 12, Sitabuldi Main Road, Nagpur 440012 Phone: +91 555-0100 · GSTIN: 27AAACS1234A1Z5 <a href="/privacy/">Privacy</a> · <a href="/terms/">Terms</a> </footer>