Quick answer
Most responsive pages should declare a viewport such as width=device-width, initial-scale=1. That tells mobile browsers to use the device width rather than a wide desktop layout. A viewport tag is only a baseline check: it cannot prove that content fits, controls are usable, or the page performs well.
What the issue means
The viewport meta element controls the initial layout viewport on mobile browsers. Without it, a page may be laid out as a wide desktop document and then scaled down, making text and controls difficult to use. The value should be chosen with accessibility and the application’s actual responsive design in mind.
Why it matters for SEO
Mobile usability affects how people experience a page and how search systems evaluate mobile content. A viewport declaration does not make a page mobile-friendly by itself, but its absence can be an early sign that a legacy layout has not been adapted.
How NOTABIS detects it
The viewport-present rule passes when a viewport declaration is measured in the delivered HTML. It does not assess the CSS layout, tap target sizes, text scaling, visual stability, or real-device behaviour. A client-rendered declaration added after the initial response may not be visible to a raw HTML crawler.
How to check it yourself
Inspect View Source and look for:
<meta name="viewport" content="width=device-width, initial-scale=1">
Then test representative pages in browser device emulation and on a real phone. Check horizontal scrolling, readable text, keyboard access, dialogs, tables, and fixed navigation.
How to fix it
Add one appropriate viewport declaration to the shared document head. Then fix the actual responsive issues it reveals: fixed-width containers, overflowing media, inaccessible menus, and controls that are too small or too close together. Avoid disabling zoom with restrictive values such as user-scalable=no; users should be able to enlarge content.
Re-test the initial HTML and the rendered experience after deployment.
When it is intentional or does not need fixing
Specialised embedded documents or controlled application surfaces may have a deliberate viewport strategy, but explain and test it. A present declaration that still produces a poor mobile layout needs design work beyond this rule.
Related issues
Review missing main landmarks, missing image dimensions, and missing H1 tags.
Run a NOTABIS audit
NOTABIS checks whether a viewport declaration is present in the measured HTML, giving you a quick baseline signal before deeper mobile testing.