<?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>Samir Asher &#187; SEO</title>
	<atom:link href="http://www.samirasher.com/category/seo/feed" rel="self" type="application/rss+xml" />
	<link>http://www.samirasher.com</link>
	<description>Distorting Rules…</description>
	<lastBuildDate>Sun, 04 Jul 2010 15:07:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CSS techniques for better website SEO</title>
		<link>http://www.samirasher.com/seo/css-mantra-website-seo-higher-rankings.html</link>
		<comments>http://www.samirasher.com/seo/css-mantra-website-seo-higher-rankings.html#comments</comments>
		<pubDate>Fri, 26 Dec 2008 12:38:56 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[cascading style sheet]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[css layouts]]></category>
		<category><![CDATA[css menu]]></category>
		<category><![CDATA[css tips]]></category>
		<category><![CDATA[css tutorial]]></category>
		<category><![CDATA[Website SEO]]></category>

		<guid isPermaLink="false">http://www.samirasher.com/?p=225</guid>
		<description><![CDATA[You probably know what potential SEO has and what wonders it can do for your website. However if you have just woken up from deep sleep or out from 20 years of prison term Then, Read This… What is SEO? In SEO a very important aspect of any On-page optimization is Clean Code. Search engine [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.samirasher.com/wp-content/uploads/2008/12/css.gif"><img class="alignleft size-thumbnail wp-image-232" title="css" src="http://www.samirasher.com/wp-content/uploads/2008/12/css-110x96.gif" alt="" width="110" height="96" /></a>You probably know what potential SEO has and what wonders it can do for your website. However if you have just woken up from deep sleep or out from 20 years of prison term<br />
Then, <span id="more-225"></span>Read This… <a href="http://www.samirasher.com/seo/what-is-search-engine-optimization.html" target="_blank">What is SEO?</a></p>
<p>In SEO a very important aspect of any On-page optimization is Clean Code. Search engine robots or spiders see your website code and we humans see content and design directly.</p>
<p>By using CSS (cascading style sheets) you can enhance your website SEO in a major way</p>
<p>Let’s see how we can do SEO with CSS</p>
<ul>
<li><strong>Rapid Loading Web Sites</strong><br />
One of the foremost reason you should use CSS is because, it makes the webpage lighter. If coded properly it will significantly cut down the weight of your webpage and will remove any unwanted html code. This in turn would make it easier for the search engine spiders, to crawl the website, and lead to better and faster indexing of your website. It will also positively facilitate ‘content to code ratio’ which is very important in SEO</li>
<li><strong>Content on Top of webpage</strong><br />
Now, let me tell you something about how search engine spiders crawl websites, they read websites top to bottom. Having your most important content with keywords embedded on top of the webpage, helps your website to rank higher for your major keywords. You can achieve this by using “absolute” tag</li>
</ul>
<p><a href="http://www.samirasher.com/media/seo-css-layout.zip" target="_self">Download</a> this ready to use SEO CSS layouts which you can use while developing your website</p>
<p>You can also download SEO layouts from http://layouts.ironmyers.com/ they have a variety of tableless layouts available for download</p>
<ul>
<li><strong>Headlines &#8211; H1 /H2 tags instead of ugly &lt;font&gt; tag</strong><br />
H1-H6 tags or heading tags if used correctly it can boost your rankings. But I know they don’t look as cool as your &lt;font&gt; styling. With CSS you can tweak how H1 tags render your headings. You can change font size, color, give borders, backgrounds etc</li>
</ul>
<p>Here is a little example of how cool heading can look and at the same time it helps in boosting SERP</p>
<p><a href="http://www.samirasher.com/wp-content/uploads/2008/12/custom-h1.gif"><img class="alignnone size-full wp-image-226" title="custom-h1" src="http://www.samirasher.com/wp-content/uploads/2008/12/custom-h1.gif" alt="" width="419" height="62" /></a></p>
<blockquote><p>&lt;h1 class=&#8221;h1&#8243;&gt;Custom HEADING using CSS&lt;/h1&gt;</p></blockquote>
<blockquote><p>.h1 {<br />
color: #000;<br />
font-size: 110%;<br />
border-bottom-width: 3px;<br />
border-bottom-style: dashed;<br />
border-bottom-color: #FC0;<br />
font-family: Verdana, Geneva, sans-serif;<br />
font-weight: bold;<br />
padding-bottom: 4px;<br />
background-image: url(icon.gif);<br />
background-repeat: no-repeat;<br />
background-position: left 2px;<br />
padding-top: 12px;<br />
padding-left: 30px;<br />
background-color: #FFFFD9;<br />
}</p></blockquote>
<ul>
<li><strong>SEO Friendly navigation</strong><br />
Your website’s internal link structure plays a very crucial role in SEO, as it helps pages   to get indexed quickly and having your keywords hyperlinked increases the relevancy between pages. Also it’s really important for your visitors to navigate your site in just few clicks. A good SEO navigation can help you achieve high rankings in search engines. I recommend using pure CSS menus instead of using crappy JavaScript / Table menus</li>
</ul>
<p>You can download some really cool <a href="http://www.samirasher.com/css/ready-to-use-css-based-navigation-menus-that-are-seo-friendly.html">SEO friendly CSS menus</a> that I have developed. Just play around with CSS and you can change the style of these menus as per your website design</p>
<ul>
<li><strong>Ease of maintenance a real time saver</strong><br />
Yes by using CSS you can maintain your site efficiently and swiftly. Time is money, and CSS not only helps your site rank higher in search engines but it also saves your much valuable time.In a scenario where you decide that you want to change the text color and background color of your header, if your site is coded the old fashioned way without CSS, then you will have to edit each and every page of your website and make the needed changes. However if you are using CSS, with a slight change in the tag and all your pages gets updated in the desired manner, instantly.</li>
</ul>
<p>Wrong CSS techniques that will result in getting your site banned in search engines</p>
<p><strong>Using CSS to hide keywords/text</strong><a href="http://www.samirasher.com/wp-content/uploads/2008/12/text.jpg"><img class="alignright size-thumbnail wp-image-234" title="73844536" src="http://www.samirasher.com/wp-content/uploads/2008/12/text-110x82.jpg" alt="" width="152" height="113" /></a></p>
<p>Many webmasters use Black Hat SEO techniques. Hiding keywords from users through CSS will definitely get you into trouble. Search engines read that text, but it also detects that the text is hidden from users, which could get your site banned.</p>
<p>I have stated some of the important benefits of using Cascading Style Sheets. If you have some of them to share, please use the comment form below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.samirasher.com/seo/css-mantra-website-seo-higher-rankings.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is Search Engine Optimization?</title>
		<link>http://www.samirasher.com/seo/what-is-search-engine-optimization.html</link>
		<comments>http://www.samirasher.com/seo/what-is-search-engine-optimization.html#comments</comments>
		<pubDate>Thu, 11 Sep 2008 12:16:32 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://www.samirasher.com/?p=11</guid>
		<description><![CDATA[If you are an avid web surfer, you must have definitely come across the term Search Engine Optimization or SEO as it’s popularly known. To put it simply, Search Engine Optimization is act of optimizing website to increase quality traffic through organic and natural search engine results (SERP). An average user while searching for something [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.samirasher.com/wp-content/uploads/2008/09/seo.jpg"><img class="alignleft size-thumbnail wp-image-15" title="seo" src="http://www.samirasher.com/wp-content/uploads/2008/09/seo-150x150.jpg" alt="" width="110" height="110" /></a><br />
If you are an avid web surfer, you must have definitely come across the term Search Engine Optimization or SEO as it’s popularly known. To put it simply, Search Engine Optimization is act of optimizing website to increase quality traffic through organic and natural search engine results (SERP).<span id="more-11"></span></p>
<p>An average user while searching for something in search engine doesn’t go through more than top 20 to 30 results to get the information. If your website doesn’t feature amongst top search results than you can simply kiss traffic goodbye.</p>
<p>Therefore when a relevant keyword or key phrase is searched in major search engines like Google, MSN, Yahoo etc you need to get your website rank higher so you get more visitors and better your chances to convert them to customers.</p>
<p>There are many factors that affects your website ranking in search engines, Content, Relevance, Coding, Structure, Link popularity could be some of the factors preventing search engine spiders to spider your site properly.</p>
<p>Watch this space to learn more about different aspects of search engine optimization, the seo process and do-it-yourself search engine tutorials.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.samirasher.com/seo/what-is-search-engine-optimization.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
