<?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>Web Design - SEO - Technology ReviewsPosts in category SEO</title>
	<atom:link href="http://www.bliznet.com/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bliznet.com</link>
	<description>Internet marketing and web design experience.</description>
	<lastBuildDate>Sat, 07 Jan 2012 21:44:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>HTML 5, Microdata, and You</title>
		<link>http://www.bliznet.com/html-5-microdata-and-you/</link>
		<comments>http://www.bliznet.com/html-5-microdata-and-you/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 20:35:55 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Micro Data]]></category>
		<category><![CDATA[Microdata]]></category>
		<category><![CDATA[Rich Snippets]]></category>
		<category><![CDATA[schema]]></category>
		<category><![CDATA[Semantics]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=935</guid>
		<description><![CDATA[Howdy, everybody. I have finally returned to convey some more information regarding the technical side of web design. Today&#8217;s topic is HTML5 and microdata. I have recently begun using HTML 5 instead of XHMTL 1.0. The spec for HTML 5 is still a long way off from being a W3 &#8220;recommendation,&#8221; but I decided to [...]]]></description>
			<content:encoded><![CDATA[<p>Howdy, everybody. I have finally returned to convey some more information regarding the technical side of web design. Today&#8217;s topic is HTML5 and microdata.</p>
<p>I have recently begun using HTML 5 instead of XHMTL 1.0. The spec for HTML 5 is still a long way off from being a W3 &#8220;recommendation,&#8221; but I decided to switch to it because of &#8220;microdata&#8221;. Microdata, or Rich Snippets as Google calls them, are a way to mark up the information on your web site to be more machine readable, such as products or addresses. For example, you can use it to tell search engines that a portion of your page pertains to a specific product, pointing out exactly what makes up the name of the product, the price, its image, and so on. The following code example is pretty typical for an individual product&#8217;s info (obviously simplified for this example):</p>
<p><code></p>
<pre>
&lt;div class="product"&gt;
	&lt;div class="name"&gt;The Web Site Maker&lt;/div&gt;
	&lt;div class="price"&gt;$99.99&lt;/div&gt;
	&lt;div class="description"&gt;This is the incredible Web Site Maker. No longer
		do you have to get your hands dirty. This software contains a single
		button. Push to receive web site.&lt;/div&gt;
	&lt;img src="web-site-maker.png" alt="The Web Site Maker" /&gt;
&lt;/div&gt;
</pre>
<p></code></p>
<p>However, a search engine doesn&#8217;t necessarily know what all that means. Google&#8217;s pretty scary and can probably decipher all that, but, with microdata, we can help by marking exactly what each bit of info means. As follows:</p>
<p><code></p>
<pre>
&lt;div class="product" <strong>itemscope="itemscope" itemtype="http://schema.org/Product"</strong>&gt;
	&lt;div class="name" <strong>itemprop="name"</strong>&gt;The Web Site Maker&lt;/div&gt;
	&lt;div class="price" <strong>itemprop="offers"</strong> <strong>itemscope="itemscope"</strong>
		<strong>itemtype="http://schema.org/Offer"</strong>&gt;<strong>&lt;span itemprop="price"&gt;</strong>
		$99.99<strong>&lt;/span&gt;</strong>&lt;/div&gt;
	&lt;div class="description" <strong>itemprop="description"</strong>&gt;This is the incredible Web Site
		Maker. No longer do you have to get your hands dirty. This software
		contains a single button. Push to receive web site.&lt;/div&gt;
	&lt;img <strong>itemprop="image"</strong> src="web-site-maker.png" alt="The Web Site Maker" /&gt;
&lt;/div&gt;
</pre>
<p></code></p>
<p>What is this <code>itemscope</code> and <code>itemtype</code> stuff, you may be wondering. These are attributes new to HTML 5, and thus the reason for switching to it. These attributes are legal on nearly any element and are used to mark up our data. The <code>itemscope</code> attribute is used to mark an element as the container for a particular item&mdash;in this case, a product. In the example, it means everything inside the element with the <code>itemscope</code> attribute is information about this particular product. It&#8217;s within the &#8220;scope&#8221; of this product. As an aside, you may notice that <code>itemscope</code> &#8220;equals&#8221; <code>itemscope</code> in the example. This is only because I am using the XHTML flavor of HTML 5. If you were using the HTML variant, you could just use <code>itemscope</code> on its own without the <code>="itemscope"</code> portion.</p>
<p>After <code>itemscope</code> comes <code>itemtype="http://schema.org/Product"</code>. As the name implies, it specifies the type of item for the machine reader to expect. &#8220;Product&#8221; is one of a plethora of types you can use, a list of which can be found at <a href="http://schema.org">Schema.org</a>.</p>
<p>Moving on, <code>itemprop="name"</code> obviously specifies the name of the product. &#8220;Name&#8221; is a property of the &#8220;Product&#8221; type. The Schema.org web site shows in detail the properties of each type, usually with examples, under their <a href="http://schema.org/docs/schemas.html">schemas section</a>. Some properties, however, are more than a simple text value. Some are actually an <code>itemtype</code> of their own, such as the price of the product. It is not merely an <code>itemprop="price"</code> with a number inside, but an &#8220;Offer&#8221; type. So it is necessary to again add the <code>itemscope</code> and <code>itemtype</code> attributes. I also had to add an extra element&mdash;the <code>span</code>&mdash;inside the price <code>div</code> so I could apply the &#8220;price&#8221; property, a property of &#8220;Offer&#8221;.</p>
<p>The rest of the example is just made up of some additional <code>itemprop</code> attributes. After you&#8217;ve marked up your information, you can use <a href="http://www.google.com/webmasters/tools/richsnippets">Google&#8217;s Rich Snippets Testing Tool</a> to make sure it&#8217;s marked up correctly.</p>
<p>If you&#8217;re already using some form of XHTML, it should be a pretty simple matter of changing the doctype and replacing your <code>&lt;meta http-equiv="content-type" content="mime-type; charset=utf-8" /&gt;</code> (or whatever you may be using) with a simple <code>&lt;meta charset="UTF-8" /&gt;</code> to convert to valid HTML 5. It&#8217;s not necessary to use the new elements such as <code>header</code> or <code>section</code>. Your old <code>div</code> elements will work fine. It&#8217;s probably not even desirable at this point to utilize the new elements thanks to the inability of Internet Explorer 8 and lower to display them without a <a href="http://remysharp.com/2009/01/07/html5-enabling-script/">hack</a>.</p>
<p>Welcome to the future. I hope you can start using microdata (AKA Rich Snippets) to make the web a more semantic place. Don&#8217;t forget to check out <a href="http://schema.org/">Schema.org</a> for all the supported types and their properties. Have fun, web wizards!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/html-5-microdata-and-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Paid Blog Networks Suck &#8211; Link Building 2010 Revisited</title>
		<link>http://www.bliznet.com/paid-blog-networks-suck/</link>
		<comments>http://www.bliznet.com/paid-blog-networks-suck/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 19:15:14 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=745</guid>
		<description><![CDATA[Why subscription based blog networks are not going to improve your search position and what you CAN DO to improve search results.]]></description>
			<content:encoded><![CDATA[<h3>Link Exchanges</h3>
<p>A lot has changed when it comes to gaining links to your website. More importantly a lot has changed on what is considered a good link or a bad link. With the economy in the tank, we are getting more and more calls for help with search position and increased traffic. Some of the calls are from potential clients that have never paid for any type of link building or site optimization, but a good percentage is from small business owners that have either been a part of Link Exchange programs or have purchased links in the past and now they are finding out  it is not working for their website any more. If you are not familiar with the Google or Bing guidelines for links then you should read <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=66356">Google&#8217;s position on link exchanges</a> and <a href="http://www.bing.com/toolbox/blogs/webmaster/archive/2009/06/19/links-the-good-the-bad-and-the-ugly-part-2-sem-101.aspx">Links: the good, the bad, and the ugly &#8211; Part 2</a> from Bing.</p>
<h3>Paid Blog Networks</h3>
<p>So what do you do if link exchange software doesn&#8217;t work any more? How about all the fuss about these blog networks? That&#8217;s a question we have received a few times. First let me tell you about <strong>blog link networks</strong> where you pay a monthly fee and publish as many posts as you want, with links to your website. Your posts are distributed throughout a &#8220;network&#8221; of blogs. The claim is link diversity and unlimited potential. Don&#8217;t waste your time! This type of network is popular because they pay out good commissions, that&#8217;s it! These networks are easily detected which means they are easily discounted by Bing and Google and could be considered a bad neighborhood. You will waste a lot of time writing or you will pay additional fees to have the writing done for you, and you get nothing or near nothing in return. That time and money would have been better spent putting an article on a popular article network or sending out a press release. While neither of those methods are high value they generally have some value, unlike the so called Nirvana of subscription blog networks. With generic category based blog networks with no specific theme and some of the worst content ever written, you will get zero benefit. Once your post is pushed off of the main page or the main category page, which usually happens in a day or two, any value is lost. At that point your time, effort and money live on a page buried in a site that nobody, including Bing and Google, gives a rat&#8217;s ass about.</p>
<p>Example of a Blog Network where you pay per month to post as many times as you want. Just look at the quality. <img src='http://www.bliznet.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a rel="nofollow" href="http://www.bliznet.com/examples/1.htm">Example 1</a> &#8211; <a rel="nofollow" href="http://www.bliznet.com/examples/2.htm">Example 2</a></p>
<p>If you think this type of site is not easily detectable, let me show you how I found them: <a href="http://www.google.com/search?q=&quot;Posted+in+Health+and+Fitness&quot;+&quot;Posted+in+Home+and+Family&quot;">Google This</a> and then look for nonsensical domain names as the title. See the similarity? Most of these are from one of the most popular subscription blog networks out there. Notice every post has a single keyword link buried in the post? It gets worse, look at almost any post that is over 90 days old and copy a unique sentence, then search for the <strong>quoted</strong> sentence on Google, and 90% of the time the article can&#8217;t be found. The only people making money here is the owner of the blog system and their affiliates.</p>
<p>Let me say that there might be a paid blog network that actually works, but it would need to follow a few rules. I just pointed out one of the most popular networks that in my opinion is a waste of money and just ripping people off. If someone really wants to create a blog network that works, it would need to follow at least the following 4 rules:</p>
<ol>
<li>At least 75% of the posts need to be commercial quality information without any paid links embedded in the article.</li>
<li>Every subscriber&#8217;s post needs to be reviewed by an editor for &#8220;real value&#8221;.</li>
<li>Each blog needs to have a theme and specialize in one particular subject.</li>
<li>Each blog in the network needs to be optimized and promoted as a &#8220;real website&#8221; with good content.</li>
</ol>
<p>That said, you are most likely still violating Google&#8217;s guidelines if you pay to post your link on those sites. I&#8217;m not judging, just pointing out the risk involved.</p>
<h3>How To Build Links</h3>
<p>So how do you get quality links to your site? You need to create information and multimedia that people need and are willing to link to. Then you need to contact relevant websites and convince them that they should link to your content. If you are a product reseller, you should get your vendors to link to you as an authorized dealer. If you are a member or sponsor of any organizations, you need to get them to link to you as a such. You could do some guest blogging, but be sure the value of the link you get is greater than the value you would get from posting the article on your own website. You can also use article marketing, press releases, and directory submission but it&#8217;s just for diversity and extra exposure, alone they are not the answer.</p>
<p>Let me know if you agree, disagree or what I missed. I look forward to your comments. | Read the original <a href="../link-building-2010">Link Building 2010</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/paid-blog-networks-suck/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SEO for Bing</title>
		<link>http://www.bliznet.com/bing-seo/</link>
		<comments>http://www.bliznet.com/bing-seo/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 05:43:56 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Bing SEO]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=407</guid>
		<description><![CDATA[Bing SEO - What matters and how to optimize for Bing, the new search engine from Microsoft.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bing.com"><img class="alignleft size-full wp-image-412" title="SEO for Bing" src="http://www.bliznet.com/wp-content/uploads/2009/11/bing-seo.jpg" alt="bing SEO" width="150" height="132" /></a>Do I need to specifically perform SEO for Bing? After all, the stats show that Bing doesn&#8217;t have anywhere near the traffic that Google has, so why perform <strong>Bing SEO</strong>? I say don&#8217;t perform SEO for any search engine specifically; perform SEO for your website. All of the known factors for on-page and off-page optimization should help you with Bing, Yahoo and Google. I won&#8217;t even bet money that meta keywords are 0% at Google. Maybe they lied to us. <img src='http://www.bliznet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Bing might put more weight on one factor than Google, but SO WHAT? Optimize all factors and stop trying to micro manage a single factor for a single search engine like Bing. Quality titles and descriptions with keywords are a must for Bing and Google. It only takes seconds to add some meta keywords, and Bing suggests you should still take advantage of the meta keywords in this article: <a href="http://www.bing.com/community/blogs/webmaster/archive/2009/05/20/put-your-keywords-where-the-emphasis-is-sem-101.aspx">Put Your Keywords Where The Emphasis Is</a>. They won&#8217;t help much, but it all adds up and you never know what the next algorithm update holds. It&#8217;s a safe bet that your copy needs to be at least 250 to 300 words per page. Link text counts as copy, but your page should not be primarily link text. Usually only authority sites like Wikipedia can get away with that crap and still be top 5.</p>
<ul>
<li>Create great content that targets the audience that is most likely to convert for your product or services.</li>
<li>Make sure each page you create has a specific topic.</li>
<li>Use keywords naturally in your copy.</li>
<li>Stop worrying so much about some magic keyword density number.</li>
</ul>
<p>Links are the primary key to search optimization even when performing <strong>SEO for Bing</strong>. A few outbound links to authority sites can&#8217;t hurt, but make sure they are relevant for your page topic. Inbound links from relevant authority sites is the &#8220;right stuff&#8221;, but you can get results with the proper blend of lower value inbound links. Use social media to put the word out and you should get some natural links, assuming you wrote good content. There are still some quality directories that aren&#8217;t filtered, so those can help too. Buyer beware when it comes to paid links.</p>
<p>You have heard this same information over and over everywhere you go, and it still holds true when you perform SEO for Bing. And yes, Bing is important no matter which stat you believe.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/bing-seo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is SEO? Is It Real?</title>
		<link>http://www.bliznet.com/what-is-seo/</link>
		<comments>http://www.bliznet.com/what-is-seo/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 01:37:13 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Copy Writing]]></category>
		<category><![CDATA[Link Juice]]></category>
		<category><![CDATA[SEO flim flam]]></category>
		<category><![CDATA[SEO Medicine Doctor]]></category>
		<category><![CDATA[SEO Scam]]></category>
		<category><![CDATA[Snake Oil]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=391</guid>
		<description><![CDATA[SEO and SEM is as easy as mowing your grass and pruning your trees.]]></description>
			<content:encoded><![CDATA[<p>To the SEO bashers, I present this argument: Some people hire a lawn service because they don&#8217;t have the time to mow their lawn; they don&#8217;t like to mow their lawn; they don&#8217;t like wasting their weekends mowing; they don&#8217;t have the tools for it; or they tried it and they ruined the lawn and killed all of the plants in the yard. For whatever reason, they pay to have the lawn mowed. How silly would a person look if they posted an article stating &#8220;anyone that pays to have their lawn mowed is an idiot&#8221;? They continue about how it&#8217;s easy to do, they have been mowing their own lawn for years and it looks great. They declare &#8220;Lawn men are con artists! I will even tell you how to trim your hedges, edge your sidewalk, weedeat, and prune your trees, and I will tell you for free.<img class="alignright size-full wp-image-403" title="lawn man reading SEO book" src="http://www.bliznet.com/wp-content/uploads/2009/10/lawn-man-reading-SEO-book1.jpg" alt="lawn man reading SEO book" width="175" height="145" />&#8221;</p>
<p>Believe it or not, I started writing this because I just finished reading &#8220;<a onclick="window.open(this.href, 'OffSite').focus(); return false;" href="http://www.seowizz.net/2009/10/seo-its-all-about-the-links.html">It&#8217;s All About The Links</a>&#8221; over at SEOWizz. Ahh, the mind is a terrible thing. How did I turn Tim&#8217;s great post about links into a discussion about lawn mowing?</p>
<p>SEO work can be fun and educational during the on-page process.  Onpage search optimization is the act of optimizing copy and HTML based on a set of known and  perceived search engine guidelines. It takes a certain skill set to evaluate key words and phrases and incorporate those into HTML elements and body copy so they satisfy your target audience and the search engines. You can change your page title, description, and copy and watch your SERP position and sales pitch change. Don&#8217;t let anyone tell you it can&#8217;t be done and there aren&#8217;t known factors. Then we get to <a href="http://www.bliznet.com/link-building-2010/">link building</a>, which is a whole different animal.</p>
<p>Sadly &#8220;Links! Links! Links!&#8221; is very true. I&#8217;m not sure we should be calling link building SEO, to me it&#8217;s more marketing and should be listed as SEM. Finding the links that are providing your competitors with an edge or finding quality links that will improve your search position is a different skill set than on-page SEO. New rules from Google and &#8220;juice&#8221; protection from websites is making SEO link building even more tedious and time consuming. It is also raising the cost of hiring an SEO/SEM that gets results. Specialists who can provide quality links that will hold their value don&#8217;t come cheap. You can get your site bot-spammed to hundreds of blogs cheap, but it&#8217;s not going to help.</p>
<p>The SEO community has been labeled con artists by some, but these people are blowing smoke when they tell you all you need to do is write good content. It&#8217;s just not true. You might not be capable of writing good content anyway. You need good content and you might have to pay for it, and then you need people to link to it. The content on its own does not get you traffic, and nobody knows you have good or even great content until someone links to it. Sure, it can go viral but first somebody needs to light the fuse. Some of the anti-SEO crowd are giving advice like &#8220;just tell people about your website&#8221; (so they will link to it?). Well, guess what; you just committed the &#8220;act&#8221; of link building. They tell you to have your friends and co-workers <a href="http://www.bliznet.com/twitter-future-of-search/">tweet</a> about your site and mention it on Facebook or in email. Guess what; that too is link building. Sure, if you have the time and will to learn then you can do it yourself, but most business owners don&#8217;t sit at home blogging all day (or mowing their grass). They have a business to run and they need help promoting their website.</p>
<p>There are the basics that should be done when optimizing a website, and it will usually squeeze out some competition. Generally, the <a href="http://www.bliznet.com/basic-seo-3/">basic onpage optimization</a> with no regard for links will not get you in the top 10 if you are in a market that is the least bit competitive. Don&#8217;t get me wrong; you need to study keywords and phrases, because they have to be used somewhere, either in content, titles, or link text, but that research is generally wasted without quality inbound links.</p>
<p>Are you listed on <a href="http://botw.org/">Best of The Web</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/what-is-seo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SEO Meets Politics</title>
		<link>http://www.bliznet.com/seo-meets-politics/</link>
		<comments>http://www.bliznet.com/seo-meets-politics/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 15:07:41 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Search Engine News]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[AdWords]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Terrorist]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[SERP]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=278</guid>
		<description><![CDATA[Is search political? With Google's help has Has Corporate America suppressed the little guy once again?]]></description>
			<content:encoded><![CDATA[<p>I check my email this morning and I have a link to a political piece titled <a onclick="window.open(this.href, 'OffSite').focus(); return false;" href="http://www.lewrockwell.com/gaddy/gaddy68.1.html">Nowhere Else To Go</a> and then I hit Twitter and I find a link to a new post by Aaron Wall about how the <a onclick="window.open(this.href, 'OffSite').focus(); return false;" href="http://www.seobook.com/corporate-seo-services">SEO industry went corporate</a>. Aaron could have easily titled his post &#8220;<em>Nowhere Else to Go</em>&#8220;. The crossroads in these two articles are alarming. One difference is that you have two political parties that are the same but sell themselves as representing two different cultures and in the SEO article you realize we really only have Google. Some people pray for Bing or Yahoo or a combination to catch up with Big G but will it matter? Or will we just have two parties that play favorites to Corporate America while stepping all over the little guy and our Internet freedom? With Google we already have things like the dreaded eviction notice from AdSense:</p>
<blockquote><p><em>&#8220;While going through our records recently, we found that your AdSense account has posed a significant risk to our AdWords advertisers. Since keeping your account in our publisher network may financially damage our advertisers in the future, we&#8217;ve decided to disable your account&#8221;</em></p></blockquote>
<p>You have just been declared an <a onclick="window.open(this.href, 'OffSite').focus(); return false;" href="https://www.google.com/adsense/support/bin/answer.py?answer=57153">Internet terrorist</a>, try to figure out why. If you are a scammer then you know why but what about all the poor saps that don&#8217;t have a clue why they were banned? You can&#8217;t get any information from Google other than a canned response on their website. Basically their claim is that they can&#8217;t tell you what you did wrong or everyone would stop doing it and search wouldn&#8217;t be as safe. What? Their advice is to admit in an email that you broke the rules and promise never to do it again. First you have to undo what you did that you don&#8217;t know about? Cop a plea to a charge you disagree with when they have provided no evidence.</p>
<p>A friend of mine jokes all the time &#8220;<em>Google is the CIA</em>&#8220;. Sometimes I laugh, but only sometimes.<br />
Aaron quotes Google as saying &#8220;<em>the reason that so many people come to Google is that for the last decade, we’ve worked really hard to protect our users</em>&#8220;. Ahh, the infamous we only step all over you to protect you, there will be long lines and forms in triplicate but it&#8217;s for your own good.<br />
Someone I follow on Twitter mentioned an issue with a key phrase dropping in the SERPs after some link building and I can only wish him luck and feel his pain because we have to guess what it takes to fix the issues. Once again Google can&#8217;t tell us what we did wrong (in their eyes) because we might stop doing it. I can tell you. You know what you did? You tried to compete with Corporate America, you bastard.</p>
<p>Now we have the Government asking everyone to spy on his neighbor and rat him out for anything &#8220;<em>out of the ordinary</em>&#8221; and we have Google begging the little SEO to rat out his competition. The weaklings will be indoctrinated and sell their own freedom so they can be &#8220;friends&#8221; of Google (or the Feds).<br />
What can we do? Nothing, you have already lost, you just haven&#8217;t figured it out yet. You are still moving your chess pieces around but the big boys left the table a long time ago. They only play with each other now. Enjoy the left overs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/seo-meets-politics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO and Validation</title>
		<link>http://www.bliznet.com/seo-and-validation/</link>
		<comments>http://www.bliznet.com/seo-and-validation/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 18:01:52 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Validation]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=218</guid>
		<description><![CDATA[There is a reason to write valid html xhtml and css even for SEO.]]></description>
			<content:encoded><![CDATA[<p>I was reading <a href="http://www.seowizz.net/2009/08/the-truth-about-validation.html">The Truth About Validation</a> and I felt the need to respond. First off, Tim makes some valid points but only if the article is renamed &#8220;The Truth About Validation and SEO&#8221;. I agree, if a web developer tells you that you can&#8217;t be much of an SEO if you don&#8217;t write valid code then that developer is a clown and should be ignored. If they are just saying that you are not a valid coder then that would be true. From a coder&#8217;s point of view they could go as far as saying that you are a hack, would they be wrong? That said, there are many other reasons to write valid code.  Some of the best SEO gods, gurus, evangelists, provide detailed change requests to web designers and this is often preferred on a valid site so the SEO does not break the valid code. Maybe SEO specialists should inform the client that there is such a thing as validation and let them decide. It&#8217;s similar to an auto mechanic letting the customer decide if they want a factory replacement part or an aftermarket part, is it worth the extra money? Determining that invalid pages are ranked high for certain terms does not tell the complete story but it does tell most of the story. What if a search bot reaches a certain point on a page that is so invalid it stops parsing? At that point the rest of your content would be ignored. What if the next algo revision applies more weight to valid code or is modified so that it halts when a missing end tag is encountered (is Bing already doing this)? You would have partial page results in the index which means you have wasted copy.  More important is the fact that invalid code might not render properly on the next update to your audience&#8217;s preferred browser. At some point the invalid code will probably rear its ugly head and then you will need to pay the piper to write valid code, or at least new code, so why not let the coders get paid for what they do?</p>
<p>We could argue that having a shade tree mechanic use bailing wire to fix a dragging muffler will allow you to use the car again but for how long? Yes it will cost more money to order the new muffler hanger and have a muffler shop install it properly but when you hit that big speed bump at the grocery store which one do you think will hold up? At that point did it really cost more money to have it done right?</p>
<p>I agree if you charge someone to do SEO work and you don&#8217;t write valid code then you aren&#8217;t ripping them off. What if you are upfront and tell them, directly, I am going to make the changes using invalid code, will they care? Should they have a choice or is OK to leave them in the dark since it is to your advantage?</p>
<p>One point Tim implied that I disagree with is that it&#8217;s more expensive to work on valid sites. It is much easier to work on a properly designed CSS and XHTML site than a hacked, table infested, monstrosity. We charge a lot more, well actually, we usually require a complete redesign before we start working on a hacked site but this is strictly related to design work, not SEO. Let me repeat here that I agree that validation has little to do with SEO if anything. I say if anything because we don&#8217;t know if any search engines pay greater weight to valid code and there can be a case made for a parser getting stuck or stopping after a bad or missing tag. Maybe not Google but can we guarantee this won&#8217;t happen with any search engine?</p>
<p>I give the thumbs up to valid code because without validation then you have to set some other standard for when the code is acceptable. It would be much more difficult to create a list of what code is bad or invalid but acceptable. Why not follow the standards that are used to design every web browser?</p>
<p>I also read &#8220;<a href="http://www.seobook.com/source-code-validation-common-sense">source code validation common sense</a>&#8221; over at SEOBook by Aaron Wall. Wow! He really goes off and I don&#8217;t blame him but I have never personally heard a good web designer that is proud of his ability and trade claim that validation is an integral part of SEO work. I say ignore those monkeys but let the design experts maintain their status of elite, or cream of the crop, by writing valid code and proving they are at the top of their game just as you are at the top of yours. Here are some of the <a href="http://validator.w3.org/docs/why.html">top reasons to validate</a>.</p>
<p>added: I would be considered a hack when it comes to XHTML and CSS. If I perform onpage SEO I check to see if the client site is valid. If it is then I make sure it&#8217;s valid when I finish. Often I find errors that I have caused and then I have to employ someone from our design team to fix it. I have been known to render this site invalid just by blogging <img src='http://www.bliznet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/seo-and-validation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Does Size Matter for SEO Consultants?</title>
		<link>http://www.bliznet.com/does-size-matter/</link>
		<comments>http://www.bliznet.com/does-size-matter/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 07:45:53 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO consultant]]></category>
		<category><![CDATA[SEO Firm]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=98</guid>
		<description><![CDATA[Is it the size of an SEO agency or Internet marketing firm that matters?]]></description>
			<content:encoded><![CDATA[<p>Bigger is better, right? Not necessarily when it comes to internet marketing companies and SEO consultants.  Don&#8217;t get me wrong, I would love to have a team of 20 employees to put on a project and a million dollar budget just for office supplies. But would the results produced for my client  be that much better? I doubt it. Two of our clients have had remarkably similar experiences with large SEO consultants and internet marketing firms and both have had less than stellar results. One of our customers discovered a large, well respected California firm and contracted them to perform search engine optimization, Google AdWords management, press releases, and other services with a large down payment and a healthy monthly fee. Several months elapsed with no results for the customer. There was no increase in traffic, PPC was going nowhere, and 1 press release had been issued and forgotten. The &#8220;project manager&#8221; for our client was unavailable by phone  and many times would not even respond to repeated emails. There was a response, however, when the bills stopped being paid.</p>
<p>Fast forward two months. The  client came to us  for &#8220;AdWords Managment only&#8221;  due to the state of the economy, a tight budget, and the natural reluctance to fork out more money for <a href="http://www.bliznet.com/category/seo/">SEO services</a>. In the past two weeks we have doubled his click through rate and now have a PPC campaign that is pulling its weight. As a smaller firm we are able to provide the type of constant contact and reassurance that somebody who has been burned by the big boys needs. Communication and realistic expectations will go far in any <a href="http://www.bliznet.com/category/internet-marketing/">internet marketing</a> project to help it go smoother and make the client feel like they are using their dollars effectively.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/does-size-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pagerank Sculpting and the NoFollow Tag</title>
		<link>http://www.bliznet.com/pagerank-sculpting-nofollow/</link>
		<comments>http://www.bliznet.com/pagerank-sculpting-nofollow/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 22:50:57 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Link Juice]]></category>
		<category><![CDATA[Nofollow]]></category>
		<category><![CDATA[Pagerank]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=67</guid>
		<description><![CDATA[There is a renewed buzz on some SEO blogs about the nofollow tag and pagerank sculpting that I would like to address. First let me say that I am often amazed at the different ways people find to take advantage or to expand on the use of something new. rel=&#8221;nofollow&#8221; is about 4 years old now [...]]]></description>
			<content:encoded><![CDATA[<p>There is a renewed buzz on some SEO blogs about the nofollow tag and pagerank sculpting that I would like to address. First let me say that I am often amazed at the different ways people find to take advantage or to expand on the use of something new. rel=&#8221;nofollow&#8221; is about 4 years old now (<a title="Search Adopts NoFollow" href="http://googleblog.blogspot.com/2005/01/preventing-comment-spam.html">Search Engines Join Google and Adopt nofollow</a>) and the ways it gets used sometimes seems to be a long way from the initial design. It&#8217;s almost like people are always after an angle. It wasn&#8217;t always that way but you see it in almost every industry now. New laws are put under a microscope as soon as they are passed and someone always seems to find an angle to use it in ways it was never intended. This is how I feel about some of the recent articles I have read about using &#8220;no follow&#8221; for sculpting or to improve internal pages. What happens is a few start using something in ways it was never intended and then others join in because they feel left out or at a disadvantage because they aren&#8217;t pushing the limits. On one hand you get the big sites that horde juice while we all let the juices flow freely back to these big companies. On the other hand you get new blogs popping up daily that turn off nofollow and in an attempt to give the big boys the finger they encourage everyone to post comments and &#8220;feel the love&#8221;. Worse yet is the misguided use that results from ignorance. My recent readings and observations have helped me establish the following guidelines for nofollow.</p>
<ul>
<li>Un-moderated user added comments, posts, and guestbooks should be rel=&#8221;nofollow&#8221; by default. (original intent)</li>
<li>Moderated comments and posts that require no follow should be considered for editing or deletion.</li>
<li>Even moderated blog comments should have A nofollow on the poster&#8217;s website link (usually linked to their name). If his or her website is relevant then the comment should have an embedded link to the relevant content. (We are currently working on this at bliznet.com)</li>
<li>If  a web editor creates an internal link and feels the need to add a nofollow he should question where he ever got this idea from and then consider using his robots.txt file or consider adding valuable content to the linked page.</li>
<li>If a web editor creates an external link and feels the need to add a nofollow tag then he should question the need for the link.</li>
<li>If a link is pointing out something like a spammy site or malpractice or anything negative then nofollow is probably the right choice.</li>
<li>If a webmaster has a links page or friends page and is using nofollow tags then he should probably just dump the whole page, obviously they are not relevant links, if they are relevant then pass the pagerank they deserve.</li>
<li>If you have paid links on your site then you should use nofollow unless you have a well designed and organized site like a directory or product finder. Just be sure the site&#8217;s main purpose is to drive traffic to the links and not juice.</li>
<li>The benefit of passing pagerank should always be a by-product of quality content. Content should never be created just to pass pagerank or &#8220;link juice&#8221;.</li>
</ul>
<p>Let me know your thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/pagerank-sculpting-nofollow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

