Advertisement

-
Important SEO HTML tags
In computing, an HTML element indicates structure in an HTML document and a way of hierarchically arranging content. More specifically, an HTML element is an SGML element that meets the requirements of one or more of the HTML Document Type Definitions (DTDs). These elements have properties: both attributes and content, as specified (both allowable and required) according to the appropriate HTML DTD (for example, the HTML 4.01 strict DTD). Elements may represent headings, paragraphs, hypertext links, lists, embedded media, and a variety of other structures.
For SEO
Title Tag
<head>
<title>Keyword</title>
</head>
H1,H2,H3
<h1>Most Important</h1>
<h2>Second Most Important</h2>
<h3>Third Most Important</h3>
Bold, Strong (Same Worth)
<b>Keyword</b>
<strong>Keyword</strong>
Image (XHTML)
<img src=”keyword.jpg” alt=”keyword” />
Hyperlink
<a href=”http://www.robinbenedict.com/” title=”keyword”>Keyword
in Anchor Text</a>
Hyperlink (No Followed)
<a href=”http://www.robinbenedict.com/” title=”keyword”
rel=”nofollow”>Keyword in Anchor Text</a>
0 comments: