Mobile-Friendly Checker
Fetch a public web page and scan its static HTML for three common mobile problems: a missing responsive viewport tag, oversized fixed-width images, and tiny inline font sizes.
How to use this tool
- 1
Paste the full URL of a public page (including https://) into the input field.
- 2
Submit the form — our server fetches the page and parses its HTML.
- 3
Read the verdict banner: green means responsive viewport plus zero issues, red means at least one problem was found.
- 4
Review the issues list and any fixed-width images shown below the banner, then fix the markup on your page.
What does this mobile-friendly checker actually test?
Mobile-first indexing means Google primarily uses the mobile version of your page for ranking, so broken mobile layout directly costs traffic. This tool fetches your page from our server and parses the raw HTML with Cheerio — it does not run JavaScript, does not render the page in a real browser, and does not measure layout. It checks three specific things. First, the viewport: it reads the <meta name="viewport"> tag and requires the content to include width=device-width, the directive that lets a page scale to the device instead of rendering at a fixed desktop width. Second, fixed-width images: it scans <img> tags that carry an HTML width attribute and lists any wider than 400px; this only counts as an issue when more than three such images exist. Note it reads the width attribute only, so a CSS rule like style="width:800px" is not detected. Third, tiny text: it flags elements whose inline style sets font-size to exactly 8px, 9px, or 10px. A page is reported friendly only when it has a responsive viewport and zero issues. Treat this as a fast first-pass linter, not a full rendering audit.
Common use cases
Quickly confirming a newly launched landing page includes a width=device-width viewport before sending paid traffic to it.
Auditing a legacy site built with fixed-width tables and pixel-width images to find pages that overflow on phones.
Spot-checking a client's marketing page for missing viewport tags during an SEO handoff.
Catching hard-coded tiny inline font sizes that designers added for desktop but forgot to make responsive.
Screening a batch of competitor or partner URLs for obvious mobile markup mistakes without opening each in a phone emulator.
Teaching juniors what a responsive viewport tag looks like and why fixed-width images break small screens.
Frequently asked questions
Is this the same as Google's Mobile-Friendly Test?▼
Does it run my page's JavaScript or CSS?▼
Why are fixed-width images listed but my page still passes?▼
Why didn't it flag my obviously wide image?▼
How strict is the tiny-text check?▼
Does it check tap target spacing or page speed?▼
Does the page get fetched from my browser or your server?▼
Related tools
Meta Tags Analyzer
Extract and analyze every meta tag from any URL.
Heading Hierarchy Analyzer
Audit H1-H6 structure for SEO and accessibility issues.
Schema Markup Validator
Extract and validate JSON-LD schema from any page.
Open Graph Inspector
Preview how a URL appears on Facebook, Twitter, and LinkedIn.
Sitemap Inspector
Analyze any XML sitemap — URL count, lastmod, structure.
robots.txt Inspector
Parse robots.txt and flag common mistakes.