Meta Tags Generator
Generate all essential meta tags including title, description, Open Graph, Twitter Card, and canonical URL. Preview how your page will appear in search results and social feeds.
Meta tags are HTML snippets in <head> that tell search engines and social media platforms about your page. The most important are: title (shown in search results), meta description (the snippet preview), Open Graph tags (Facebook/LinkedIn share cards), and canonical (prevents duplicate content issues).
Basic SEO
50-60 characters recommended
Open Graph & Twitter
1200×630px recommended
<!-- Primary Meta Tags --> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>My Awesome Page</title> <meta name="title" content="My Awesome Page" /> <meta name="description" content="A short description of this page for search engines and social media." /> <meta name="robots" content="index, follow" /> <meta name="theme-color" content="#7c3aed" /> <link rel="canonical" href="https://example.com/page" /> <!-- Open Graph / Facebook --> <meta property="og:type" content="website" /> <meta property="og:url" content="https://example.com/page" /> <meta property="og:title" content="My Awesome Page" /> <meta property="og:description" content="A short description of this page for search engines and social media." /> <meta property="og:image" content="https://example.com/og-image.jpg" /> <!-- Twitter --> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@username" /> <meta name="twitter:creator" content="@username" /> <meta name="twitter:title" content="My Awesome Page" /> <meta name="twitter:description" content="A short description of this page for search engines and social media." /> <meta name="twitter:image" content="https://example.com/og-image.jpg" />
Frequently Asked Questions
Which meta tags are most important for SEO?
The most important tags are title, meta description, canonical URL, and Open Graph tags for social sharing. Our generator creates all of these.
What is the ideal meta description length?
Google typically displays up to 155–160 characters. Write your description as a compelling summary that includes your main keyword naturally. Avoid duplicate descriptions across pages.
What is a canonical URL?
The canonical tag tells search engines which version of a URL is the 'master' copy when multiple URLs show the same or similar content. It prevents duplicate content from diluting your rankings.
Do Open Graph tags affect SEO?
Not directly — Open Graph tags control how your page appears when shared on Facebook, LinkedIn, and other social platforms. However, better-looking share cards drive more clicks and social engagement, which can indirectly help SEO.