Tuesday, 26 February 2013

In depth site Analysis


In depth site analysis

It  Cover:
1.  Check PR
2.  Check for content duplication
3.  Server Speed
4.  Broken Links Checking
5.  Age of the Domain
6.  Relevant Filenames
7.  Looks for large images that increase server load time.
8.  Evaluate Keyword Compitition
9.  Number of pages currently indexed by the major search engines
10. Browser compatibility check
11. Number of backward links
12. Website Spell Checking

Saturday, 23 February 2013

Check PR of url and Website Spell Checking


Check PR of each url:

Check Page Rank of url using "PR Checker Tool".
http://www.prchecker.info/check_page_rank.php

Website Spell Check
Check Website Spelling using "Website spell checker tool".
http://fetch.checkdog.com
 

Broken Links Checking and Site Back-links count


Broken Links Checking

Check Broken links for your website using broken links checker tool.
http://www.iwebtool.com/broken_link_checker
http://validator.w3.org/checklink


Site Back-links count

Calculate Back-links for your website using "count site back links" tool. Back links are also called as Inbound links.
http://www.webmaster-toolkit.com/link-popularity-checker.shtml.

Saturday, 16 February 2013

Canonicalization

Canonicalization is the process of picking the best url when there are several choices, and it usually refers to home pages.Choose your website page url wisely. 

PR Sculpting

PR Sculpting is the process of optimizing linking structure of the website pages by adding
"nofollow" tag in order to get high page rank of home page .
if the home page rank is 8 and there are 3 internal links into home page and one link has nofollow
tag so other two links gets page rank 4.

                                                                  

Friday, 1 February 2013

HTML Sitemap for users


Create full HTML Sitemap of your website with proper links of your website pages. This will help search engines to crawl your website pages easily and also help visitors to visit your website easy way.







XML Site Map Creation & Submission

Create full XML Sitemap of your website with proper links of your website pages. This will help search engines to crawl your website pages easily.

Example of XML Sitemap

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url><loc>http://www.mywebsite.com/index.html</loc></url>
</urlset>


After creating your XML sitemap submit it to Google , Yahoo , Bing.


Adding Emphasis with Header Tags

Adding HTML Bold <b> and Italic <i> Tags to the HTML Header Tags (<h1>, <h2>, <h3>, <h4>, <h5>,  <h6>) Determines the more importance of the Header Tag in the Website Content.

Example :

<h1> <b><i>Adding Emphasis with Header Tags</i></b> <h1>

Robots.txt Optimization


This type of file allow search engine spider or crawler to access or not access website.

Place this type of files to the root directory of your website.

Example of robots.txt file

User-agent: *
Disallow:/

Above sentence describe that robots will not index any page of your website.

User-agent: Googlebot-Image
Disallow: /


If you dont want Google' Image bot crawler to make your websites images searchable by search engine then just place above lines to your robots.txt file.



Image Tag Optimization :


html image tag <img>

Example of html image tag

<img src="image url" title="keyword related to your website" alt="keyword related to your website" />

Here write title and alt text as your website related keyword.

Hyperlink or anchor Tag Optimization


html anchor tag <a>

Example of anchor tag

<a href="url" title="keyword related to your website">Read More...</a>

Here write anchor title as your website related keyword.

Header Tag Optimization


Html Header tags are as below:
1. <h1>This is html h1 tag </h1>
2. <h2>This is html h1 tag </h2>
3. <h3>This is html h1 tag </h3>
4. <h4>This is html h1 tag </h4>
5. <h5>This is html h1 tag </h5>
6. <h6>This is html h1 tag </h6>

In Website Content written in head tag shows search engine and the visitor about the content of the web page.

<h1> is the most important tag.

So that its recommended to write keaywords related to your website in header tags.