Skip to content

Viewport meta tag missing

Without a viewport meta tag, mobile browsers render the page at full desktop width and scale it down. The result is a tiny, unreadable page that users have to zoom into. Google uses mobile-first indexing — it crawls and ranks the mobile version of your site. A page with no viewport meta tag is treated as having a broken mobile experience.

Add the viewport meta tag inside <head> on every page.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page title</title>
</head>
<body>
<!-- content -->
</body>
</html>

The value width=device-width, initial-scale=1 is correct for almost all cases.

Terminal window
curl https://yourdomain.com/ | grep 'viewport'

Confirm the output includes <meta name="viewport". Then re-run orino audit.