Last active
June 20, 2016 16:18
-
-
Save rugor/25f72ef3d1737b5e4dc5df4edc23be8c to your computer and use it in GitHub Desktop.
HTML: Meta tags Twitter & FB Opengraph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// facebook image minimum resolution 1200x630, twitter < 1mb | |
<meta property="og:title" content="European Travel Destinations"> | |
<meta property="og:description" content="Offering tour packages for individuals or groups."> | |
<meta property="og:image" content="http://euro-travel-example.com/thumbnail.jpg"> | |
<meta property="og:url" content="http://euro-travel-example.com/index.htm"> | |
<meta name="twitter:card" content="summary_large_image"> | |
// non-essential, but recommended | |
<meta name="og:site_name" content="European Travel, Inc."> | |
<meta name="twitter:image:alt" content="Alt text for image"> | |
// fb & twitter app id's | |
// https://developers.facebook.com/docs/platforminsights/domains | |
// https://dev.twitter.com/cards/analytics | |
<meta property="fb:app_id" content="your_app_id" /> | |
<meta name="twitter:site" content="@website-username"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment