Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hemantajax/7746706 to your computer and use it in GitHub Desktop.
Save hemantajax/7746706 to your computer and use it in GitHub Desktop.
seo basic
Basic SEO Markup:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>70 Characters Maximum</title>
<meta name="description" content="Enter description here">
<link rel="author" href="https://plus.google.com/LINK-TO-GOOGLE-PLUS-PROFILE">
<link rel="canonical" href="/category/preferred-url.html">
<!-- Meta Tags for Social Media -->
<meta property="og:title" content="This is the Title of My Article">
<meta property="og:type" content="blog">
<meta property="og:image" content="http://www.website.org/image.jpg">
<meta property="og:url" content="http://www.url.org">
<meta property="og:description" content="This is my awesome, linkworthy description.">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>Hello SEO</h1>
</body>
</html>
use html5 semantic tags:
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
audio,
canvas,
video
better sturturing seo website:
http://schema.org/docs/schemas.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment