Free SEO Tool

Meta Tag Generator

Generate clean HTML meta tags including Open Graph and Twitter Card data — copy a complete head snippet ready to paste.

Open Graph
Twitter Card
HTML output
<title>Best CRM Software for Small Business in 2026</title>
<meta name="description" content="Compare the top CRM platforms for small businesses — pricing, features, integrations, and which one to pick based on your team size." />
<link rel="canonical" href="https://example.com/best-crm-software" />
<meta name="robots" content="index, follow" />

<!-- Open Graph -->
<meta property="og:title" content="Best CRM Software for Small Business in 2026" />
<meta property="og:description" content="Compare the top CRM platforms for small businesses — pricing, features, integrations, and which one to pick based on your team size." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://example.com/best-crm-software" />
<meta property="og:image" content="https://example.com/og/best-crm.png" />
<meta property="og:site_name" content="Example" />

<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Best CRM Software for Small Business in 2026" />
<meta name="twitter:description" content="Compare the top CRM platforms for small businesses — pricing, features, integrations, and which one to pick based on your team size." />
<meta name="twitter:image" content="https://example.com/og/best-crm.png" />
<meta name="twitter:site" content="@example" />

Why meta tags still matter

Meta tags don't directly increase rankings the way they used to, but they're still the dial that controls how your page appears everywhere it gets shared. A well-tuned <title> and meta description can lift CTR from search by 30–50%, and Open Graph tags decide whether your link shared on Slack, Discord, LinkedIn, or X looks like a polished card or a generic blob.

The set you actually need

  • Title and meta description — for Google search results.
  • Canonical — points search engines at the preferred URL.
  • Robots — control indexing per page when needed.
  • Open Graph — controls how the link looks when shared on Facebook, LinkedIn, Slack, Discord, iMessage.
  • Twitter Card— same idea, X-specific. Most tools fall back to Open Graph if it's missing.

The tool above handles all five at once. Fill in the form, copy the output, paste into your <head>.

Frequently asked questions

Do meta keywords still matter?

No. Google publicly stopped using the meta keywords tag in 2009, and other major search engines followed. The tool above doesn't generate it, on purpose. Stick with title, description, canonical, robots, Open Graph, and Twitter Card.

What's the difference between Open Graph and Twitter Cards?

Open Graph is the metadata format used by Facebook, LinkedIn, Slack, Discord, iMessage, and most modern apps. Twitter Cards are X-specific. If you set both, X uses Twitter Cards; everyone else uses Open Graph. If you set only Open Graph, X falls back to it.

What size should my Open Graph image be?

1200×630 pixels is the safe default — the right aspect ratio for Facebook, LinkedIn, X (summary_large_image), and most chat apps. Keep it under 8MB. PNG or JPG both work.

Where do I paste the generated meta tags?

Inside the <head> of your HTML, ideally near the top. In Next.js, return them from the metadata export or generateMetadata function. In WordPress, use a header injection plugin like SEOPress or paste into your theme's header template.

Can I leave Twitter Card tags out if I have Open Graph?

Yes. X falls back to Open Graph when no Twitter Card tags are present, and the rendering is almost identical. Adding Twitter Cards only buys you Twitter-specific features like the @creator handle on the rendered card.