Viewport meta tag missing
What this means
Section titled “What this means”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.
How to fix it
Section titled “How to fix it”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.
Verify the fix
Section titled “Verify the fix”curl https://yourdomain.com/ | grep 'viewport'Confirm the output includes <meta name="viewport". Then re-run orino audit.