<title>Page title</title> <meta name="description" content="..."> <link rel="canonical" href="...">
Copy pattern into head.
If you searched html meta description or open graph tags, every public page needs unique title and description, canonical URL, and og:image for link previews.
Minimum set in head.
<title>Page title</title> <meta name="description" content="..."> <link rel="canonical" href="...">
Copy pattern into head.
<title>Unique page title</title>
<meta name="description" content="...">
<link rel="canonical" href="https://example.com/page">Controls link preview in chat apps.
Use absolute image URLs.
<meta property="og:type" content="website">
<meta property="og:image" content="https://example.com/og.png">charset UTF-8 and robots index,follow defaults.
<meta charset="UTF-8"> <meta name="robots" content="index, follow">
Prevent mojibake with charset first.
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">