<?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>Search Friendly Web Design&#187; Search Engine Optimization</title>
	<atom:link href="http://searchfriendlywebdesign.com/blog/seo-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://searchfriendlywebdesign.com</link>
	<description>Search Engine Optimization + Website Design</description>
	<lastBuildDate>Sun, 11 Jul 2010 20:37:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Optimizing Website Page Speed</title>
		<link>http://searchfriendlywebdesign.com/optimizing-website-page-speed/</link>
		<comments>http://searchfriendlywebdesign.com/optimizing-website-page-speed/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 15:00:57 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Page Speed]]></category>
		<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=403</guid>
		<description><![CDATA[
Ok, we know page speed is important because fast sites equal happy users. And from my last post we know how to run a test for page speed. But the big question remains is how does one go about optimizing their site using the feedback from the speed tests?
I&#8217;m glad you asked!
From the page speed [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Foptimizing-website-page-speed%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Foptimizing-website-page-speed%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Ok, we know page speed is important because fast sites equal happy users. And from my last post we know <a title="Analyzing Website Page Speed" href="/analyzing-website-page-speeds/" target="_self">how to run a test for page speed</a>. But the big question remains is how does one go about optimizing their site using the feedback from the speed tests?<span id="more-403"></span></p>
<p><img class="alignright size-medium wp-image-426" title="Optimmizing Websites for Maximum Page Speed" src="http://searchfriendlywebdesign.com/wp-content/uploads/2010/04/speed-300x231.gif" alt="Optimmizing Websites for Maximum Page Speed" width="300" height="231" />I&#8217;m glad you asked!</p>
<p>From the page speed tests you&#8217;ll see a number of different criteria with some suggestions. Here are the 3 most common suggestions you&#8217;ll see.</p>
<h3>GZIP Compression:</h3>
<p>One of the most common suggestions is GZIP Compression. This one sounds technical but its actually pretty easy. First you have to make sure that your server is configured to run GZIP compression. You can find out by using this <a href="http://www.gidnetwork.com/tools/gzip-test.php" target="_blank">gzip test</a>. If the response comes back no.. then you need to contact your hosting company and ask them if they can enable it by compiling mod_deflate in apache.</p>
<p>Once gzip compression is enabled on the server you&#8217;ll need to initiate it by modifying your .htaccess file. You can add your handler a couple of different ways.</p>
<p><code># compress all text &amp; html:<br />
AddOutputFilterByType DEFLATE text/html text/plain text/xml</code></p>
<p>Or</p>
<p><code>#compress certain file types by extension:<br />
&lt;Files *.html&gt;SetOutputFilter DEFLATE&lt;/Files&gt;</code></p>
<p>Apache doesn’t make it easy to include multiple types. You can force it by having multiple sections, one for each extension. The “proper” way uses “FilesMatch” to match files by a regular expression and would look something like this (if you wanted to compress html, php,txt, css, js, gif, jpg &amp; png)</p>
<p><code># compress html, php,txt, css, js, gif, jpg &amp;amp; png:<br />
&lt;FilesMatch "\.(php|html|txt|css|js|gif|jpg)$"&gt;<br />
SetOutputFilter DEFLATE<br />
&lt;/FilesMatch&gt;<br />
# END Compression<br />
</code></p>
<p>For a better and more complete explanation on how GZIP Compression works as well as another explanation on how to implement gzip compression check out this <a href="//betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/" target="_blank">great article</a>.</p>
<p>Just by adding gzip compression to this website, I decreased the load time by more than 50%.</p>
<h3>Compiling Stylesheets and Remove Excess Whitespace.</h3>
<p>If you have multiple stylesheets then a good practice is to compile all of the css files into one single css file. Just copy and paste the code from each stylesheet into the compiled one. And be sure to comment the beginning and end each sheet section. Once compiled you may want to go through and clean up excess whites pace. In the old days css code was formatted like this&#8230;</p>
<p><code>body {<br />
font-size: 62.5%; /* Resets 1em to 10px */<br />
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;<br />
background: #d5d6d7 url('images/kubrickbgcolor.jpg');<br />
color: #333;<br />
text-align: center;<br />
}<br />
#page {<br />
background-color: white;<br />
border: 1px solid #959596;<br />
text-align: left;<br />
}<br />
#header {<br />
background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center;<br />
}</code></p>
<p>This code could be tightened up quite a bit and would look something like this&#8230;</p>
<p><code>body {font-size: 62.5%; /* Resets 1em to 10px */ font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; background: #d5d6d7 url('images/kubrickbgcolor.jpg'); color: #333; text-align: center; }<br />
#page { background-color: white; border: 1px solid #959596; text-align: left; }<br />
#header { background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center; }</code></p>
<p>By cleaning up the whitespace of the theme stylesheet on Search Friendly Web Design, I reduced the file from over 500 lines to under 80 lines and shaved a few milliseconds off my page speed.</p>
<h3>Compiling JavaScript Files and Move Them Down Under</h3>
<p>The last common optimization technique is to compile JavaScript files in the same manner as we just did with the CSS files. Once you&#8217;ve compiled your several JS files into one, move the JS call from the header down to the footer.</p>
<p>By optimizing your site in these 3 ways you will reduce the total number of http requests and at the same time compress those few files to produce optimum page speed.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/optimizing-website-page-speed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Analyzing Website Page Speeds</title>
		<link>http://searchfriendlywebdesign.com/analyzing-website-page-speeds/</link>
		<comments>http://searchfriendlywebdesign.com/analyzing-website-page-speeds/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 15:15:48 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[sem]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[speed test]]></category>
		<category><![CDATA[Webmaster Tools]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=390</guid>
		<description><![CDATA[
Page loading speeds are important to websites, especially now that page speed is part of the Google search algorithm. To analyze the page speed or load time of your website, here are 3 free and easy ways to analyze your websites page speed.
WebsiteOptimization.com
The tool I&#8217;ve been using for more than 6 years is the WebsiteOptimization.com [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fanalyzing-website-page-speeds%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fanalyzing-website-page-speeds%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Page loading speeds are important to websites, especially now that <a href="/page-speed-now-part-of-google-search-algorithm/" target="_self">page speed is part of the Google search algorithm</a>. To analyze the page speed or load time of your website, here are 3 free and easy ways to analyze your websites page speed.<br />
<span id="more-390"></span></p>
<h3><a href="http://searchfriendlywebdesign.com/wp-content/uploads/2010/04/page-speed-scrnshot.gif"><img class="alignright size-medium wp-image-392" title="Page Speed Analysis - Speed Up Your Website" src="http://searchfriendlywebdesign.com/wp-content/uploads/2010/04/page-speed-scrnshot-208x300.gif" alt="Page Speed Analysis - Speed Up Your Website" width="208" height="300" /></a>WebsiteOptimization.com</h3>
<p>The tool I&#8217;ve been using for more than 6 years is the <a href="http://www.websiteoptimization.com/services/analyze/" target="_self">WebsiteOptimization.com</a> page speed analysis tool.  Simply enter the url of the site you want to analyze. You&#8217;ll get a diagnosis or output of object size totals, external objects, page objects, download times and recommendations to help speed up your websites load time</p>
<h3>Google Webmaster Tools</h3>
<p>If you have an account with <a href="https://www.google.com/webmasters/tools" target="_blank">Google Webmaster Tools</a> you can find a Performance Overiew which details how fast your site is.  And you&#8217;ll also find a list of HTML suggestions to help increase load speeds. To find this data, login to your GWT account and under the Labs drop menu you&#8217;ll find a link to Site Performance. If you don&#8217;t have a webmaster tools set it.. you should go check it ASAP.</p>
<h3>FireBug for Firefox</h3>
<p><a href="http://getfirebug.com/" target="_self">FireBug is a plugin for FireFox</a> Browser. The way I&#8217;ve always set it up was install FireBug then install Google Page Speed which installs into FireBug.  Once installed, open the page you want to analyze and then click the little bug in the lower right corner of your FireFox browser. Look under Page Speed &gt; Performance Tab then click the analyze button to receive and output of your score out 100 and suggestions on how to fix or speed up your page load times.</p>
<p>There you have it, 3 simple ways to analyze your website page speed and get recommendations on how to clean things up and speed up your sites load time.</p>
<h2>Next Step Speed Optimization</h2>
<p>Now that we have our page speed analysis and suggestions it&#8217;s time to get our hands dirty with a little bit of <a title="Optimizing Website Page Speed" href="/optimizing-website-page-speed/" target="_self">Web Page Speed Optimization</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/analyzing-website-page-speeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page Speed Now Part of Google Search Algorithm</title>
		<link>http://searchfriendlywebdesign.com/page-speed-now-part-of-google-search-algorithm/</link>
		<comments>http://searchfriendlywebdesign.com/page-speed-now-part-of-google-search-algorithm/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 14:00:47 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[sem]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Webmaster Tools]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=388</guid>
		<description><![CDATA[
According to Google Webmaster Blog, Page Speed is now part of the Google Search Algorithm.  So what does that mean exactly? It means that if you have a website that loads slow you get less points and for real fast sites&#8230; more points.
I&#8217;ve always considered Page Speed to more of a usability trait not so [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fpage-speed-now-part-of-google-search-algorithm%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fpage-speed-now-part-of-google-search-algorithm%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>According to Google Webmaster Blog, Page Speed is now part of the Google Search Algorithm.  So what does that mean exactly? It means that if you have a website that loads slow you get less points and for real fast sites&#8230; more points.<span id="more-388"></span></p>
<p><img class="size-medium wp-image-394 alignright" style="margin: 5px;" title="Page Speed Part of Google Search Algorithm" src="http://searchfriendlywebdesign.com/wp-content/uploads/2010/04/dragster-300x225.jpg" alt="Page Speed Part of Google Search Algorithm" width="300" height="225" />I&#8217;ve always considered Page Speed to more of a usability trait not so much a part of <a href="/organic-search-marketing/">search engine optimization</a> but I can see Google&#8217;s side of things.</p>
<blockquote><p>Speeding up websites is important — not just to site owners, but to all Internet users. Faster sites create happy users and we&#8217;ve seen in our <a href="http://googleresearch.blogspot.com/2009/06/speed-matters.html" target="_blank">internal studies</a> that when a site responds slowly, visitors spend less time there. But faster sites don&#8217;t just improve user experience; recent data shows that improving site speed also <a href="http://radar.oreilly.com/2009/07/velocity-making-your-site-fast.html" target="_blank">reduces operating costs</a>. Like us, our users place a lot of value in speed — that&#8217;s why we&#8217;ve decided to take site speed into account in our search rankings. We use a variety of sources to determine the speed of a site relative to other sites. &#8212; <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html" target="_self">Full Article Here</a>.</p></blockquote>
<p>So what does the Page Speed signal mean for webmasters and website owners? First off it&#8217;s nothing to panic about because overall Page Speed isn&#8217;t going to tank your rankings if you have a really slow loading site. Second you should <a href="/analyzing-website-page-speeds/" target="_self">run a Page Speed test against your site</a> and then third&#8230; <a href="/optimizing-website-page-speed/" target="_self">follow the recommendations of the Page Speed Analysis</a> and clean things up to make your site pages load faster.</p>
<blockquote><p>Google Also stated&#8230; &#8220;While site speed is a new signal, it doesn&#8217;t carry as much weight as the <a href="http://www.youtube.com/watch?v=muSIzHurn4U" target="_blank">relevance of a page</a>. Currently, fewer than 1% of search queries are affected by the site speed signal in our implementation and the signal for site speed only applies for visitors searching in English on Google.com at this point. We launched this change a few weeks back after rigorous testing. If you haven&#8217;t seen much change to your site rankings, then this site speed change possibly did not impact your site.&#8221;</p></blockquote>
<p>Personally I&#8217;m glad Google added Page Speed to their search ranking algorithm because overall I hope it signals some poorly designed or extremely outdated websites to clean up their act and make for a better internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/page-speed-now-part-of-google-search-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Let Google Page Rank Be Your Focus</title>
		<link>http://searchfriendlywebdesign.com/dont-let-google-page-rank-be-your-focus/</link>
		<comments>http://searchfriendlywebdesign.com/dont-let-google-page-rank-be-your-focus/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 16:00:14 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=323</guid>
		<description><![CDATA[
Google Page Rank is the  number or score assigned to each of your websites pages.  Google Page Rank is a key metric to monitor but should not  be the main focal point of an SEO Campaign. About a month ago Google made a major change to Webmaster Tools by removing all PageRank data.
&#8220;We&#8217;ve been telling [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fdont-let-google-page-rank-be-your-focus%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fdont-let-google-page-rank-be-your-focus%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Google Page Rank is the  number or score assigned to each of your websites pages.  Google Page Rank is a key metric to monitor but should not  be the main focal point of an SEO Campaign. About a month ago Google made a major change to Webmaster Tools by removing all PageRank data.</p>
<blockquote><p><em>&#8220;We&#8217;ve been telling people for a long time that they shouldn&#8217;t focus on PageRank so much; many site owners seem to think it&#8217;s the most important metric for them to track, which is simply not true,&#8221; states Moskwa. &#8220;We removed it because we felt it was silly to tell people not to think about it, but then to show them the data, implying that they should look at it.&#8221; (Source: WebProNews)</em></p></blockquote>
<p><em><span id="more-323"></span></em><img class="alignright size-full wp-image-328" style="border: 1px solid black; margin: 7px;" title="pagerank" src="http://searchfriendlywebdesign.com/wp-content/uploads/2009/11/pagerank.png" alt="Google Page Rank" width="300" height="300" align="right" />Many SEO&#8217;s believe that this move is Google&#8217;s way of trying to indirectly combat the rampant paid linking problem which Google created by introducing PageRank. In reality a good portion of the PageRank algorithm is based on links from external websites.  My perspective is that anyone with a little know-how can build up a good page rank with effective link building.  It is my opinion that the foundation of a search friendly site; the design, usability and overall optimization of said website is far more important.</p>
<h2>Page Rank Won&#8217;t Drive Traffic</h2>
<p>Let us say for instance that the goal of your website(s) is to sell products. To do this you need customers. Page rank won&#8217;t bring you customers if your customers can&#8217;t find you which is why I stress solid keyword research and thorough page optimization in front of page rank. A site needs to show up for the terms people are searching for.</p>
<p>Once they find you, having a clean design and easy to use website will keep your customers on your sites and hopefully buying your products. If your site doesn&#8217;t make sense  and is not intuitive to use then those potential customers are likely to go away frustrated and buy somewhere else and there is nothing your Google Page Rank can do to change that.</p>
<p>When I search the web I frequently find websites in the #1 search listing that have a lower Page Rank than the subsequent competitive listing. Just because you have a PR4 doesn&#8217;t mean you can&#8217;t get beat in the SERP&#8217;s by competing sites with a PR3 or lower. With that said, I like to view page rank as more of a success indicator not the driving force behind  an SEO campaign.</p>
<h2>A Good Foundation Will Foster A Good Page Rank</h2>
<p>So instead of focusing on your Google Page Rank, focus on building a good clean website that is search engine friendly, user friendly and intuitive.  Perform thorough keyword research, optimize it and be proactive with a long term SEO strategy. If you do all this a good page rank is sure to follow. And remember that in the big picture page rank simply measures the quantity and quality of the links pointing to your website.</p>
<p>Need help with your search engine optimization strategy? We can help. Review our <a href="/organic-search-marketing/" target="_self">search engine marketing services</a> or <a href="/contact/">contact us</a> today.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/dont-let-google-page-rank-be-your-focus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Tools for Market Research</title>
		<link>http://searchfriendlywebdesign.com/google-tools-for-market-research/</link>
		<comments>http://searchfriendlywebdesign.com/google-tools-for-market-research/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 19:57:03 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=249</guid>
		<description><![CDATA[
This morning I came across this article at  SitePro News  entitled &#8220;5 Google Tools For Researching Your Market&#8220;.
The 5 Google Tools they listed were..
Tool 1 &#8211; Related Searches And Wonder Wheel
Tool 2 &#8211; Adwords Keyword Tool
Tool 3 &#8211; Google Trends
Tool 4 &#8211; Google Alerts
Tool 5 &#8211; Google Websearch
Visit their article on their blog for full [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fgoogle-tools-for-market-research%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fgoogle-tools-for-market-research%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This morning I came across this article at  SitePro News  entitled &#8220;<strong>5 Google Tools For Researching Your Market</strong>&#8220;.</p>
<p><span id="more-249"></span></p>
<p><strong>The 5 Google Tools they listed were..</strong></p>
<ul>
<li>Tool 1 &#8211; Related Searches And Wonder Wheel</li>
<li>Tool 2 &#8211; Adwords Keyword Tool</li>
<li>Tool 3 &#8211; Google Trends</li>
<li>Tool 4 &#8211; Google Alerts</li>
<li>Tool 5 &#8211; Google Websearch</li>
</ul>
<p>Visit their article on their blog for <a href="http://www.sitepronews.com/2009/06/25/5-google-tools-for-researching-your-market/" target="_blank">full details and explanations</a> of why/how these 5 Goolge Tools can be used effectively for Market Research.</p>
<p>I personally was surprised to not see Google Analytics and Google Webmaster Tools in this list. I&#8217;d like to know why the author of this article didn&#8217;t include these tools but with the information I have now I would have included Analytics and Webmaster tools over Google Alerts and Websearch.</p>
<p>Google Webmaster Tools and Google Analytics can offer some very insightful information about how your website is performing in the market you are competing in.  For well rounded market research you need data about the market plus your performance in that market so you can know where SEO efforts are needed most within your site.</p>
<p>I think the article should be entitled &#8220;7 Google Tools for Market Research&#8221; and just  include Google Anaytics and Google Webmaster Tools.</p>
<p>Overall the article is a good one and we&#8217;re glad to share it, hope you can take something away from it.</p>
<p>Are there any other Google Tools you use for market research? If so we&#8217;d love to hear about them and we&#8217;d like to hear your opinion about the use of these tools for market research.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/google-tools-for-market-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Friendly Web Design Tip: Clean &amp; Simple Code</title>
		<link>http://searchfriendlywebdesign.com/search-friendly-web-design-tip-clean-simple-code/</link>
		<comments>http://searchfriendlywebdesign.com/search-friendly-web-design-tip-clean-simple-code/#comments</comments>
		<pubDate>Fri, 15 May 2009 06:34:00 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=196</guid>
		<description><![CDATA[
This article is part of a series that I&#8217;m working to serve as a beginners guide to SEO and search engine friendly website design.
Keeping your website code clean and simple will create a good foundation for a successful search engine friendly website.  I&#8217;ve worked on too many sites that are just table nightmares with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fsearch-friendly-web-design-tip-clean-simple-code%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fsearch-friendly-web-design-tip-clean-simple-code%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This article is part of a series that I&#8217;m working to serve as a beginners guide to SEO and search engine friendly website design.</p>
<p>Keeping your website code clean and simple will create a good foundation for a successful search engine friendly website.  I&#8217;ve worked on too many sites that are just table nightmares with massive amounts of images and tons of missing end tags. All these items mentioned can really degrade how well spiders crawl your pages.<span id="more-196"></span><br />
<img class="alignright size-full wp-image-199" title="css-code1" src="http://searchfriendlywebdesign.com/wp-content/uploads/2009/05/css-code1.gif" alt="css-code1" width="375" height="292" align="right" /></p>
<h2>Clean Code</h2>
<p>When it comes it to writing code for any website&#8230; it should be considered common sense to have clean code. What does clean code mean.. there are a  few things,  like making sure that&#8230;</p>
<ul>
<li> All tags are properly formatted</li>
<li>All tags have the necessary closing tag</li>
<li>Code should validate</li>
</ul>
<h2>Simple Code</h2>
<p>Being that clean code should be common sense&#8230; I think that for good search engine friendly websites, the code should also  be very simple and free of overlapping styles as well as being as short and succinct as possible. So how does one achieve this css zen? By utilizing and controlling the basic formatting tags of body, paragraph, h1,h2,h3 and a to do the heavy lifting. For this very reason is why Wordpress is so search engine friendly&#8230;  because most good themes have tableless site structure comprised of div id &amp; class tags and use the p,h1, h2 tags to style 90% of the content keeping it very clean &amp; simple.</p>
<h2>Well Commented Code</h2>
<p>Now having well commented code isn&#8217;t neccesarily a search friendly web design tip&#8230; but more of a courtesy as you may not always be the one working on a given site. So I find it extremely helpful in maintaining the integrity of the code through future web masters when it is well commented. Plus I think well commented code makes it easier to work with when having to make a quick tweak in the dashboard editor inside Wordpress. I probably over comment my html, php and css files but in the end I know that if someone other than me is working on the code that they will very easily be able to find there way around.</p>
<p>Do you have anything to add on the coding aspect relative to search engine friendly website design? If so share your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/search-friendly-web-design-tip-clean-simple-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Happened to All My Backlinks?</title>
		<link>http://searchfriendlywebdesign.com/what-happened-to-all-my-backlinks/</link>
		<comments>http://searchfriendlywebdesign.com/what-happened-to-all-my-backlinks/#comments</comments>
		<pubDate>Wed, 13 May 2009 20:30:41 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=187</guid>
		<description><![CDATA[
This morning I decided to go check the backlinks for a clients&#8217; site and to my surprise their backlinks had dwindled from over 600 to 78 and most importantly their Yahoo Directory &#38; DMOZ listings were gone also&#8230; I checked in Google Webmaster Tools and via the Google Toolbar for Firefox.
So what happened to all [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fwhat-happened-to-all-my-backlinks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fwhat-happened-to-all-my-backlinks%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This morning I decided to go check the backlinks for a clients&#8217; site and to my surprise their backlinks had dwindled from over 600 to 78 and most importantly their Yahoo Directory &amp; DMOZ listings were gone also&#8230; I checked in Google Webmaster Tools and via the <a href="http://www.google.com/tools/firefox/toolbar/FT5/intl/en/index.html" target="_blank">Google Toolbar for Firefox</a>.</p>
<p>So what happened to all the backlinks?  After doing a little more investigating I found a thread on the <a href="http://forums.digitalpoint.com/showthread.php?p=11409789" target="_blank">Digital Point Forum</a> stating that the new version of Google Webmaster Tools would have all my backwords links. So I went to my GMT account.. clicked the  &#8220;<strong>Check out our new look</strong>&#8221; made my way over to links are and there they were. All of them including the Yahoo! and DMOZ backlinks as well.</p>
<p>So if you using the link:www.domain.com command or the old version of webmaster tools you are most likely seeing the same thing I saw. So go check out the new version of Google Webmaster Tools and you&#8217;ll likely find your missing backlinks over there.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/what-happened-to-all-my-backlinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Factors Determining The PageRank of a Twitter page?</title>
		<link>http://searchfriendlywebdesign.com/factors-determining-the-pagerank-of-a-twitter-page/</link>
		<comments>http://searchfriendlywebdesign.com/factors-determining-the-pagerank-of-a-twitter-page/#comments</comments>
		<pubDate>Sat, 09 May 2009 04:34:30 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Twitter]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/?p=176</guid>
		<description><![CDATA[
Found this on Twitter and wanted to share the video here&#8230;. What are the factors that go into determining the PageRank of a Twitter page? (@mattcutts on video)
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Ffactors-determining-the-pagerank-of-a-twitter-page%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Ffactors-determining-the-pagerank-of-a-twitter-page%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Found this on Twitter and wanted to share the video here&#8230;. What are the factors that go into determining the PageRank of a Twitter page? (@mattcutts on video)</p>
<p style="text-align: center;"><p><a href="http://searchfriendlywebdesign.com/factors-determining-the-pagerank-of-a-twitter-page/"><em>Click here to view the embedded video.</em></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/factors-determining-the-pagerank-of-a-twitter-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Networking &amp; Social Media  Optimization</title>
		<link>http://searchfriendlywebdesign.com/social-networking-social-media-optimization/</link>
		<comments>http://searchfriendlywebdesign.com/social-networking-social-media-optimization/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 15:49:52 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/social-networking-social-media-optimization/</guid>
		<description><![CDATA[
I just finished a successful week at  the Search Engine Strategies Conference  in San Jose. While traveling home to Southern California on the Amtrak train.. I  had some to reflect on what on what I took away from the conference. The hot  topic was social media and social networking.
Social Media Break [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fsocial-networking-social-media-optimization%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fsocial-networking-social-media-optimization%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I just finished a successful week at  the Search Engine Strategies Conference  in San Jose. While traveling home to Southern California on the Amtrak train.. I  had some to reflect on what on what I took away from the conference. The hot  topic was social media and social networking.</p>
<p><span id="more-68"></span></p>
<h2>Social Media Break Down</h2>
<p>Social media is a user centric platform that connects people around the globe for the purposes of sharing and discussing information.</p>
<p>Social media can be broken down  into several different categories.. each with it&#8217;s own unique purposes  applications.</p>
<ul>
<li>Social News: Blogs, Podcasts, Livecasts</li>
<li>Social Sharing: You  Tube Videos and Flickr Photos</li>
<li>Social Networks (personal &amp; professional): Face Book, Linked  In</li>
<li>Social Bookmarks: Digg, Deliciou</li>
<li>Social Micro Blogging: Twitter</li>
</ul>
<h2>Social Media &amp; Search Engine Marketing</h2>
<p><strong>Define your audience.</strong><br />
Defining your  audience is the most important step in any marketing campaign.. don&#8217;t just jump in headfirst and start  publishing before figuring out who your readers are, because the audience will  dictate what you publish and how you do it. Your audience can be broken down in  the following ways.</p>
<ul>
<li>Creators</li>
<li>Commenters</li>
<li>Critics</li>
<li>Spectators</li>
<li>Inactives</li>
</ul>
<p><span style="font-weight: bold;">Social Media / Networking Tips</span></p>
<ul>
<li>When publishing content to a social network only post to relevant communities</li>
<li>The more you engage, the more people will engage with your content.</li>
<li>Keep engagement authentic</li>
<li>Create high quality content to make it link worthy</li>
<li>Social media needs to integrate with your online marketing</li>
</ul>
<p><strong>Social Media Optimization<br />
</strong></p>
<ul>
<li>Pick a username that has a connection with your business or product</li>
<li>Tag and name videos &amp; images with keywords</li>
<li>Link your social profiles from your main website</li>
<li>Set up your profiles and optimize them with rich keyword content</li>
</ul>
<p><strong><br />
Getting Started<br />
</strong></p>
<ul>
<li>Sign up for the various social accounts to claim your name space</li>
<li>Start by publishing to one platform and beta test</li>
</ul>
<p><strong>Social Networking &amp; Link Building</strong><br />
Social networking is  about engaging a community. To engage a community you need to have good content  that is inviting and useful. Social networking is a great way to  garner releavant inbound links to your website, blog etc.. but don&#8217;t go in with  the thinking that social networking is going to replace your link building  stratgy.. links are a by-product of social media. Social communities will notice  the transparency of your linking and oust you for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/social-networking-social-media-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preparing SES San Jose 2008</title>
		<link>http://searchfriendlywebdesign.com/preparing-ses-san-jose-2008/</link>
		<comments>http://searchfriendlywebdesign.com/preparing-ses-san-jose-2008/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 18:23:51 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SES San Jose]]></category>
		<category><![CDATA[Social Networking]]></category>
		<guid isPermaLink="false">http://searchfriendlywebdesign.com/preparing-ses-san-jose-2008/</guid>
		<description><![CDATA[
It&#8217;s been about 6 years since I&#8217;ve been to a Search Engine Strategies Conference. I&#8217;m really excited to have the opportunity to go this year.
There are actually several colleagues of mine that are attending also. Over the last few weeks we&#8217;ve been brushing up on what we suspect will be the hot topics&#8230; like Blogging [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fpreparing-ses-san-jose-2008%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsearchfriendlywebdesign.com%2Fpreparing-ses-san-jose-2008%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>It&#8217;s been about 6 years since I&#8217;ve been to a Search Engine Strategies Conference. I&#8217;m really excited to have the opportunity to go this year.</p>
<p>There are actually several colleagues of mine that are attending also. Over the last few weeks we&#8217;ve been brushing up on what we suspect will be the hot topics&#8230; like Blogging for search, Social Networking and SEO and more.</p>
<p>My friend Jamie also shared this article with us on the topic&#8230;<a href="http://blog.searchenginewatch.com/blog/080708-063100" target="_blank"> http://blog.searchenginewatch.<wbr/>com/blog/080708-063100</a></p>
]]></content:encoded>
			<wfw:commentRss>http://searchfriendlywebdesign.com/preparing-ses-san-jose-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
