Jitu

AUSTRALIA


Joined July 19th 2006

Number of Posts:
2

Number of Comments:
0

Karma:
2



Blogs

Jitu's Blogs

0 Vote(s)
0 Comment(s)
0 Post(s)
0 Vote(s)
0 Comment(s)
0 Post(s)

I mentor these bloggers

Learn more about the Orble Mentoring Program.


I do not mentor any bloggers.

Recent Posts

This blog explains how the webpages are optimised that
Search Engines can easily index your web pages and give you better rank.

Following are the various measures which will help in doing optimisation:

1) The first thing we need to do is select a page Title for the webpage. The page title should include main keywords for which you want the page to rank high. The
least amount of words you can place in the title, the more importance Search Engines will give to each keywords.

You can also combine your keywords to decrease total number of words in the title.

2) Add <h1> tags
Add atleast one <h1> tag and put the most important
keyword inside that.

The <h1> header tag should be towards the top left hand side of
the page. When any crawler(Search Engine Program) reads a webpage, it views the text from the top left hand side of the page and especially the text insude the H1 tag as it will be the heading of the whole page.

3) Add <h2> tags
Add atleast one <h2> tag. This can be added as the sub heading for your web page. You can put your another important keyword in the <h2> tag.

4) After this, we need to put some related content for
the webpage and headers: h1 and h2. The content should be about the keywords and it should also contain the keywords. The frequency of the keywords in the content should neither be very high nor very low and you should include the keywords in a natural way.

Don't take the content from the other websites as in this case the Search Engines won't be interested in indexing duplicate content if that Search Engine has allready indexed the other page. Try to put as much original content as possible.

5) Highlighting the keywords
Highlight the main keywords in the content by the html tag like <b>, <i> and <u>. Just highlight 1 unique keyword per page otherwise it might have an negative effect.

Above are some of the most important factors for optimisating your webpage.
You should also perform external optimisation like building incoming links and others to get further better ranks.
121
Vote
   


SSI - Saves lot of Time and Space

July 22nd 2006 08:12
By writing long HTML pages with redundant data on hundreds of pages of
a single website, developers forget that there are various
technologies by which they can save lot of bandwidth and development
time. One of the technology is SSI whose full form is Server Side
Includes
. SSI is not a new programming language but this is just a
simple approach which helps in including data in the HTML page on the
server when user request a HTML page.

Suppose you want to develop 20 page website where many parts of the
website are same on all the pages like footer, header, navigation,
etc. Conventionaly developers develop the website with all the data
(footer, header, etc) in the single HTML page, regardless of whether
the data is going to be reuse in some other page or not. This
involved lot of developing time and storage space on server.

By using SSI developers need to create a seperate text file which
includes the data (part of the HTML page) and then refer that file in
the HTML page (saved as STHML extension). By this the developer can
reference the same file on all the 20 pages or 1000s of pages without
even writing the same data again and again.

Example

SSI file including the navigation code.(nav.ssi)
****************************************
<ul id="menu">
<li><a href="#">Side Channel Blowers</a>
<li><a href="#">Liquid Ring Comp.</a>
<li><a href="#">Centrifugal Pumps</a>
</ul>
****************************************

SHTML file (index.shtml)
****************************************
<iv id="left">
<!--#include file="nav.ssi"-->
</div><!-- left end -->
*****************************************

Some of the disadvantages
* Developer need to host the website on the server to test it. Opening
the file from the local folder will prevent the ssi part to be
displayed on the HTML page as the data/content from SSI is added on the server.

In a gist, SSI is convenient and simple approach by which developers
can save lot of development time and bandwidth.
120
Vote
   


 

Recent Comments

I've not commented on anything yet :(