Skip to content

How to have an image show up when sharing links to your site

New Course Coming Soon:

Get Really Good at Git

How do you make an image show up when you share your site links on social media? Let's find out!

I was asked this question on Twitter:

How to get an image to show up when sharing a link to a website I made?

To share images you need to use the Open Graph meta tags, also called OG tags.

Take a look at this blog post: How to set GitHub credentials for macOS. On Chrome, right click in the page and press View Source. Or on Safari, from the Develop menu click Show Page Source (got to have the Develop menu activated in the settings).

You can find those tags in the <head> part of the HTML:

<meta property="og:title" content="How to set GitHub credentials for macOS">
<meta property="og:description" content="Set up GitHub authentication so you can use it from VS Code or the command line">
<meta property="og:type" content="article">
<meta property="og:url" content="https://flaviocopes.com/setup-github-credentials-macos/">
<meta property="og:image" content="https://flaviocopes.com/img/avatar.png"/>

The important part for the image is the og:image tag, but all contribute to creating a way to make it easier for other software to show our site nicely.

Any time you do any change, check the Twitter Card Validator website and paste the URL of the page. That will show a preview and will give you some hints of what to fix:

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Get my HTML Handbook
→ Read my HTML Tutorial on The Valley of Code

Here is how can I help you: