Open Graph Preview for Social Cards
When someone shares a page on a social platform, the preview card is often built from Open Graph metadata. A strong preview can make a link look trustworthy, clear, and worth clicking.
Use the Open Graph Preview to draft the card. Use the Meta Tag Generator when you want a broader set of metadata tags.
What Is Open Graph?
Open Graph is a metadata protocol that describes a page for social sharing. Common fields include:
og:titleog:descriptionog:urlog:imageog:typeog:site_name
These tags usually live inside the HTML <head>.
<meta property="og:title" content="Free JSON Formatter & Validator" />
<meta property="og:description" content="Format, validate, and minify JSON online." />
<meta property="og:url" content="https://example.com/tools/json-formatter/" />
<meta property="og:image" content="https://example.com/og-image.png" />The Most Important Fields
Start with these:
- Title: clear, specific, and page-level
- Description: a short summary of what the page offers
- URL: the canonical page URL
- Image: an absolute image URL
The title and image usually drive the first impression. The description helps explain why the page is useful.
Open Graph vs Standard Meta Tags
Open Graph tags are not the same as standard SEO title and description tags. Search engines often look at <title> and <meta name="description">, while social platforms commonly read og:title, og:description, and og:image.
The values can be similar, but they do not always need to be identical. A search result title may need to fit a query-focused SERP, while an Open Graph title may need to work as a social card headline.
For most pages, start with one clear message and adapt it slightly for each context.
Open Graph Images
A common image size is 1200 x 630 pixels. This aspect ratio works well for many social cards, but each platform can crop or resize differently.
Good images should:
- Use strong contrast
- Avoid tiny text
- Show the product, page topic, or clear brand signal
- Leave enough padding around important content
- Use an absolute URL
Avoid images that depend on tiny UI text. Social previews are often viewed on mobile screens, in dark interfaces, or inside crowded feeds. A simple visual with a recognizable subject usually performs better than a screenshot packed with details.
Page Types and og:type
Most normal pages can use website. Articles and blog posts often use article, especially when you also provide publish date, author, or section metadata.
For a tool page, website is usually enough unless you have a reason to describe it as a richer object. The more important task is making sure each page has a unique title, description, canonical URL, and image.
Why Social Previews Sometimes Look Wrong
Social platforms may cache metadata. If you update tags and still see an old preview, the platform may need time or a manual refresh.
Other common issues include:
- Relative image URLs
- Blocked image access
- Missing
og:image - Duplicate tags
- Titles copied across many pages
- Images that crop badly on mobile
Another frequent issue is a preview image that redirects, requires cookies, or is blocked by robots rules. Social crawlers need to fetch the image directly. If the image works in your browser but fails in a preview tool, check whether the crawler can access it without a logged-in session.
Practical Open Graph Checklist
Before publishing:
- Is the title specific to the page?
- Is the description readable and not keyword stuffed?
- Is
og:urlcanonical? - Is the image URL absolute?
- Does the preview still make sense if the image is cropped?
- Are Open Graph tags consistent with the page content?
Testing Across Page Types
Different pages need different social previews. A homepage may use a broad brand image, while a tool page should usually make the task obvious. A blog post can use a more editorial title, but the image still needs to communicate the topic at feed speed.
For tool sites, avoid using the exact same og:title, og:description, and image across every page. Repeated social cards make pages look interchangeable and can reduce click confidence when links are shared in chats or communities.
After updating Open Graph metadata, test at least one homepage, one tool page, and one article page. That catches repeated defaults before they spread across the site.
Related QuickToolFlow Tools
- Open Graph Preview for checking social card fields.
- Meta Tag Generator for generating broader metadata.
- SERP Snippet Preview Tool for search result titles and descriptions.
Related Guides
- SERP Snippet Preview: Titles and Descriptions for search result metadata.
- UTM Builder for Campaign URLs when social links need campaign tracking.
- SEO Tools for metadata, snippets, robots.txt, and campaign URL workflows.
Keep going