SEO
2026.06.12 ยท 6 min read
SEO Meta Tags Complete Guide: Copy-Paste Template
Got a blog up but the meta tags are empty? Copy this and you're done.
๐ 4 Required + 5 Recommended
Google reads: title, description, canonical, robots. Social reads: 4 OG tags + Twitter Card. 9 tags, 99% done.
๐ง Copy-Paste Template
<!-- Basics --> <title>Article Title Under 60 Chars | Blog Name</title> <meta name="description" content="Summary under 155 chars"> <link rel="canonical" href="https://yoursite.com/post"> <meta name="robots" content="index,follow"> <!-- Open Graph (Facebook, Slack, iMessage) --> <meta property="og:type" content="article"> <meta property="og:title" content="Article Title"> <meta property="og:description" content="Under 155 chars"> <meta property="og:image" content="https://yoursite.com/og.png"> <meta property="og:url" content="https://yoursite.com/post"> <!-- Twitter Card --> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="Article Title"> <meta name="twitter:image" content="https://yoursite.com/og.png">
๐ Length Guide
- title: 50-60 chars (mobile truncates)
- description: 150-160 chars (Google SERP limit)
- og:image: 1200ร630 (required)
โก JSON-LD Structured Data
Required for rich snippets. Add Article schema to blog posts:
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"Article",
"headline":"Title",
"datePublished":"2026-06-12",
"author":{"@type":"Person","name":"Name"}
}
</script>
๐ Tools
- OG image: LinkedIn Post Image (1200ร630)
- OG preview: OG Preview
- Tables: HTML Table Generator
๐ก Verify: Google Search Console URL Inspection > Enhanced results. Refresh OG cache via Facebook Debugger.
โ Back to Blog
PXLTool ยท 2026.06.12