HTML / Markup
Public
Basic SEO Head Tags
A small HTML head template with title, description, viewport, canonical URL, and Open Graph tags.
#html
#seo
#meta
#beginner
HTML / Markup
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page title - Site name</title>
<meta name="description" content="A short page description for search engines.">
<link rel="canonical" href="https://example.com/page">
<meta property="og:title" content="Page title - Site name">
<meta property="og:description" content="A short social sharing description.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://example.com/page">
</head>
Notes
Keep descriptions human-readable. Do not stuff keywords.