Rich link previews in one paste
The Open Graph Meta Tags Generator produces the og: and twitter: meta tags that control how your page looks when shared. Without them, social platforms guess at a title and image — often badly. Fill in a few fields and copy a complete, valid block of head markup that renders a proper share card on Facebook, LinkedIn, Slack and Twitter/X.
How it works
Open Graph is a small vocabulary of <meta property="og:..."> tags read by crawlers when a link is shared. The four essentials are og:title, og:description, og:image and og:url, plus an og:type that classifies the page. Twitter layers its own tags on top:
<meta property="og:type" content="article" />
<meta property="og:title" content="My Page Title" />
<meta property="og:image" content="https://example.com/cover.png" />
<meta name="twitter:card" content="summary_large_image" />
Choosing a page type switches og:type (website, article, product, profile) and reveals type-specific extras such as article:published_time. Image and URL fields must be absolute https URLs or crawlers ignore them.
Tips and notes
- Size your
og:imageat 1200x630 for the large card format. - Keep titles under ~60 characters and descriptions under ~155 so they are not truncated.
- After editing tags, re-scrape with Facebook’s Sharing Debugger to clear the cached preview.