Last active
December 29, 2015 17:05
-
-
Save druellan/740f557706ec847c469a to your computer and use it in GitHub Desktop.
Basic template for Twitter Cards (metatags)
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
<html> | |
<head> | |
<title>The Title</title> <!-- ˜60 chars --> | |
<meta name="description" content="The Description"> <!-- ˜150 chars --> | |
<meta name="twitter:card" content="summary"> | |
<meta name="twitter:site" content="@sfidastudios"> | |
<meta name="twitter:title" content="The Title"> <!-- ˜70 chars --> | |
<meta name="twitter:description" content="The Description"> <!-- ˜200 chars --> | |
<meta name="twitter:image" content="http://www.sfidastudios.com/logo.png"> <!-- 120x120px - 280x150px --> | |
</head> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment