<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DataMouse.biz Blog &#187; SEO</title>
	<atom:link href="http://www.datamouse.biz/blog/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.datamouse.biz/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 25 Jun 2009 12:53:07 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 Ways to Improve the Download Time for your Web Pages</title>
		<link>http://www.datamouse.biz/blog/2008/10/10-ways-to-improve-the-download-time-for-your-web-pages/</link>
		<comments>http://www.datamouse.biz/blog/2008/10/10-ways-to-improve-the-download-time-for-your-web-pages/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 23:44:58 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Improve]]></category>
		<category><![CDATA[Load Time]]></category>
		<category><![CDATA[Optimise]]></category>
		<category><![CDATA[Web Pages]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/10-ways-to-improve-the-download-time-for-your-web-pages/67/</guid>
		<description><![CDATA[Do you like to wait for web pages to download when you're browsing? Didn't think so - and neither do your visitors.
Read more about how you can make some simple changes to have a big impact on your load times.]]></description>
			<content:encoded><![CDATA[<p><strong>Why is download speed so important?</strong></p>
<p>Do you like to wait for pages to download? Neither do your site users. Read on and find out how to speed up that download time&#8230;</p>
<p><strong>1. Lay out your pages with CSS, not tables</strong></p>
<p>CSS downloads faster than tables because:<br />
*  Browsers read through tables twice before displaying their contents, once to work out their structure and once to determine their content<br />
* Tables appear on the screen all in one go &#8211; no part of the table will appear until the entire table is downloaded and rendered<br />
* Tables encourage the use of spacer images to aid with positioning<br />
* CSS generally requires less code than cumbersome tables<br />
* All code to do with the layout can be placed in an external CSS document, which will be called up just once and then cached (stored) on the user&#8217;s computer; table layout, stored in each HTML document, must be loaded up each time a new page downloads<br />
* With CSS you can control the order items download on to the screen &#8211; make the content appear before slow-loading images and your site users will definitely appreciate it</p>
<p>To learn more about CSS and the amazing things it can do for your website, check out our CSS resources1 area.</p>
<p><strong>2. Don&#8217;t use images to display text</strong></p>
<p>It&#8217;s our old friend CSS to the rescue again. There&#8217;s no need to use images to display text as so much can be accomplished through CSS. Have a look at this code:</p>
<p><em>a:link<br />
{<br />
color: #ffffff;<br />
background: #ff9900;<br />
text-decoration: none;<br />
padding: 0.2em;<br />
border: 4px solid;<br />
border-color: #99f #008 #008 #99f<br />
}</em></p>
<p><em>a:hover<br />
{<br />
color: #ffffff;<br />
background: #ffaa11;<br />
text-decoration: none;<br />
padding: 0.2em;<br />
border: 4px solid;<br />
border-color: #008 #99f #99f #008<br />
}</em></p>
<p>This will give you a really simple button that appears to be pushed down when you mouseover it.</p>
<p><strong>3. Call up decorative images through CSS</strong></p>
<p>It&#8217;s possible to present images as part of the background, called up through CSS. If you&#8217;ve got an image that&#8217;s 200px by 100px you can use the following HTML code:</p>
<p><em>&lt;div class=&#8221;pretty-image&#8221;&gt;&lt;/div&gt;</em></p>
<p>And this CSS:</p>
<p><em>.pretty-image<br />
{<br />
background: url(filename.gif);<br />
width: 200px;<br />
height: 100px<br />
}</em></p>
<p>This may at first seem a little pointless but this technique could really improve the download time of your pages. Browsers basically download background images after everything else. By using this technique, your text will load instantaneously and your site users can freely roam about the page while your 50kb fancy image downloads.</p>
<p>This technique disables the ALT attribute though so if you really want to have one then replace the above HTML code with this:</p>
<p><em>&lt;image src=&#8221;spacer.gif&#8221; class=&#8221;pretty-image&#8221; alt=&#8221;description&#8221; /&gt;</em></p>
<p>Spacer.gif is a 1px x 1px transparent image. Now you have a 50 byte transparent image and the main content loading first, and your great big decorative image, complete with ALT text, loading second. Perfect.</p>
<p>Please note that this technique is only good for decorative images and not informational ones. Any user who has CSS disabled will not be able to see your CSS-embedded images (or their alternative text).</p>
<p><strong>4. Use contextual selectors</strong></p>
<p>This is inefficient:</p>
<p><em>&lt;p class=&#8221;text&#8221;&gt;This is a sentence&lt;/p&gt;<br />
&lt;p class=&#8221;text&#8221;&gt;This is another sentence&lt;/p&gt;<br />
&lt;p class=&#8221;text&#8221;&gt;This is yet another sentence&lt;/p&gt;<br />
&lt;p class=&#8221;text&#8221;&gt;This is one more sentence&lt;/p&gt;</em></p>
<p><em>.text<br />
{<br />
color: #03c;<br />
font-size: 2em<br />
}</em></p>
<p>Instead of assigning a value to each individual paragraph, we can nest them within a &lt;div&gt; tag and assign a value to this tag:</p>
<p><em>&lt;div class=&#8221;text&#8221;&gt;<br />
&lt;p&gt;This is a sentence&lt;/p&gt;<br />
&lt;p&gt;This is another sentence&lt;/p&gt;<br />
&lt;p&gt;This is yet another sentence&lt;/p&gt;<br />
&lt;p&gt;This is one more sentence&lt;/p&gt;<br />
&lt;/div&gt;</em></p>
<p><em>.text p<br />
{<br />
color: #03c;<br />
font-size:2em<br />
}</em></p>
<p>This second CSS example basically says that every paragraph within class=&#8221;text&#8221; should be assigned a colour value of #03c and a font size of 2em.</p>
<p>At first glance this doesn&#8217;t look too important, but if you can apply this properly throughout your document you can easily knock off 20% of the file size.</p>
<p>You may have noticed the colour values are shorter than normal. #03c is a shortened version of #0033cc &#8211; you can assign this abbreviated value to any colour value like this.</p>
<p><strong>5. Use shorthand CSS properties</strong></p>
<p>You can use the following shorthand properties for the margin CSS command.</p>
<p>Use:</p>
<p><em>margin: 2px 1px 3px 4px (top, right, bottom, left)</em></p>
<p>&#8230;instead of</p>
<p><em>margin-top: 2px;<br />
margin-right: 1px;<br />
margin-bottom: 3px;<br />
margin-left: 4px</em></p>
<p>Use:</p>
<p><em>margin: 5em 1em 3em (top, right and left, bottom)</em></p>
<p>&#8230;instead of</p>
<p><em>margin-top: 5em;<br />
margin-right: 1em;<br />
margin-bottom: 3em;<br />
margin-left: 1em</em></p>
<p>Use:</p>
<p><em>margin: 5% 1% (top and bottom, right and left)</em></p>
<p>&#8230;instead of</p>
<p><em>margin-top: 5%;<br />
margin-right: 1%;<br />
margin-bottom: 5%;<br />
margin-left: 1%</em></p>
<p>Use:</p>
<p><em>margin: 0 (top, bottom, right and left)</em></p>
<p>&#8230;instead of</p>
<p><em>margin-top: 0;<br />
margin-right: 0;<br />
margin-bottom: 0;<br />
margin-left: 0</em></p>
<p>These rules can be applied to margin, border and padding.</p>
<p><strong>6. Minimise white space, line returns and comment tags</strong></p>
<p>Every single letter or space in your HTML code takes up one byte. It doesn&#8217;t sound like much but it all adds up. We&#8217;ve found that by working through your page source and eliminating unnecessary white space and comments, you can shave off up to, or even over (if your HTML is really inefficient) 10% of its file size.</p>
<p><strong>7. Use relative call-ups</strong></p>
<p>Try to avoid absolute call ups as they take up more space. An example of an absolute call up is: &lt;a href=&#8221;http://www.URL.com/filename.htm&#8221;&gt;. Much better would be &lt;a href=&#8221;filename.htm&#8221;&gt;. But what if some files are in different folders to other ones? Use these shorthand properties:</p>
<p>* &lt;a href=&#8221;/&#8221;&gt; &#8211; Calls up http://www.URL.com<br />
* &lt;a href=&#8221;/filename.html&#8221;&gt; &#8211; Calls up http://www.URL.com/filename.html<br />
* &lt;a href=&#8221;/directory/filename.html&#8221;&gt; &#8211; Calls up http://www.URL.com/directory/filename.html<br />
* &lt;a href=&#8221;./&#8221;&gt; &#8211; Calls up index.html within that directory<br />
* &lt;a href=&#8221;../&#8221;&gt; &#8211; Calls up index.html one directory above<br />
* &lt;a href=&#8221;../filename.html&#8221;&gt; &#8211; Calls up filename.html one directory above<br />
* &lt;a href=&#8221;../../&#8221;&gt; &#8211; Calls up index.html two directories above</p>
<p><strong>8. Remove unnecessary META tags and META content</strong></p>
<p>Most META tags are pretty much unnecessary and don&#8217;t achieve very much. If you&#8217;re interested, you can see a list of <a href="http://www.datamouse.biz/blog/wordpress/meta-tags-the-myths-and-seo/39/">META tags</a> that are available in another article. The most important tags for search engine optimisation are the keywords and description tags, although due to mass abuse they&#8217;ve lost a lot of importance in recent times. When using these META tags try to keep the content for each under 200 characters &#8211; anything more increases the size of your pages. Lengthy META tags are not good for search engines anyway because they dilute your keywords.</p>
<p><strong>9. Put CSS and JavaScript into external documents</strong></p>
<p>To place CSS in an external document use:</p>
<p><em>&lt;link type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; href=&#8221;filename.css&#8221; /&gt;</em></p>
<p>To place JavaScript in an external document use:</p>
<p><em>&lt;script language=&#8221;JavaScript&#8221; src=&#8221;filename.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</em></p>
<p>Any external file is called up just once and then cached (stored) on the user&#8217;s computer. Instead of repeating JavaScript or CSS over and over again in HTML files, just write it out once in an external document.</p>
<p>And don&#8217;t forget, there&#8217;s no limit to the number of these external documents that you can use! For example, instead of making one huge CSS document, have one main one and some others that are specific to certain areas of your site.</p>
<p><strong>10. Use / at the end of directory links</strong></p>
<p>Don&#8217;t do this: <em>&lt;a href=&#8221;http://www.URL.com/directoryname&#8221;&gt;</em></p>
<p>Do this instead: <em>&lt;a href=&#8221;http://www.URL.com/directoryname/&#8221;&gt;</em></p>
<p>Why? If there&#8217;s no slash at the end of the URL the server doesn&#8217;t know if the link is pointing to a file or to a directory. By including the slash the server instantly knows that the URL is pointing to a directory and doesn&#8217;t need to spend any time trying to work it out.</p>
<p>These are all pretty small changes, but difficult to implement <em>after </em>you  have deployed your site.Get it right first, and you&#8217;ll reap the benefits!</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/10/10-ways-to-improve-the-download-time-for-your-web-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Quick and Easy Ways to Better SEO</title>
		<link>http://www.datamouse.biz/blog/2008/10/5-quick-and-easy-ways-to-better-seo/</link>
		<comments>http://www.datamouse.biz/blog/2008/10/5-quick-and-easy-ways-to-better-seo/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 23:38:28 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Optimise]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/5-quick-and-easy-ways-to-better-seo/66/</guid>
		<description><![CDATA[There are literally hundreds of ways to improve the search optimisation of your site. This article covers 5 really simple, really effective changes that you could make today. Read on!]]></description>
			<content:encoded><![CDATA[<p>This is a compilation of my opinion of the 5 quickest and easiest ways to better your SEO.</p>
<p>SEO stands for Search Engine Optimization, and is probably one of THE most important things you can do for your website. You could have the best designed site with the absolute GREATEST content, but without being optimized it wouldn’t make much of a difference.</p>
<p><strong>Tip #1: Use Lowercase URLs</strong></p>
<p>This is probably the easiest and quickest little boost you could give your ranking.</p>
<p>Depending on your server’s operating system, file names and/or directories may or may not be case sensitive. So, casing in your URLs could mean trouble.</p>
<p>For example, http://www.yoursite.com/portfolio.html and http://www.yoursite.com/Portfolio.html are two completely different URLs if your server is running a UNIX system. However, if your server is Windows based, then those two URLs would be one and the same.<br />
Now just throw in the fact that www.yoursite.com and WWW.YOURSITE.COM are always going to be the same domain, and the possibility of confusion is almost inevitable.</p>
<p>So, the best idea is to make all file and directory names lowercase by default. This way you do not have to worry about whether or not your URLs are going to get processed correctly.</p>
<p><strong>Tip #2: Dislodge Your Underscore Key</strong></p>
<p>Ok, so you don’t really have to remove the underscore key from your keyboard… However, it is certainly a good idea to refrain from using the underscore and/or periods in your file names.</p>
<p>We’ve all seen them… The super long page name separated by underscores.</p>
<p>http://www.yoursite.com/my_photo_gallery_page.html</p>
<p>File names like this are all too common, and are detrimental to SEO.</p>
<p>So, why do we do it?</p>
<p>1. Three main reasons:We think like humans, not like computers.</p>
<p>We look at a line of text and read it as words, and therefor attempt to separate it accordingly. Computers on the other hand do not. A computer sees characters and couldn’t care less about it being “human readable”.<br />
2. Underscores are promoted when picking usernames and/or email addresses</p>
<p>Most sites will allow the underscore to be used as a separator when choosing your username and/or email address. This makes it all that much more common for us to use the underscore key more often.<br />
3. Underscores look more like spaces</p>
<p>When viewing a page and/or file name that has been separated by underscores, our brains process the gap between the words first as a regular “space”. So, it isn’t too far fetched to say that this could be a contributing factor in why people use the underscore to separate words in page/file names.</p>
<p>So why is it bad?</p>
<p>Well, the underscore is often difficult to notice and even more difficult to type. Also, using separators of any kind when naming files is usually a sign of a poorly designed site structure.<br />
So how do we fix it?</p>
<p>Easy! Simply put… DON’T USE UNDERSCORES!<br />
If you find that you just have to use some sort of separator in your file names, it is less detrimental to use the hyphen ( &#8211; ).</p>
<p><strong>Tip #3: Be A Title Tell</strong></p>
<p>Have you ever visited a site and noticed that in the browser’s title output area, it only reads “index.html” or “Blank”?</p>
<p>This is because that person did not utilize the &lt;title&gt; tag. The title tag (or “title element”), is used to identify the contents of a page. It is one of the most important steps to improving your optimization level, yet it’s one of the most frequently discarded.</p>
<p>Another thing people don’t seem to realize is that each page has to have it’s own unique title. I have personally seen countless sites that use the exact same title for each page. This gives no indication as to what kind of content is on each individual page.</p>
<p>It is important when picking your title, you should use keywords and/or keyword phrases that are targeted in that particular page. For example, if we had a page where we were selling Keebler Elf Memorabilia and our shop is located in Arkansas…<br />
Ideally our title should look something like this:<br />
&lt;title&gt;Keebler Elf Memorabilia | Arkansas&lt;/title&gt;</p>
<p>There is no “set length” for the title tag, however you should be aware that if it is too long it can and could be truncated. I would recommend keeping your title tag text below 63 characters (including spaces).</p>
<p><strong>Tip #4: HALT… In the name of SEO!</strong></p>
<p>A critical, but all too often overlooked step in optimization is including the “alt” attribute to your images. This is quickly becoming more and more important to SEO, and should not be taken lightly.<br />
Also, the alt attribute is required for valid (X)HTML.</p>
<p>I won’t go into a full blown explanation as that only bore you. Just know that there are a few guidelines for the alt text you add to your images.</p>
<p>1. Don’t try stuffing your alt attribute with keywords</p>
<p>This is an approach which many of the “less reputable” SEO consultants will use to attempt to get a higher keyword density. However, this approach can actually hurt your page more than help it. If your keyword density is too high, that could automatically trigger the spam filter.<br />
2. Convey in text what the image conveys visually</p>
<p>This is probably the most commonly mistaken aspect of the alt attribute. The alt attribute is not necessarily supposed to be a description of the image.<br />
* Here are a few examplesIf you have an image that’s used as a button that leads the user to the “checkout” page, the proper alt text would not be “Checkout Button”. Instead, it should be “Go to checkout” or something relatively close to that.<br />
* Say you have an image of a magnifying glass used as your “search button”, the corresponding alt text should read “Search” or “Submit Search” or “Submit Query”<br />
* If you are using an image which is purely for “decoration” purposes, that image should either be used as a background image in CSS or you should add the alt attribute and leave it blank.<br />
Like so: alt=” “</p>
<p>That’s as deep as I’m going to get into that particular subject, as it’s nearly never ending. I will however, point you in the direction of where you can find more detailed information if needed.<br />
Google’s FAQ is chock full information about the matter.</p>
<p><strong>Tip #5: Update Update Update!</strong></p>
<p>Though it may seem like a rather monotonous job to update your site with new and fresh content frequently, this can dramatically increase your rankings. A steady flow of new and RELEVANT content can help to get your site noticed by the major search engines.</p>
<p>This doesn’t mean that you can post 10 blog entries per day about absolutely nothing and get a better pr score, you need to post content which is relevant to the overall scope of your site and that includes targeted popular keywords and phrases.</p>
<p>Keep in mind that this is only the “tip of the iceberg” so to speak. These are just simple, quick ways that you can help to improve your relevancy to the net. If you put into practice each of the tips mentioned above, you can expect to notice a difference in your ranking.</p>
<p>I’m not guaranteeing that you will be bumped to the top, but you should notice a difference no matter how small. Every little bit counts, right?</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/10/5-quick-and-easy-ways-to-better-seo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Working with Robots.txt</title>
		<link>http://www.datamouse.biz/blog/2008/10/working-with-robotstxt/</link>
		<comments>http://www.datamouse.biz/blog/2008/10/working-with-robotstxt/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 18:10:36 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Crawl]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Robots]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/working-with-robotstxt/65/</guid>
		<description><![CDATA[The robots.txt file is not just a way to control what search engines can and can't see on your web site. It has loads of other really importantfunctions too.
Check out this comprehensive article on how to work with robots.txt.]]></description>
			<content:encoded><![CDATA[<p><strong>What is the robots.txt file?</strong><br />
The robots.txt file is an ASCII text file that has specific instructions for search engine robots about specific content that they are not allowed to index. These instructions are the deciding factor of how a search engine indexes your website&#8217;s pages. The universal address of the robots.txt file is: www.domain.com/robots.txt. This is the first file that a robot visits. It picks up instructions for indexing the site content and follows them. This file contains two text fields. Lets study this example:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow:</em></p>
<p>The User-agent field is for specifying robot name for which the access policy follows in the Disallow field. Disallow field specifies URLs which the specified robots have no access to. An example:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /</em></p>
<p>Here &#8220;*&#8221; means all robots and &#8220;/ &#8221; means all URLs. This is read as, “No access for any search engine to any URL&#8221; Since all URLs are preceded by &#8220;/ &#8221; so it bans access to all URLs when nothing follows after &#8220;/ &#8220;. If partial access has to be given, only the banned URL is specified in the Disallow field. Lets consider this example:</p>
<p><em># Research access for Googlebot.</em></p>
<p><em>User-agent: Googlebot</em></p>
<p><em>Disallow:</em></p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /concepts/new/</em></p>
<p>Here we see that both the fields have been repeated. Multiple commands can be given for different user agents in different lines. The above commands mean that all user agents are banned access to /concepts/new/ except Googlebot which has full access. Characters following # are ignored up to the line termination as they are considered to be comments.</p>
<p>Working with the robots.txt file</p>
<p>1. The robots.txt file is always named in all lowercase (e.g. Robots.txt or robots.Txt is incorrect)</p>
<p>2. Wildcards are not supported in both the fields. Only * can be used in the User-agent field&#8217;s command syntax because it is a special character denoting &#8220;all&#8221;. Googlebot is the only robot that now supports some wildcard file extensions.<br />
Ref: http://www.google.com/support/webmasters/bin/topic.py?topic=8475</p>
<p>3. The robots.txt file is an exclusion file meant for search engine robot reference and not obligatory for a website to function. An empty or absent file simply means that all robots are welcome to index any part of the website.</p>
<p>4. Only one robots.txt file can be maintained per domain.</p>
<p>5. Website owners who do not have administrative rights cannot sometimes make a robots.txt file. In such situations, the Robots Meta Tag can be configured which will solve the same purpose. Here we must keep in mind that lately, questions have been raised about robot behavior regarding the Robots Meta Tag. Some robots might skip it altogether. Protocol makes it obligatory for all robots to start with the robots.txt thereby making it the default starting point for all robots.</p>
<p>6. Separate lines are required for specifying access to different user agents and Disallow field should not carry more than one command in a line in the robots.txt file. There is no limit to the number of lines though i.e. both the User-agent and Disallow fields can be repeated with different commands any number of times. Blank lines will also not work within a single record set of both the commands.</p>
<p>7. Use lower-case for all robots.txt file content. Please also note that filenames on Unix systems are case sensitive. Be careful about case sensitivity when defining directory or files for Unix hosted domains.</p>
<p>You can use the robots.txt Validator to check your robots.txt from www.searchengineworld.com.</p>
<p><strong>Advantages of the robots.txt file</strong><br />
Protocol demands that all search engine robots start with the robots.txt file. This is the default entry point for robots if the file is present. Specific instructions can be placed on this file to help index your site on the web. Major search engines will never violate the Standard for Robots Exclusion.</p>
<p>1. The robots.txt file can be used to keep out unwanted robots like emailing retrievers, imaging strippers etc.</p>
<p>2. The robots.txt file can be used to specify the directories on your server that you don&#8217;t want robots to access and/or index e.g. temporary, cgi, and private/back-end directories.</p>
<p>3. An absent robots.txt file could generate a 404 error and redirect the robot to your default 404 error page. Here it was noticed after careful research that sites that do not have a robots.txt file present and had a customized 404-error page, would serve the same to the robots. The robot is bound to treat it as the robots.txt file, which can confuse it&#8217;s indexing.</p>
<p>4. The robots.txt file is used to direct select robots to relevant pages to be indexed. This specially comes in handy where the site has multilingual content or where the robot is searching for only specific content.</p>
<p>5. The need for the robots.txt file was also felt to stop robots from deluging servers with rapid-fire requests or re-indexing the same files repeatedly. If you have duplicate content on your site for any reason, the same can be controlled from getting indexed. This will help you avoid any duplicate content penalties.</p>
<p><strong>Disadvantages of the robots.txt file</strong><br />
Careless handling of directory and filenames can lead hackers to snoop around your site by studying the robots.txt file, as you sometimes may also list filenames and directories that have classified content. This is not a serious issue as deploying some effective security checks to the content in question can take care of it. For example if you have your traffic log on your site on a URL such as www.domain.com/stats which you do not want robots to index, then you would have to add a command to your robots.txt file. As an example:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /stats/</em></p>
<p>However, it is easy for a snooper to guess what you are trying to hide and simply typing the URL www.domain.com/stats in his browser would enable access to the same. This calls for one of the following remedies -</p>
<p>1. Change file names:<br />
Change the stats filename from index.php to something different, such as stats- new.php so that your stats URL now becomes www.domain.com/stats/stats-new.php</p>
<p>Place a simple text file containing the text, &#8220;Sorry you are not authorized to view this page&#8221;, and save it as index.php in your /stats/directory.</p>
<p>This way the snooper cannot guess your actual filename and get to your banned content.</p>
<p>2. Use login passwords:<br />
Password-protect the sensitive content listed in your robots.txt file.</p>
<p><strong>Optimization of the robots.txt file</strong><br />
The Right Commands in robots.txt :<br />
Use correct commands. Most common errors include &#8211; putting the command meant for &#8220;User-agent&#8221; field in the &#8220;Disallow field&#8221; and vice-versa.</p>
<p>Please also note that there is no &#8220;Allow&#8221; command in the standard robots.txt protocol. Content not blocked in the &#8220;Disallow&#8221; field is considered allowed. Currently, only two fields are recognized: &#8220;The User-agent field&#8221; and the &#8220;Disallow field&#8221;. Experts are considering the addition of more robot recognizable commands to make the robots.txt file more Webmaster and robot friendly.</p>
<p>Note     Note: Google is the only search engine, which is experimenting with certain new robots.txt commands.<br />
It recognizes the &#8220;allow&#8221; command. Please read more details on the google site for robots.txt usage.</p>
<p><strong>Bad Syntax:</strong><br />
Do not put multiple file URLs in one Disallow line in the robots.txt file. Use a new Disallow line for every directory that you want to block access to. Incorrect Robots.txt</p>
<p>Example:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /concepts/ /links/ /images/</em></p>
<p>Correct robots.txt example:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /concepts/</em></p>
<p><em>Disallow: /links/</em></p>
<p><em>Disallow: /images/</em></p>
<p><strong>Files and Directories:</strong><br />
If a specific file has to be disallowed, end it with the file extension and without a forward slash in the end. Study the following robots.txt example:</p>
<p>For file:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /hilltop.phpl</em></p>
<p>For Directory:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /concepts/</em></p>
<p>Remember if you have to block access to all files in the directory, you don&#8217;t have to specify each and every file in robots.txt. You can simply block the directory as shown above. Another common error is leaving out the slashes altogether. This would leave a very different message than intended.</p>
<p><strong>The Right Location for the robots.txt file:</strong><br />
No robot will access a badly placed robots.txt file. Make sure that the location is www.domain.com/robots.txt.</p>
<p><strong>Capitalization in robots.txt</strong><br />
Never capitalize your syntax commands. Directory and filenames are case sensitive in Unix platforms. The only capitals used per standard are: &#8220;User-agent &#8221; and &#8220;Disallow&#8221;</p>
<p><strong>Correct Order for robots.txt :</strong><br />
If you want to block access to all but one or more than one robot, then the specific ones should be mentioned first. Lets study this robots.txt example:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /</em></p>
<p><em>User-agent: MSNbot</em></p>
<p><em>Disallow:</em></p>
<p>In the above case, MSNbot would simply leave the site without indexing after reading the first command. Correct syntax is:</p>
<p><em>User-agent: MSNbot</em></p>
<p><em>Disallow:</em></p>
<p><em>User-agent: *</em></p>
<p><em>Disallow: /</em></p>
<p><strong>The robots.txt file :</strong><br />
Not having a robots.txt file at all could generate a 404 error for search engine robots, which could redirect the robot to the default 404-error page or your customized 404-error page. If this happens seamlessly, it is up to the robot to decide if the target file is a robots.txt file or an html file. Typically it would not cause many problems but you may not want to risk it. It&#8217;s always a better idea to put the standard robots.txt file in the root directory, than not having it at all.</p>
<p>The standard robots.txt file for allowing all robots to index all pages is:</p>
<p><em>User-agent: *</em></p>
<p><em>Disallow:</em></p>
<p><strong>Using # Carefully in the robots.txt file:</strong><br />
Adding comments after the syntax commands is not a good idea using &#8220;#&#8221;. Some robots might misinterpret the line although it is acceptable as per the robots exclusion standard. New lines are always preferred for comments.</p>
<p><strong>Using the robots.txt file</strong></p>
<p>* Robots are configured to read text. Too much graphic content could render your pages invisible to the search engine. Use the robots.txt file to block irrelevant and graphic-only content.</p>
<p>* Indiscriminate access to all files, it is believed, can dilute relevance to your site content after being indexed by robots. This could seriously affect your site&#8217;s ranking with search engines. Use the robots.txt file to direct robots to content relevant to your site&#8217;s theme by blocking the irrelevant files or directories.</p>
<p>* The robots.txt file can be used for multilingual websites to direct robots to relevant content for relevant topics for different languages. It ultimately helps the search engines to present relevant results for specific languages. It also helps the search engine in its advanced search options where language is a variable.</p>
<p>* Some robots could cause severe server loading problems by rapid firing too many requests at peak hours. This could affect your business. By excluding some robots that might be irrelevant to your site, in the robots.txt file, this problem can be taken care of. It is really not a good idea to let malevolent robots use up precious bandwidth to harvest your emails, images etc.</p>
<p>* Use the robots.txt file to block out folders with sensitive information, text content, demo areas or content yet to be approved by your editors before it goes live.</p>
<p>The robots.txt file is an effective tool to address certain issues regarding website ranking. Used in conjunction with other SEO strategies, it can significantly enhance a website&#8217;s presence on the net.</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/10/working-with-robotstxt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where to Place Keywords (SEO)</title>
		<link>http://www.datamouse.biz/blog/2008/10/where-to-place-keywords-seo/</link>
		<comments>http://www.datamouse.biz/blog/2008/10/where-to-place-keywords-seo/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 21:16:24 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Content Writing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Meta Tags]]></category>
		<category><![CDATA[Optmise]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[Title Tags]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/where-to-place-keywords-seo/64/</guid>
		<description><![CDATA[Any SEO firm will tell you that keyword research and identification is a major factor in their optimization strategies; that much is a no brainer. But knowing where to place those keywords can be a little trickier. Here are some tips you can use to help you know where to place keywords and phrases in your webpage.]]></description>
			<content:encoded><![CDATA[<p>Any SEO firm will tell you that keyword research and identification is a major factor in their optimization strategies; that much is a no brainer. But knowing where to place those keywords can be a little trickier. Here are some tips you can use to help you know where to place keywords and phrases in your webpage:</p>
<p><strong>Title Tags:</strong><br />
The title tag is a great place to add your targeted keywords. The text inside the title tag displays as your page’s title in the search engines’ results. The title tag should be no more than 6 or 7 words, with the keywords appearing at the beginning of the tag. If your title is any longer, the level of Keyword Density drops (so the words become less important to the SERPS).</p>
<p><strong>Anchor Text:</strong><br />
Anchor text links are ranked as very valuable to search engines, so plenty of them should be in your web pages. The most powerful anchor texts of all are those whose text contains targeted keywords.  Each click on an inbound keyword anchor link will count as a vote of that keyword to a search engine’s rankings. There&#8217;s a whole article on <a href="http://www.datamouse.biz/blog/wordpress/?p=51">Anchor Text Optimisation</a> available in the archives.</p>
<p><strong>Heading Tags:</strong><br />
Adding keywords in heading tags (H1, H2 and H3) is as beneficial as putting them in the page title. Do not use words like “and”, “for”, “the”, etc. as they are ignored by search engine spiders. Try to make best possible use of this place in your website.</p>
<p><strong>URL:</strong><br />
Including targeted keywords in your website’s URL is helpful from an SEO perspective. Also be sure to use hyphens (-) instead of underscores (_) in your URL to separate text. As with title tags, the more words you have, the less &#8220;strength&#8221; or weight they will have with the search engines.</p>
<p><strong>Meta Tags:</strong><br />
Although Meta tags are no longer recognized by Google, they are still helpful for other search engines like Yahoo and MSN. If you are optimizing for other search engines, it’s a good idea to place some keywords in Meta tags. If you would like to read more on meta tags, there&#8217;s a list of <a href="http://www.datamouse.biz/blog/wordpress/?p=40">meta tags</a> and also an article on the <a href="http://www.datamouse.biz/blog/wordpress/meta-tags-the-myths-and-seo/39/">myths of SEO and meta tags</a>.</p>
<p><strong>Alt Tags:</strong><br />
Search engine spiders are unable to read images or graphics. If you have images in your web pages, then make sure to include several top targeted keywords in the ALT tags. Be careful not to “stuff” the alt tags with too many keywords, however, or your rankings could be dropped.</p>
<p><strong>Website Body:</strong><br />
Strategically “sprinkling” keywords throughout the body of your website is ideal. All pages should contain at least the top 2 keywords that you are targeting, and all articles and other content should be peppered with various targeted keywords as much as possible. Also note that the closer to the top of your page, the moreweight the search engines will add to them.</p>
<p>Using this short list to help you with your keyword placements will surely benefit your search engine rankings.</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/10/where-to-place-keywords-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Rules for SEO</title>
		<link>http://www.datamouse.biz/blog/2008/10/20-rules-for-seo/</link>
		<comments>http://www.datamouse.biz/blog/2008/10/20-rules-for-seo/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 19:24:50 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Improve]]></category>
		<category><![CDATA[Optimise]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Rules]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/20-rules-for-seo/63/</guid>
		<description><![CDATA[There are so many tutorials, articles and blogs out there with advice on improving your Google PageRank and SEO strategies; which one do you pick?
This article covers the best examples to offer 20 simple rules that will have your site flying up the SERPs]]></description>
			<content:encoded><![CDATA[<p>1. Setup a Google Webmaster Central account to monitor your site’s robots crawl status, HTTP errors, search keyword traffic, indexed pages, back-links and many more diagnostic &amp; information tools. Google provides this at no cost to you.</p>
<p>2. To appear higher in Google&#8217;s organic search results, the foremost thing you should do is to remove spider traps, like long URL&#8217;s, too much JavaScript, Flash or other rich media on your pages and improper URL redirects. Check your site if it is clearly mapped out for Google (Yahoo!, MSN etc) to get your site indexed easily. You may want to use content lists, like categories or a sitemap too.</p>
<p>3. The file name of the webpage plays a small role in improving the search engine relevance. Using short keywords in the file name not only helps identifying the page content but also improves page relevance for the term. Therefore, it is better to name a page like &#8211; http://www.datamouse.biz/blog/wordpress/is-your-site-chrome-compatible/62/ rather than http://www.datamouse.biz/blog/wordpress/Page?page=62. Also, make sure you use hyphens &#8216;-&#8217; between keywords instead of underscores &#8216;_&#8217;. Google considers hyphen as a space and underscores as a merged single word.</p>
<p>4. Avoid using subdomains unless absolutely necessary as search engines often treat them as a separate domain and limit the pass-through of the trust value of your main site to it.</p>
<p>5. Make sure to mention your geographical information like your real world address on your pages. This information should be included in HTML so that the spiders can read and distinguish it. Modern bots are looking for area codes, zip codes and city names to assist their Search Engine users in locating stores and services near their location. This will provide you a competitive advantage when someone searches for your business.</p>
<p>6. If for some reason, you have no option other than using flash, there is something called Macromedia SDK that helps search engines to understand what the page (or website) is about as it helps the bots to crawl through the flash page. You may also want to add more keyword rich content in ‹NOEMBED› tags.</p>
<p>7. Don&#8217;t just rely on a single way, for Search Engines to index your website. Most importantly, you must put link to new pages on your site map. Update your Google site map every time you add a new page. If there&#8217;s a corresponding page on your site that you can use to link to the new page, do so. Don&#8217;t forget to mention your new page on your blog. In case of blogs, ping Google, Yahoo, technorati, etc every time you post a blog.</p>
<p>8. It always helps your ranking to have a keyword in your domain name, given that you have strong internal and external linking for the same keyword. If you have useful content on your website, people will link to your website using your domain name as anchor text (which carries your keyword), so your ranking for that keyword will improve. But even if you don&#8217;t have a keyword in your domain name, there&#8217;s no need to worry as the off page factors contribute to rankings. For e.g. consider Adobe, it is the top result out of 3 billion results for the keyword phrase &#8220;click here&#8221;. This is because of the off-page factors, and not owing to presence (or absence) of &#8220;click here&#8221; in Adobe&#8217;s domain name.</p>
<p>9. You must pay attention while writing the title and description for your website. Your page may only be ranking number 5 or 6 on Search Engines, but if you&#8217;ve taken enough time to create an enticing title and description for all your pages, you may still manage to earn the same CTR as the one sitting on the number one spot. Similarly, a website ranking number one for a keyword might have a poor CTR if the webmaster hasn&#8217;t put in enough thought while writing the website&#8217;s title and description.</p>
<p>10. Anchor text is one of the best places to insert your keyword phrases. Go through your website and look for phrases like &#8216;Click here for a quote&#8217;, &#8216;Click here for more information&#8217; etc. Suppose &#8216;Click here for a mortgage loan quote&#8217; or &#8216;Click here for more Denver coffee shop information&#8217;. But make sure the entire sentence is a link or if not, at least make the keyword phrase a link.</p>
<p>11. If you are serious about doing a long term online business, don&#8217;t engage yourself in black hat SEO practices. Even though they can give you short term Search Engine advantage but will hurt you badly in long term:</p>
<ul>
<li>Don&#8217;t use hidden text or hidden links.</li>
<li>Don&#8217;t employ cloaking or lightning fast java redirects.</li>
<li>Don&#8217;t load up your pages with irrelevant words.</li>
<li>Don&#8217;t create multiple pages, subdomains, or domains with substantially duplicate content.</li>
</ul>
<p>12. At SMX, all of the engineers from all the search engines made a statement that 301 redirect will not carry the full effect if the content of the redirecting website is topically not the same. We should avoid redirecting our website to a site which is topically irrelevant to our website. For e.g. if you are planning to redirect (301) your website about cars, then you should not redirect it to a website selling watches. An inappropriate redirect will not lead to any benefit to your website.</p>
<p>13. Dumping new content on your website in one go is not such a good idea from the search engine&#8217;s point of view. Make sure that you consistently add new posts and articles on a regular basis. This will not only increase the bot crawl frequency of your website, but will also result in frequent repeated traffic.</p>
<p>14. For an optimized body copy, it is extremely important for a website to not only have the most important keywords, but it must also read well naturally. Modern search engines use artificial intelligence (called Latent Symentic Indexing), that is a measure of how well the supporting content and text match to the theme of the website. So there is no point of wasting your time on keyword stuffing anymore; instead you must look to refine the content as much as possible.</p>
<p>15. Did you know that on May 12, Google announced a preview release of Google Friend Connect, a service that helps website owners to grow traffic by enabling any site on the web to easily provide social features for its visitors. Google Friend Connect lets you grow traffic by easily adding social features to your website. With just a few snippets of code, you get more people engaging more deeply with your site. It helps you to attract more visitors, enrich your site with social features and the best part is that you need no programming skills whatsoever to use Friend Connect on your site.</p>
<p>16. If you want to make sure that Search Engines index each and every link on your website, you may want to add a link to your sitemap on every important new page that you create on your website. This not only improves the Search Engine Indexing but also also consolidates the internal linking of your website.</p>
<p>17. Followed by the red carpet seomoz Web 2.0 awards 2008 was the &#8216;.0&#8242; update from Google when Google decided to deindex the seomoz web 2.0 award page just because the URL of the page ended up with a &#8216;.0&#8242;. The page earlier used to rank number one for semoz web 2.0 awards but as the back link weightage shifted from &#8216;web2.0/&#8217; to &#8216;web 2.0&#8242;, Google picked up the latter and decided to unindex it as Google internally uses &#8216;.0&#8242; extensions to recognize the files they don&#8217;t want to follow. So here is a new way how you can hide your pages from Google &#8211; simply end up the URL with &#8216;.0&#8242;. It works.</p>
<p>18. When your search engine rankings fluctuate, or even if your site drops from the rankings, don&#8217;t panic. Understand that these things happen in this industry, and they WILL happen to you. What you DON&#8217;T want to do is make any changes to your web pages because of fluctuations in the rankings or because your site drops out of the rankings. Step back and wait to see what happens- monitor your rankings, watch the industry and read the news. In all likelihood, your pages will reappear right back where they should be (or close to those rankings), if you haven&#8217;t done anything wrong (such as using spam). Fluctuations in rankings are normal. Far too many people panic in the short term, when they would be wiser to just take it easy and not start making changes so quickly.</p>
<p>19. While you are optimizing a page for a specific phrase, think about why a searcher used that specific phrase. If you are optimizing a &#8216;Frequently Asked Questions&#8217; page, are you delivering your most frequently asked questions? Think of the circumstances that might lead an individual to search for certain specific phrases like:<br />
&#8220;infant pillow support&#8221; (Would this attract parents of newborn babies?)<br />
&#8220;Meaning of babies names&#8221; (Would this attract &#8220;soon to be&#8221; parents?)</p>
<p>20. Discover Your Competitors: It&#8217;s a fact that search engines analyze incoming links to your website as part of their ranking criteria. Knowing how many incoming links your competitors have will give you a fantastic edge. Of course, you still have to discover your competitors before you can analyze them.</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/10/20-rules-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sound SEO Advice</title>
		<link>http://www.datamouse.biz/blog/2008/10/sound-seo-advice/</link>
		<comments>http://www.datamouse.biz/blog/2008/10/sound-seo-advice/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 15:07:37 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Advice]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Optimise]]></category>
		<category><![CDATA[PageRank]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/sound-seo-advice/61/</guid>
		<description><![CDATA[Search Engine Optimization (SEO) should be at the top of your Web publishing priority list. If Web surfers can't find your site, they can't read it, use it or share it with others.]]></description>
			<content:encoded><![CDATA[<p>Search Engine Optimization (SEO) should be at the top of your Web publishing priority list. If Web surfers can&#8217;t find your site, they can&#8217;t read it, use it or share it with others.</p>
<p>One might think SEO is an arcane science that only a few experts have mastered. There is quite a bit to it, and there are times you might want to employ an SEO firm or expert to help you optimize your site. Often this is a costly solution that&#8217;s not feasible for individuals or small businesses.</p>
<p>The good news is Search Engine Optimization doesn&#8217;t have to be rocket science. There are quite a few things you can do on your own. I&#8217;ve got a few proven, and easy to do tips and techniques that will help people find your content and make it easy for Google (and other engines) to crawl and index your site.</p>
<p><strong>Lead with good content.</strong></p>
<p>My number one tip for SEO? Provide frequently updated content that people want to read. Incoming links are key and if you can provide content that people will read and get something out of, there is a good chance they will link to that content.<br />
Research your keywords.</p>
<p>You can use a Keyword Suggestion Tool or simply put yourself in the mindset of your target audience. Learn which terms people will search with and get those into your content and meta information.</p>
<p><strong>Provide a good, clear title.</strong></p>
<p>If SEO is important to you make sure you don&#8217;t get cute with the titles for your pages. Write titles that are clear and contain your keywords. Once you&#8217;ve got that title written, make sure it appears in your title tag as well as in your top level heading tags (h1) on your pages.</p>
<p><strong>Don&#8217;t use splash pages or Flash.</strong></p>
<p>Search engines like text. A Flash or image intro can block an engine&#8217;s crawler right at your homepage. If you do use images, be sure to add keyword laden descriptions to your alt attributes. There are discussions about Google now being capable of &#8220;reading&#8221; Flash content. This is not entirely true.</p>
<p>Google can apparently read text from Flash files, but cannot yet put that text into context with the rest of your site. You may have Flash text elements that say &#8220;click here&#8221; or similar,with the bulk of your other &#8220;text&#8221; actually being images. These are still invisible to google and I would still advise against using for the time being.</p>
<p><strong>Use Robots.txt</strong></p>
<p>Make sure you provide a robots.txt file that will help tell crawlers what to index on your site. There are quite a few neat things you can do with your robots.txt file, so you might want to read up on them.</p>
<p><strong>Code your pages with standard, clean and semantic markup.</strong></p>
<p>The cleaner your code the easier it is to crawl. Use markup as it is intended with the proper tags tied to the proper information. For example, place your headings with in heading tags, paragraphs within paragraph tags, etc. Another good idea is to move all your presentation into a CSS (Cascading Style Sheet) file. This makes your code lighter, faster and easier to index.</p>
<p><strong>Don&#8217;t get tricky!</strong></p>
<p>Whatever you do, don&#8217;t try to &#8220;trick&#8221; your way into more traffic. Duplicate pages, hidden links and other less-than-honest techniques can get you seriously penalized and ruin any positive work you&#8217;ve done.</p>
<p><strong>Be patient and don&#8217;t forget the people!</strong></p>
<p>Search engines are constantly updating and re-indexing. It may take awhile after you&#8217;ve made some changes to see the results. Hang in there, keep working on your content and keep providing something that people find useful.</p>
<p>It&#8217;s easy to forget that the reason you want to optimize for search in the first place is that you want to bring people to your site and your content!</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/10/sound-seo-advice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importance of Search Engines and SEO</title>
		<link>http://www.datamouse.biz/blog/2008/09/importance-of-search-engines-and-seo/</link>
		<comments>http://www.datamouse.biz/blog/2008/09/importance-of-search-engines-and-seo/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 09:34:42 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Rank]]></category>
		<category><![CDATA[SERPs]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/importance-of-search-engines-and-seo/60/</guid>
		<description><![CDATA[Search engines are the gateway to the Internet; they are the first tool that potential customers use to find the products and services they need. This is why Search Engine Optimization (SEO) is so important. If the customers do not find your website, you have little possibilities of making any sales.]]></description>
			<content:encoded><![CDATA[<p>Search engines are the gateway to the Internet; they are the first tool that potential customers use to find the products and services they need. This is why Search Engine Optimization (SEO) is so important. If the customers do not find your website, you have little possibilities of making any sales.</p>
<p><strong>What is SEO?<br />
</strong>SEO (Search Engine Optimization) is defined as any action or adjustment, also known as Optimization that you perform on your site for the purpose of improving the volume and quality of traffic to your site from search engines by utilizing search results for targeted keywords. From implementing Human Readable URLs and Keyword targeting, to Marketing, to adding a no-index page or directory to your robots.txt file,Optimizing of title tags and Meta tags makes a huge difference to make your site visible on search engines. Anchor texts on the pages are optimized with important keywords and target pages. The content on the page is adequately marked up using HTML tags or through CSS. Search engines reward pages with more text content, these optimization steps are done to make the site SE friendly.All of this is Search Engine Optimization (SEO).</p>
<p>Since search engines are the first stop for people on the Internet looking for goods or services, the position your website appears in search results is an important factor.  If your URL shows up far down the results, the chances of the costumer never finding you increase incrementally.</p>
<p><strong>Why it is wise to outsource SEO to experts?<br />
</strong>Search engines are the vehicles that drive potential customers to your websites. But in order for visitors to reach their destination &#8211; your website &#8211; you need to provide them with specific and effective signs that will direct them right to your site. You do this by creating carefully chosen keywords. Setting up a SEO friendly website is the very first step of an Internet marketing campaign, and the success or failure of your site depends greatly on how specifically you have defined your website goals.</p>
<p>If you don&#8217;t know what you want your site to accomplish, it will most likely fail to accomplish anything. Whether you are a sole trader or a big business, SEO can boost targeted traffic on your website but cannot guarantee conversion if the website is not positioned well. With SEO you can get free clicks to your site from customers who are looking for your product or service.</p>
<p>Advertising your services or products on the Internet is both extremely effective and extremely competitive. There are several ways to go about attracting traffic to your website; Pay-Per-Click is one of the options you can choose from, along with developing an SEO, or search engine optimization campaign.</p>
<p>Where you rank defines your company. Out of sight out of mind has never been more accurate as it pertains to search engine positioning. To the victor go the spoils; in this case, those who rank at the helm of a popular keyword or key phrase have a higher potential of attracting a higher click through rate from search engine queries.</p>
<p>To conclude, ensuring you get the best ROI for your marketing program means taking advantage of all the different flavors of SEO. Having an aesthetically beautiful site is not that vital than to have an SEO friendly website.</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/09/importance-of-search-engines-and-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Most Deadly SEO Sins &#8211; Common Mistakes Even SEO Experts Fail to Notice</title>
		<link>http://www.datamouse.biz/blog/2008/09/most-deadly-seo-sins-common-mistakes-even-seo-experts-fail-to-notice/</link>
		<comments>http://www.datamouse.biz/blog/2008/09/most-deadly-seo-sins-common-mistakes-even-seo-experts-fail-to-notice/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 15:34:42 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Optimise]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/most-deadly-seo-sins-common-mistakes-even-seo-experts-fail-to-notice/59/</guid>
		<description><![CDATA[If you are initiating Search Engine Optimization of your website, you probably have done some study about SEO techniques through forums and articles. You may have somewhat worked out a roadmap of how to proceed with the site optimization process. While you may be clear on ‘what to do’, it would also help to understand ‘what not to do’.]]></description>
			<content:encoded><![CDATA[<p>If you are initiating Search Engine Optimization of your website, you probably have done some study about SEO techniques through forums and articles. You may have somewhat worked out a roadmap of how to proceed with the site optimization process. While you may be clear on ‘what to do’, it would also help to understand ‘what not to do’. Very often, SEO professionals miss out these critical aspects of optimization rendering all their site optimization work ‘useless’. Here are the 10 most avoidable situations while you are carrying out SEO for your website.</p>
<p><strong>1. Optimizing for the wrong keywords:</strong><br />
The biggest sin anyone can make in a SEO campaign is to choose the wrong keywords to optimize your site with. If your Site is ranking high for a keyword that is not being searched for then even a very high ranking cannot bring you any traffic. On the other hand, if you are ranking high with wrong keywords then you would get you traffic but will not convert into transactions.</p>
<p><strong>2. Spamming:</strong><br />
Search Engines are getting smarter by the day. Over a period of time Search Engines have evolved from “Ignoring” spam to a point where they now &#8216;penalize&#8217; websites for using spam techniques. Following are the prominent Search engine spam techniques you should avoid.</p>
<blockquote><p>Hidden text:<br />
Hidden text is using the same color text on your page as the background color. In order to get a higher keyword density, webmasters sometimes add a lot of keywords as hidden text because they are not visible to the human viewer but can be read by the search engine crawlers in the source code of the page. Most search engines can now detect which pages use such techniques and ignore or ban such sites.</p>
<p>Doorway pages:<br />
A doorway page is a web page designed for search engines so as to rank well for specific keyword phrases and redirect a user to a different page on visit. This is called “bait &amp; switch” technique. These pages usually rely on frequent repetition of the keyword phrase, and try to &#8220;trick&#8221; search engines into ranking them well. Most search engines can now detect techniques such as “Meta Refresh” and penalize such sites. If you&#8217;ve used doorway pages on your website and it is still not penalized, you stand a good chance to come out clean by deleting these pages immediately.</p>
<p>Doorway domains / multiple domains with same content:<br />
This technique uses URL-redirection meant to display another web address for the same web page or several domains show same content. In a typical example, the user types in a web address such as www.new-blue-widget.com but the URL is redirected to www.widget.com. Alternately, both these websites show identical content in the hope that one or the other may rank high in the search engine result pages (SERP). Most of the time these domains are registered by the same party. Many people also use ‘disposable’ domain names in sending out email spam so as to protect their main domains. Search engines can easily detect these techniques.</p>
<p>Duplicate content:<br />
Many site owners try to increase their content base by creating multiple pages of the same content either on the same site or copying the same site over several domains they may own. Search engines avoid cluttering their index with duplicate content and penalize sites which do excessive content duplication in order to ‘trick’ their algorithms.</p>
<p>Cloaking:<br />
Cloaking is a technique of serving keyword-stuffed spam pages to search engine spiders by detecting their IP address, while serving totally different pages to human visitors. This is different than geo-targeting where you may show different content to different visitors based on their region or language. The search engines can differentiate between the two and might penalize your site if you are attempting to ‘trick’ them. If you want to avoid any penalties, the thumb rule is to show the same content to search engines that you show to the visitors.</p>
<p>Keyword spam:<br />
Keyword spam is a technique to stuff lots of keywords all over the page – in the Title tag, Meta tags, Anchor texts, Alt Attributes etc., in an attempt to increase keyword density or accommodate large number of keywords on the same page. This not only results in the page text to sound stupid to your readers, but you also lose the ‘theme’ of the page. Search engines rate pages as per ‘themes’ and credit pages which have content classified in nicely laid out ‘themes’. For best results, one should always focus on optimizing a page with 2-3 themed keywords rather than trying to optimize with lots of keywords. Over-optimized pages with keyword spam may invite search engine penalties.</p>
<p>Excessive HTML markup:<br />
It is common knowledge that search engines give more credit to text marked as Headline &lt;H1&gt; / &lt;H2&gt; or other attributes like making the text bold, underlined, colored, italicized etc. In an attempt to improve importance of the text, many webmasters do an excessive HTML markup of their page content and hide the ugly display behind a craftily made CSS. Search engines have a fair idea of a balanced markup and penalize sites which do excessive HTML markup in an attempt to ‘trick’ their algorithms.</p></blockquote>
<p><strong>3. Creating search engine roadblocks:</strong><br />
If you are developing a website, it helps to know of ways you can prevent creating search engine roadblocks. Your SEO efforts may not get results if your site structure is such that search engines find it difficult to index your site easily. Following are some of the problem areas which create a hurdle in your site indexing -</p>
<blockquote><p>Having Flash-based site:<br />
Sites built in Flash may have a greater aesthetic impact but perform poorly in search engines. Most search engines cannot read text or links embedded in Flash. It is best to limit the use of flash for content which absolutely requires flash or make a text-based alternate for your website so that search engine crawlers can index your site content easily.</p>
<p>Having text in images:<br />
Search engines cannot read text embedded in images. If you have too much content and navigation using graphic, image maps or image buttons, it would be good to either convert them to simple text or have an alternate navigation bar at the bottom of your website. It would also help to have appropriate text in the Alt-Text tag for each image. Similarly</p>
<p>Having frame-based sites:<br />
If you have built your website using frames, you might have a major problem indexing content sitting inside frames. The way frames and the content page URLs are structured, most search engines find it difficult to reach the inner page content of your website. It is best to restructure your website and remove frames so that you can get your site in the search engine index.</p>
<p>Having free content behind login:<br />
Some sites &amp; forums prefer the visitors to login before they can reach the real content of the website. Due to lack of awareness or inadvertently, if you have placed all your content behind a login, then the search engines cannot index your site as their crawlers cannot fill in a login-password or ‘register’ on your website. You might want to restructure your website such that you can show the publicly-available content without the need to login to your website.</p>
<p>Poor site inter-linking:<br />
Poor site interlinking not only poses hurdles to search engines for indexing your site but also makes your site navigation difficult for your site visitors. It is advisable to have a good navigation bar and a site map on your site so that each page is not more than two clicks away.</p>
<p>Deep directory structure:<br />
A deep directory structure is generally difficult for search engines to crawl. While it is not a rule, it would be good if you can keep your directories not more than one or two levels down, neatly classified into ‘themes’. Deep directory structure also makes your inner pages URLs look too long which discourages other sites to link to your inner pages.</p></blockquote>
<p><strong>4. Having less content / Non-original content:</strong><br />
Search engines thrive on text content. They are mainly looking for text content on your website and reward sites which have lots of easily accessible, non-duplicate original text content. If your sites has less or non-original content picked up from other sites or your affiliate sites, it is unlikely that you would be rewarded, no matter how many efforts you put in optimizing your website. A good way to generate original content is to write nice, keyword rich, descriptive articles classified in themes, about your product or service, its usage, benefits and tips etc.</p>
<p><strong>5. Using session IDs:</strong><br />
Session ID is a long string of jumbled characters appearing in the URL of your website which changes on each visit. They are usually used to track a visitor ’s online shopping cart contents. When a search engine crawler visits your website, your server assigns it a session ID and the crawler indexes your content and associates it with that session ID. Most search engines have hundreds of bots crawling and re-crawling the web. On each repeat visit of the crawler to your website, they index a fresh copy of your content and associates it with different URLs (session IDs) resulting in cluttering the search engine database with lots of duplicate content. Since search engines are not very good at tackling this problem, they often drop the site from future indexing. If you wish to track as user’s session, a better solution is to use cookies instead of session IDs. Cookies are information files stored on user’s computers and perform the same task as a session ID.</p>
<p><strong>6. No efforts in getting incoming links:</strong><br />
Incoming links to your website are very important and are responsible for high rankings on search engines to a large extent. Link popularity determines how important your site is. Link building is an important part of your SEO campaign. No extent of site optimization can get you high rankings if you do not carry out a supporting link building campaign.</p>
<p><strong>7. Relying on one-time SEO:</strong><br />
Search engine optimization is a constant process. You need to update your website SEO when you add new content, update old content or change the theme of your web pages. Addition of new content often requires you to update site interlinking, improve navigation and add links in your site map. Search patterns and keyword phrases also change over time as the search community matures or industry trends change. This requires a fresh keyword research and SEO perspective on your site. Changes may also become necessary if your current SEO strategy is not paying off. In any case, optimizing your site once and expecting it to give you sustained results without further efforts is a mistake.</p>
<p><strong>8. Showing impatience:</strong><br />
SEO of a website rarely show instant results. If your site is already indexed in search engines, it may take about 4-8 weeks to index your new content. New sites may take 4-6 months to get indexed for the first time. It takes time for SEO results to show up. It is easy to think the past efforts were not good enough and get tempted to change the optimization techniques. It is not advisable to change the optimization of your site pages before you are able to see the results of your previous SEO efforts.</p>
<p>If you keep the above points in mind while carrying out SEO for your site, you would be safe from any penalties. If you are outsourcing your site SEO to a professional company, make sure they adhere to the above guidelines and do not risk your site into a search engine penalty. Remember, just a few precautions can go a long way in having your site rank high and stay away from undesirable search engine penalties.</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/09/most-deadly-seo-sins-common-mistakes-even-seo-experts-fail-to-notice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Comprehensive Guide to Google Webmaster Tools</title>
		<link>http://www.datamouse.biz/blog/2008/09/a-comprehensive-guide-to-google-webmaster-tools/</link>
		<comments>http://www.datamouse.biz/blog/2008/09/a-comprehensive-guide-to-google-webmaster-tools/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 15:25:52 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Webmaster]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/a-comprehensive-guide-to-google-webmaster-tools/58/</guid>
		<description><![CDATA[Its always been an endeavor of web site owners and marketers to gather comprehensive information about how Google views their site. Google webmaster tools provide assistance in this regard. These tools also strive to elevate a site's visibility along with offering useful alternatives on how to take care of web site listings.]]></description>
			<content:encoded><![CDATA[<p>Its always been an endeavor of web site owners and marketers to gather comprehensive information about how Google views their site. Google webmaster tools provide assistance in this regard. These tools also strive to elevate a site&#8217;s visibility along with offering useful alternatives on how to take care of web site listings.</p>
<p>To able to use the Webmaster Tools, you need to have an active Google account which you can access at https://www.Google.com/webmasters/sitemaps.</p>
<p><strong>Step 1: Verify your site</strong><br />
Before taking a further step, it is essential you inform Google about the sites you desire to control.</p>
<p>Once you enter the prompted URL, you shall be asked for verification to control the site. It is entirely your discretion whether you want to upload a blank HTML file, or paste a META tag in your home page’s HEAD. It is simply a way for Google to ensure that you have access to the domains before you can view any information.</p>
<p><strong>Step 2: Control Dashboard</strong><br />
Now that your web site is successfully verified, you can easily access a web site&#8217;s profile. In order to do that you need to click on Manage: http://www.yourdomain.com link in the Webmaster Tools Dashboard. Thereafter you shall be directed to the “Overview” screen which contains high level details of the most relevant information on your site along with links to certain Webmaster Tools.</p>
<p><strong>Step 3: Check different statistical tools</strong><br />
Once you have reached the overview screen, click on the tool links in the left navigation to find out various statistical data about your website.</p>
<p><strong>Diagnostics</strong><br />
The Diagnostic tools play a dynamic role by informing you about any errors or problems encountered by Google crawlers while accessing pages on your site. The mobile web crawl tool, for example, informs about the errors on the pages created specifically for viewing on mobile cell phones. Putting it specifically, if GoogleBot comes via your site and tracks errors of missing pages in a robots.txt, or any other problem, the errors will surface, instantly.</p>
<p>Following are the errors usually encountered:</p>
<p>1. HTTP errors<br />
2. Not found<br />
3. URLs not followed<br />
4. URLs restricted by robots.txt<br />
5. URLs timed out<br />
6. Unreachable URLs</p>
<p>Of course, we would want Google to encounter least possible errors. Therefore it is good idea to keep checking these reports regularly, rectify any problems making sure the fresh content is regularly crawled.</p>
<p><strong>Statistics</strong><br />
The most important ingredient for site marketers are the statistical tools which help them gain access to a number of reports, some of which are given below:</p>
<p><strong>Top Search Queries</strong><br />
Top search query clicks are the top most queries that direct traffic to your site (based on the number of clicks to your pages) from a Google search. Once you access the site, informative tables shall show you which search queries frequently returned pages from your site along with those which were clicked.</p>
<p>Often overlooked, Google effectively shows you where in the SERPs your site was listed for particular search items.</p>
<p><strong>What Googlebot Sees</strong><br />
How Googlebot sees your site is an interesting way to learn how others link to you and the relevance of these links on the page content. This report consists of the phrases used in external links to your site (anchor text), the keywords in your site’s content, the inbound links and finally the actual content on your site due to the density.</p>
<p><strong>Crawl Stats</strong><br />
The crawl stats report focuses more about the PageRank values rather than the actual crawling stats. Your site is scanned by Google which shows you how your site’s PageRank is distributed on a range of Low, Medium, High – and “not yet assigned”. It maybe a relevant piece of information but also very demoralizing because almost all the pages in the sites will always be seen as low on the PageRank scale. The bottom table of this tool shows which specific page on your site carries the most PageRank.</p>
<p>The most exciting feature of this tool is the bottom table which clearly indicates the specific page on your website carrying the highest PageRank. Each month this table is updated, allowing one to measure the success of each link building campaign.</p>
<p><strong>Index Stats</strong><br />
Through this invaluable tool, you can learn about your site&#8217;s Google indexing status simply by using search operators. Following are the shortcut links provided on the following operators.</p>
<p>1. site:<br />
2. link:<br />
3. cache:<br />
4. info:<br />
5. related:</p>
<p><strong>Subscriber Stats</strong><br />
This is an excellent tool if you are not using a RSS feed manager to publish lists of site updates. This page shall display the number of users who have subscribed to these feeds using certain Google products. Once you use their feed management systems effectively, Google helps you easily find stats on your feed subscriptions.</p>
<p><strong>Links</strong><br />
This effective tool helps you scan those pages on your site which have links pointing to them internally or externally. If you are are striving for more popularity and exposure of your site, this tool would be very helpful in keeping a track of your link popularity.</p>
<p><strong>Google Sitemaps</strong><br />
Google Sitemaps have been used for sometime now as an important ingredient of the Webmaster Tools. Once uploaded these XML based sitemap files help Google to access all the pages you would like.</p>
<p><strong>Tools</strong><br />
Most of the relevant data you need for equipping yourself with information van be found in this tools segment of the Webmaster Tools which is fragmented well below:</p>
<p><strong>Analyze robots.txt</strong><br />
The robots.txt is simply a guideline for Googlebot and various other spiders to search for the instructions which gives or restricts access to certain elements on the site being indexed or available for public viewing. This tool should be used even when minor changes are made to the robots.txt files as often a simple alteration may force Google and other search engines to drop many pages at a time.</p>
<p><strong>Manage site verification</strong><br />
One can call this a very flexible tool wherein you can go back and make changes in your site to suit your needs as and when required. This is a very useful tool to verify and protect your site.</p>
<p><strong>Set crawl rate</strong><br />
The rate at which Googlebot crawls is based on many factors. This rule specifies about the various activities of Googlebot on your site. The main endeavor of this tool is to attract Google more often onto our site and enabling it to interact with us more by requesting more and more pages. Once that happens fresh content is indexed and ranked speedily in the future.</p>
<p>A bit of interaction by Google results in spikes in the graphs which help you measure your efforts in link popularity.</p>
<p><strong>Set preferred domain</strong><br />
If you are fed up of seeing the same URL format in your reports or if you feel apprehensive about canonical URLs effecting your optimization and links, then the preferred domain tool is the perfect remedy for your worries. With this tool you can direct Google to display the URLs according to your preference.</p>
<p><strong>Enable enhanced image search</strong><br />
This exciting tool can allow you to control the labeling images that exist on your site. It is an effective way to improve image relevancy though one should be a bit cautious about using this tool so that you don&#8217;t lose out on traffic.</p>
<p><strong>Remove URLs</strong><br />
When certain problems occur on pages that no longer exist and cause issues by being on the Google index, this tool is most helpful in resolving the matter. This tool can help you remove common errors from the index by going back and making the relevant changes on your robots.txt files.</p>
<p>Even though the above information may help you use each tool effectively in the entire Webmaster Tools line, there are other ways you can make the most of your interaction with Google. These tools are one of the effective ways of keeping a tab on your site.</p>
<p>The more these tools are used, the more you would get used to making sense of data available. Ultimately it would help you to learn more about your site and the data you never thought existed.</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/09/a-comprehensive-guide-to-google-webmaster-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>32 Most Basic SEO Factors You Can’t Afford to Overlook</title>
		<link>http://www.datamouse.biz/blog/2008/08/32-most-basic-seo-factors-you-can%e2%80%99t-afford-to-overlook/</link>
		<comments>http://www.datamouse.biz/blog/2008/08/32-most-basic-seo-factors-you-can%e2%80%99t-afford-to-overlook/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 12:55:36 +0000</pubDate>
		<dc:creator>DataMouse</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Optimse]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Rules]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.datamouse.biz/blog/wordpress/?p=57</guid>
		<description><![CDATA[In the dynamic world of SEO, where there are so many small and big things that contribute to your website’s Search Engine friendliness, it is so easy for even professional SEOs to miss out on few of the factors. So as to make sure that there is less SEO skipping and your website is fulfilling Search Engine’s basic requirements, I have compiled a really simple and most basic SEO checklist that will help you to be a little more confident about your SEO campaign.]]></description>
			<content:encoded><![CDATA[<p>In the dynamic world of <a href="http://www.datamouse.biz/SEO/">SEO</a>, where there are so many small and big things that contribute to your website’s Search Engine friendliness, it is so easy for even professional SEOs to miss out on few of the factors. So as to make sure that there is less <a href="http://www.datamouse.biz/SEO/">SEO </a>skipping and your website is fulfilling Search Engine’s basic requirements, I have compiled a really simple and most basic <a href="http://www.datamouse.biz/SEO/">SEO</a> checklist that will help you to be a little more confident about your <a href="http://www.datamouse.biz/SEO/">SEO</a> campaign.</p>
<p>1. If you haven’t booked a domain name yet, make sure you have your main keyword in it; people will link to you using your domain name as anchor text and hence giving a boost to your ranking for that particular keyword.<br />
2. To begin with, make sure that you run a Google Adword Campaign to know the most convertible keyword theme for your website.<br />
3. After the final keyword research, use this data to write unique and click-enticing title and meta description tag for each page. 65 characters in title tag is the maximum amount that will display in the search results but a little longer won’t hurt either. Keyword in the title tag is one most important factor you can’t afford to ignore.<br />
4. Make sure that you haven’t overused keywords on the body copy; keyword density is a thing of past, Search Engines now use Latent Semantic Indexing instead.<br />
5. Use keywords in alt and title tag of every image on your site (without making it look spammy).<br />
6. Use H1, H2, H3 tags in your keyword headings. Use only one H1 tag per page with the most important keyword in it but you can use as many h2, h3 tags.<br />
7. Use bold or strong tags to highlight the most important keyword.<br />
8. Make sure all the internal and external navigational links have keywords in the anchor text and not just ‘click here’ and ‘learn more’. It gives a boost to the internal linking. You may even consider using tag clouds on your website for better Internal linking.<br />
9. Be selective while submitting links to directories otherwise you may spoil your link profile in pursue of easy back links.<br />
10. Use a robot.txt file to stop Google bots to index the unwanted &amp; duplicate content.<br />
11. Use Google and static sitemap and don’t forget to update it time to time.<br />
12. Use keywords in bread crumb navigation.<br />
13. Make sure you have a customized 404 error page. To make this task more interesting for you, check out these <a href="http://www.smashingmagazine.com/2007/08/17/404-error-pages-reloaded/">cool 404 error pages</a>. (But please don’t forget to put a static sitemap or site search on your error page).<br />
14. Implement Google Analytics and feed burner to monitor website stats.<br />
15. Minimize exit links from your landing page.<br />
16. Do your host’s IP analysis especially if you own a family of websites.<br />
17. Write your company’s local address with your important keyword somewhere in the heading on the website and submit your website to Google local business Center for optimizing your website locally.<br />
18. Make sure that there are no broken links. Use a program like <a href="http://home.snafu.de/tilman/xenulink.html">Xenu</a>.<br />
19. Every time you add a new blog or article (auto) ping atleast Google, Yahoo, MSN and technorati.<br />
20. Keep your website and page URLs as simple as possible. Search Engines hate non-sense dynamically generated URLs like http://www.crapurl/114/cat223 or http://www.crapurl/view_item.php?listing_id=477443&amp;pic_id=2. Use URL masking.<br />
21. For usability follow these simple design principles.<br />
22. Don’t try to rank all the pages of your website. Concentrate on five of them and keep cannibalization factor in mind while doing the internal and external linking of your website.<br />
23. Be creative in your link building approach. One solid idea can fetch you a million dollar worth links.<br />
24. Keep your website link worthy.<br />
25. Domain age matters a lot. You can’t do any thing about it but you have to be patient. (I wish there was some aging formula for websites like anti-aging cream for women)<br />
26. Link popularity of the website. Use Yahoo for this as it presents more accurate link profile of a website than Google.<br />
27. Additionally, use misspelled keywords in the keyword meta tags. It certainly helps.<br />
28. You don’t want to waste your link equity/link juice to get wasted on ranking pages like ‘request for proposal’ , ‘privacy policy’, ’shipping policy’. It’s better to use no-follow tags on such pages.<br />
29. Make sure you update your website content as often as possible. This improves your website bot-crawl frequency.<br />
30. Have your website W3C compliant, it will give your website some definite future benefits.<br />
31. Test your website on text browsers like lynx.<br />
32. View your website at browsershots.org, where you can test on loads of different operating systems and browsers.</p>
<p>These are the most basic SEO factors that I can recall at the moment according to current Big3 Search Engine algos. If you think I have missed out on any of the important factors, please feel free to add them as comments on this post.</p>
<p>DM</p>
]]></content:encoded>
			<wfw:commentRss>http://www.datamouse.biz/blog/2008/08/32-most-basic-seo-factors-you-can%e2%80%99t-afford-to-overlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
