Why does the auditor flag multiple H1 tags as a warning?
A web page should contain exactly one <h1> tag representing the primary topic. Having multiple H1 tags dilutes topical relevance signals for search engine crawlers.
How do missing alt tags on images affect SEO?
Search bots cannot see images visually. They rely on the alt attribute to understand image context. Missing alt tags harm web accessibility scores and prevent images from appearing in Google Image Search.
What is heading hierarchy and why does it matter?
Heading hierarchy is the logical order of headings (H1 -> H2 -> H3). Skipping levels (like going from H2 straight to H4) breaks document structure for screen readers and search crawlers.
Why is a canonical link tag required for every page?
Canonical tags tell search engine crawlers which URL is the master version, preventing duplicate content penalties when pages are accessed via parameters or tracking parameters.
How is the overall SEO audit score calculated?
The auditor evaluates page markup using a weighted 100-point scale. Critical issues (missing H1, missing canonical tag) deduct major points, while minor items (long descriptions) carry smaller weights.
Is my HTML source code kept private while auditing?
Yes, 100%. All DOM parsing and audit calculations execute locally in your browser memory. Zero HTML code is uploaded to any server.
Why are empty anchor links (<a></a>) bad for SEO?
Empty anchor links provide zero anchor text context to search crawlers, wasting crawl budget and harming site navigation accessibility.
Can I audit unreleased HTML code from my local IDE?
Yes! Paste raw HTML code directly from VS Code or any text editor to audit and fix markup errors before publishing live.
Does the tool check for mobile responsive viewport tags?
Yes. The auditor verifies the presence of <meta name="viewport" content="width=device-width, initial-scale=1.0"> required for mobile indexing.
What is the difference between H1 and Page Title?
The Page Title (<title>) appears in browser tabs and search engine result listings. The <h1> heading appears as the main visible title on the actual web page.
Should buttons use <button> or <a> tags?
Use <a> tags for navigational links that point to a new URL. Use <button> tags for actions that trigger JavaScript logic or form submissions.
Is there a limit to how much HTML code I can scan?
The tool scans HTML files up to 50,000 lines smoothly using native browser DOM parsing.
Are there keyboard shortcuts?
Press Ctrl+L (or Cmd+L on Mac) to reset the HTML input editor instantly.
Does this tool work offline?
Yes. Once loaded, the HTML auditor operates 100% offline in your browser sandbox.