The Viewport Meta Tag: The #1 Mobile Signal
The single most critical mobile-friendly signal is the viewport meta tag: <meta name="viewport" content="width=device-width, initial-scale=1">. Without it, mobile browsers render your page at a desktop width of around 980px and then shrink it down, making text impossibly small and buttons impossible to tap. Google's mobile-first crawler checks for this tag before anything else.
Two common mistakes: (1) Blocking user zoom with user-scalable=no — this fails WCAG accessibility criteria and is flagged as a mobile usability issue in Google Search Console. (2) Using a fixed initial-scale without width=device-width — this still renders at the wrong width on many devices. Always use the standard viewport tag shown above.