Viewport Lang

Set viewport and language

whiteknightonhorse Updated

File contents

Set viewport and language

AIPUSH agent skill · Category: Content Structure · Slug: viewport-lang

A viewport meta signals mobile-friendliness; <html lang> declares content language. Both help crawlers, agents, and accessibility tools interpret your page correctly.

Why it matters

A viewport meta signals mobile-friendliness; <html lang> declares content language. Both help crawlers, agents, and accessibility tools interpret your page correctly.

How to detect

Check for <meta name="viewport"> and a lang attribute on <html>.

How to implement

<html lang="en">
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
</html>

Use the correct BCP-47 language tag (en, en-US, de, etc.).

How to verify

Rendered HTML has both a viewport meta and an <html lang> value.

References


Part of the AIPUSH agent skills catalog. Scan your site free at https://aipush.app.

whiteknightonhorse/aipush-agent-skills/tree/main/skills/viewport-lang commit 457f486080

Frequently asked questions

npx skillmds@latest add whiteknightonhorse/viewport-lang