GlossarySEO
What are Open Graph tags?
Also called: og tags, og:image, og:title, Open Graph protocol
Definition
Open Graph tags are <meta property="og:…"> tags that tell social platforms and messaging apps how to show a link preview: title, description, image and canonical URL.
Open Graph tags, explained
The Open Graph protocol was created by Facebook to turn web pages into rich objects in a social graph. Today almost every platform that shows link previews reads it: LinkedIn, Slack, Discord, iMessage, WhatsApp, and X as a fallback. The spec at ogp.me lists four required properties: og:title, og:type, og:image and og:url, the canonical URL used as the page's permanent ID.
Useful optional ones include og:description, og:site_name and og:locale. Images have structured properties: og:image:width, og:image:height and og:image:alt, a description of what's in the image, not a caption. Tags use the property attribute rather than name, and live in the page head.
Open Graph isn't a Google ranking factor, but it matters for search-adjacent reasons. Google's image guidance mentions og:image as one way to indicate a page's preferred image, and its title link docs list og:title among the sources it may use. More directly, a good preview decides whether people click your link when it's shared in a launch post, a community or a DM.
Most frameworks let you set these in one metadata helper. Give every page a unique title and description, a default share image, and per-page images for important pages. Check previews after deploys, because platforms cache them and a broken image can stick for days.
Why it matters for founders
Launch day means your link gets shared everywhere. A blank or broken preview costs clicks you'll never see in analytics.
Example
Your launch link shows a random logo crop in Slack. You add a 1200×630 og:image with the product name and tagline, set og:title and og:description, and previews look right everywhere.
Common mistakes
- Missing
og:image, so platforms pick a random image. - Relative image URLs that platforms can't fetch.
- The same title and image on every page.
- Using
name=instead ofproperty=for og tags.
Sources
Checked
Related terms
- Twitter card (X card)A Twitter card, now an X card, is the link preview shown when a URL is posted on X. It's controlled by
twitter:meta tags, with Open Graph tags used as a fallback. - Title tagA title tag is the
<title>element in a page's HTML. Google usually uses it for the clickable headline of a search result, and it's one of the clearest signals of what the page is about. - Meta descriptionA meta description is an HTML tag summarizing a page,
<meta name="description" content="…">. Google sometimes shows it as the snippet under a search result, but often writes its own from the page text. - Image SEOImage SEO is making images discoverable and understandable in search and fast to load: HTML image elements, descriptive filenames and alt text, relevant surrounding text, modern formats and sensible sizes.