Check if your webpage is mobile-friendly and see a live mobile view preview.
Google prioritizes mobile-friendly websites in search rankings. If your site doesn’t adapt to smaller screens, it could hurt your visibility.
<meta name="viewport"> tagAdd this to your <head>:
<meta name="viewport" content="width=device-width, initial-scale=1">
Avoid user-scalable=no or maximum-scale=1 — these block pinch-zoom and harm accessibility.
max-width: 100%) for images/iframes.width: 1200px) on containers.srcset/sizes so mobile loads smaller images.Before: Fixed layout, hero image 2200px wide, no viewport tag. On a phone, users must pinch and scroll sideways.
After: Added viewport tag, switched hero to responsive srcset, set container to max-width with percentage widths. The page fits perfectly on a 375px viewport.
user-scalable=no)srcset is usedNo — this is a quick visual checker with simple on-page signals and a live preview. It’s fast, private, and requires no API.
It harms accessibility for users who rely on pinch-zoom. Let the browser manage zoom by omitting user-scalable=no.
width=device-width, initial-scale=1 is a solid default for most sites.