Meta Tags in HTML
From the HTML cheat sheet ยท Document Structure & Metadata ยท verified Jul 2026
Meta Tags
Important metadata for SEO and browser behavior
html
<!-- Character encoding (required) -->
<meta charset="UTF-8">
<!-- Viewport (required for responsive) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO meta tags -->
<meta name="description" content="Page description (150-160 chars)">
<meta name="keywords" content="keyword1, keyword2">
<meta name="robots" content="index, follow">
<!-- Refresh/Redirect -->
<meta http-equiv="refresh" content="5;url=https://example.com">
<!-- Theme color (mobile browsers) -->
<meta name="theme-color" content="#4285f4">๐ข Essential - Meta tags control how page appears
๐ก Description shows in search results
๐ Open Graph controls social media previews
โก Theme color affects mobile browser UI
๐ Related: schema.org for structured data
metaseometadata