The most important SEO HTML tags

The most important SEO HTML tags are (in order of importance):
  • Title Tag
<head>
<title>keyword</title>
</head>
  • Header Tags – H1,H2,H3
<h1>Most Important</h1>
<h2>Second Most Important</h2>
<h3>Third Most Important</h3>
  • Bold,Strong
<b>keyword</b>
<strong>keyword</strong>
  • Image
<img src=”keyword.jpg” alt=”keyword” />
  • Hyperlink
<a href=”http://www.website.com/page.html” title=”keyword”>keyword</a>
  • Hyperlink (No Followed)
<a href=”http://www.website.com/page.html” title=”keyword” rel=”nofollow”>keyword</a>