Learning Online SEO

SEO

On-Page Optimization – Part III

Heading:

HTML has 6 heading tags from H1 to H6. As SEO Expert you should show most important keywords using heading tag. You must use H1 and H2 tag in your page at least one time.

For Examples: <h1>Most Important Keyword</h1>
<h2>Second Most Important Keyword</h2>
<h3>Other Keywords</h3>

 

Bold:

Other keywords are used in Bold Tag (<b>keywords</b>) which are not used in Title tag and Headings tags.

 

Hyperlinks:

All anchor tags should have Title which is filled by keywords or hyperlinks must be tagged & titled properly.

For Example: <a href=”http://www.wscubetech.com/services.php” title=”web development services”>Services</a>

 

ALT:

Image must be tagged & titled properly.

For Example: <img src=”images/logo.png” alt=”WS Cube Tech Logo” title=”Title” width=”50” height=”50” />

 

URL:

  • Every URL must not have any underscore.
  • URL length limit is 70 characters
  • Most important keyword also used in URL

For Example:www.wscubetech.com/web-development-company-india

Note: Most Important Keyword or Prime keyword should used in Title Tag, Meta Tag, H1 Tag, and URL of Web Page.

 

Favicon Icon:

Each and every web page have Favicon icon and it should have 16X16 width and height in pixel.

For Example:<link rel=”icontype=”image/icohref=”images/icon.jpg“/>

 

Canonicalization Installation:

Whenever we type a domain name in the URL (example.com), it should be redirected to www.example.com because if webpage is not redirect in complete URL then Search Engine consider your site content is duplicate of twice website i.e. example.com and www.example.com

Code:In the code I am use “.htaccess” concept. RewriteEngine on

RewriteCond %{HTTP_HOST} ^wscubetech\.com$ [NC]
RewriteRule ^(.*)$ http://www.wscubetech.com/$1 [R=301,L]

 

Doctype:

In web page the “Doctype” must define because through “Doctype” Search Engine takes instruction to about the version of HTML page, it also instruction to web browser. The “Doctype” declaration must be the very first things in your HTML document, before the <html> tag.

For Example:HTML 4.01 Strict<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”>HTML 4.01 Transitional <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>