The meta tags that actually matter for SEO
Most meta tags have no direct effect on search rankings. The ones that matter:
- Title tag — the most important on-page SEO element
- Meta description — affects click-through rate, not ranking directly
- Canonical tag — tells Google which version of a page is authoritative
- Robots meta tag — controls whether the page is indexed
Meta keywords (<meta name="keywords">) have been ignored by Google since 2009. Adding them wastes time without any SEO benefit.
The title tag
The title tag is the blue clickable headline in search results. It is the most significant on-page ranking factor after the page's content itself.
Format: Primary Keyword — Secondary Keyword | Brand Name
Length: Google displays approximately 50–60 characters (roughly 600 pixels). Titles longer than this are truncated with an ellipsis. Exact limits vary because Google measures pixel width, not characters — wide letters (W, M) take more space than narrow ones (i, l).
Best practices:
- Put the primary keyword near the beginning — earlier keywords get more weight
- Make it descriptive and specific — vague titles get lower click-through rates
- Do not keyword-stuff — one or two keyword variations is enough
- Note: Google may rewrite your title tag in search results if it determines the rewrite better matches search intent
The meta description
The meta description appears as the grey text below the title in search results. Google does not use it as a ranking factor directly, but it affects click-through rate — which indirectly signals quality to Google.
Length: approximately 155–160 characters for desktop, 120 characters for mobile. Longer descriptions are cut off mid-sentence.
Best practices:
- Include the primary keyword — Google bolds it in results when it matches the search query
- Write a complete sentence that would make someone click — it is essentially an ad headline
- Be specific about what the page offers — vague descriptions reduce CTR
- Do not duplicate the same description across multiple pages — Google may ignore it
Preview your meta tags before publishing
Writing meta tags without seeing how they appear in search results is guesswork. The free meta tag generator and preview tool shows a real-time preview of how your title and description will appear in Google search results, including truncation warnings when you exceed the character limits.
Open Graph tags (for social sharing)
Open Graph tags control how your page appears when shared on social media — Facebook, LinkedIn, X (Twitter), Slack:
<meta property="og:title" content="Page Title Here">
<meta property="og:description" content="Page description for social sharing">
<meta property="og:image" content="https://yourdomain.com/image.jpg">
<meta property="og:url" content="https://yourdomain.com/page">The og:image should be 1200×630 pixels for optimal display. Without an og:image, social platforms show no image with your link — significantly reducing engagement.
Twitter Card tags
Twitter (X) uses its own card tags in addition to Open Graph:
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description">
<meta name="twitter:image" content="https://yourdomain.com/image.jpg">summary_large_image shows a large image card — better for content pages.summary shows a small thumbnail — better for tool and product pages.
The canonical tag
The canonical tag prevents duplicate content issues:
<link rel="canonical" href="https://yourdomain.com/page">If the same content is accessible at multiple URLs (with/without www, with/without trailing slash, with tracking parameters), the canonical tells Google which version to index. Without it, Google may split ranking signals across multiple URLs or choose the wrong one.
Summary
- Title tag: 50–60 characters, primary keyword near the start, descriptive and specific
- Meta description: 155–160 characters, include keyword, write to earn the click
- Add Open Graph and Twitter Card tags for social sharing
- Add canonical tags to prevent duplicate content issues
- Preview with the free meta tag preview tool before publishing