Preview how your webpage appears when shared on Facebook, Twitter, LinkedIn, and other social platforms. Optimize your Open Graph and Twitter Card tags.
Social media preview tags (Open Graph and Twitter Cards) control how your content appears when shared on Facebook, Twitter, LinkedIn, and other platforms. Proper implementation can significantly increase engagement and click-through rates.
// Open Graph (Facebook, LinkedIn)
<meta property="og:title" content="Your Page Title" />
<meta property="og:description" content="Page description" />
<meta property="og:image" content="https://example.com/image.jpg" />
<meta property="og:url" content="https://example.com/page" />
// Twitter Card
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Your Page Title" />
<meta name="twitter:description" content="Description" />
<meta name="twitter:image" content="https://example.com/image.jpg" />