Created
December 2, 2013 08:39
-
-
Save hemantajax/7746706 to your computer and use it in GitHub Desktop.
seo basic
This file contains 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
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