Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save slaveofcode/17b072d87a76ca6f6888b1b4975eae88 to your computer and use it in GitHub Desktop.
Save slaveofcode/17b072d87a76ca6f6888b1b4975eae88 to your computer and use it in GitHub Desktop.
SEO Social Media Meta Tags
<!-- SEO / Google -->
<meta name="author" content="Author name here....">
<meta name="description" content="Description text here.....">
<link rel="canonical" href="URL here...">
<!-- Social: Twitter -->
<!-- After inserting META need to validate at https://dev.twitter.com/docs/cards/validation/validator -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@8bit_code">
<meta name="twitter:creator" content="8bit_code">
<meta name="twitter:title" content="Title here...">
<meta name="twitter:description" content="Description here....">
<meta name="twitter:image:src" content="path/to/img">
<!-- Social: Facebook / Open Graph -->
<meta property="fb:admins" content="ID here...">
<meta property="fb:app_id" content="ID here...">
<meta property="og:url" content="URL here...">
<meta property="og:type" content="article">
<meta property="og:title" content="Title here...">
<meta property="og:image" content="path/to/img"/>
<meta property="og:description" content="Description here...">
<meta property="og:site_name" content="8Bit Code">
<meta property="article:author" content="https://www.facebook.com/8bitcodeWeb">
<meta property="article:publisher" content="https://www.facebook.com/8bitcodeWeb">
<!-- Social: Google+ / Schema.org -->
<meta itemprop="name" content="Title here...">
<meta itemprop="description" content="Description here...">
<meta itemprop="image" content="path/to/img">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment