<?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 Talk &#187; SEO</title>
	<atom:link href="http://www.web-design-talk.co.uk/tag/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web-design-talk.co.uk</link>
	<description>Web Design &#38; Development Blog</description>
	<lastBuildDate>Wed, 28 Jul 2010 21:50:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Fixing Common W3C Validation Errors and SEO</title>
		<link>http://www.web-design-talk.co.uk/79/fixing-common-w3c-validation-errors-for-seo/</link>
		<comments>http://www.web-design-talk.co.uk/79/fixing-common-w3c-validation-errors-for-seo/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 18:21:00 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[xHTML Validation]]></category>
		<category><![CDATA[semantic code]]></category>
		<category><![CDATA[w3c validation]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=79</guid>
		<description><![CDATA[Yet another thing to check when doing SEO is that your site validates via the w3c validation checker. A site that is xHTML valid will recieve more frequent search engine crawls and more importantly, longer crawl times. I won&#8217;t bore you with further details about why validation is a good thing (it&#8217;s a huge subject), [...]]]></description>
			<content:encoded><![CDATA[<p>Yet another thing to check when doing SEO is that your site validates via the <a title="w3c validator" href="http://validator.w3.org/" target="_blank">w3c validation checker</a>. A site that is xHTML valid will recieve more frequent search engine crawls and more importantly, longer crawl times. I won&#8217;t bore you with further details about why validation is a good thing (it&#8217;s a huge subject), but if you must there is a great article about the <a href="http://validator.w3.org/docs/why.html">subject right here</a>. Creating a site to an xHTML valid standard encourages better coding practice and more <a href="http://www.seoblogger.co.uk/serps/the-benefits-of-using-semantic-code.html">semantic coding</a> &#8211; making your site easier to crawl. You are also giving your site a betttr chance of displaying the same across multiple and future browsers.</p>
<p>Another less known theory is that spiders get full when crawling a page, semantic coding practice will allow for cleaner and more lightweight code. For instance, when crawling a badly coded page with lots of line styles and JavaScript (E.g. content not useful to a spider) the spider may become full too quickly and leave &#8211; missing you important content contained further on within the page.</p>
<p>Validating your site to at least xHTML Transaitional 1.0 (the test strict version, compared to xHTMl 1.0 Strict) is highly encouraged and is an area often ignored by developers. Below, I&#8217;ll quickly outline some of the common validation errors and how to easily fix them:</p>
<p><strong>cannot generate system identifier for general entity X </strong>- 99% of the time this relates to errors with entity references such as ampersands in URLs. E.g. having an url like product.php?id=2&amp;mode=view would result in this error as the &#8216;&amp;&#8217; wasn;t used within the url.</p>
<p><strong>required attribute “alt” not specified</strong> –  simply find the line number and add an alt tag for the image. The presence of an alt tag is required for both transitional and strict doc types.</p>
<p><strong>XML Parsing Error: Opening and ending tag mismatch</strong> &#8211; Depending on how organised you are when coding this fix can take a matter of seconds or a lot longer. It relates to unclosed block level tags, such as a table or div. One plus point is that fixing such an error often results in several validation errors being fixed at once.</p>
<p><span id="more-79"></span></p>
<p><strong>required attribute “TYPE” not specified</strong> &#8211; This relates to no type attribute being specified for things like script and style tags. Solution &#8211; use the type tag like this: <span lang="EN-GB">&lt;script type=”text/javascript” language=”javascript” src=”scripts.js”&gt;</span></p>
<p><strong>There is no attribute “HEIGHT” </strong>- xHTML does not allow for the presence of the height attributer. To resolve, add an inline style or better, specify the height within the css rule for that element.</p>
<p><strong>NET-enabling start-tag requires SHORTTAG YES </strong>or <strong>document type does not allow element “META” here &#8211; </strong>caused by incorrect use of short tags for the page&#8217;s doctype. For example if you have specified an HTML doctype then you use use &lt;br&gt; instead of &lt;br /&gt;.</p>
<p><strong>ID &#8216;someDivname&#8217; already defined &#8211; </strong>caused when you have used two dividers on the same page, with the same id. Solution, uses div class instead of div id if you need multiple dividers on one page.</p>
<p><strong>Missing a required sub element of HEAD </strong>- almost definately caused by missing xHTML required tags from the head section. E.g. have you included a title tag (required in <em>all </em>HTML documents.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-design-talk.co.uk/79/fixing-common-w3c-validation-errors-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 Redirects for SEO Using htaccess</title>
		<link>http://www.web-design-talk.co.uk/20/301-redirects-for-seo-using-htaccess/</link>
		<comments>http://www.web-design-talk.co.uk/20/301-redirects-for-seo-using-htaccess/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 21:08:07 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Jquery Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[useability]]></category>

		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=20</guid>
		<description><![CDATA[Google treats www.website.com and website.com as two totally different websites. This is very bad for your (or even a client's) website as it may lead to duplicate content and different pageranks to those sites.  This is how Google "canonicalizes" the url and is very bad from an SEO standpoint.]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 130px"><img title="404 vs 301" src="http://www.web-design-talk.co.uk/images/404-vs-301-redirect.jpg" alt="301 Redirects Prevent 404 Errors" width="120" height="120" /><p class="wp-caption-text">301 Redirects Prevent 404 Errors</p></div>
<p>Google treats www.website.com and website.com as two totally different websites. This is very bad for your (or even a client&#8217;s) website as it may lead to duplicate content and different pageranks to those sites.  This is how Google &#8220;canonicalizes&#8221; the url and is very bad from an SEO standpoint.</p>
<p>In essence, a web server could return totally different results for each of those pages. I have also encountered the situation where clients have set their preferred domain in Google webmaster tools, have given out the opposite version for SEM and wonder why they don&#8217;t see results <img src='http://www.web-design-talk.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> You can easily check the above by using the &#8220;site:&#8221; operator in Google search. E.g. site:www.website.com and site:website.com</p>
<p>You can use &#8220;mod rewrite&#8221; rules as a powerful method for redirecting many URLs from one location to another.  This is a simple server level technique for handling redirects. The way people handle this canonicalization issue is purely a personal choice, although the below method can be altered for directing to the none www version of the url.</p>
<p>The .htaccess file is simply an ASCII file created with any normal text editor. You need to save the file as &#8216;.htaccess&#8217; (no filename, .htaccess is the extension!). Open you newly created .htaccess file in your favoured text editor and add the following lines of code, replacing domain.com with your domain:</p>
<pre class="brush: xml;">
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]</pre>
<p>Upload the .htaccess file to the root folder of your website and you&#8217;re done. All your traffic will be permanently redirected from a non-www version of your website to a www version of your website. To do the opposite (direct all traffic to the non www version use the below code in the .htaccess file):</p>
<pre class="brush: xml;">RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.domain.com
RewriteRule (.*) http://domain.com/$1 [R=301,L]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.web-design-talk.co.uk/20/301-redirects-for-seo-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Resources</title>
		<link>http://www.web-design-talk.co.uk/resources/</link>
		<comments>http://www.web-design-talk.co.uk/resources/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 15:55:45 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Jquery Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[useability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?page_id=5</guid>
		<description><![CDATA[Content Soon&#8230;.]]></description>
			<content:encoded><![CDATA[<p>Content Soon&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-design-talk.co.uk/resources/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Who?</title>
		<link>http://www.web-design-talk.co.uk/about/</link>
		<comments>http://www.web-design-talk.co.uk/about/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 21:02:01 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Jquery Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[useability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?page_id=2</guid>
		<description><![CDATA[http://www.web-design-talk.co.uk I am a full-time developer for an internet company located in Staffordshire (Midlands) of the United Kingdom. I have been designing and coding websites for over 2 years using PHP, ASP, JQuery, XHTML, CSS and JavaScript. I have been lucky to work on a wide variety of projects from small intranet sites, personal websites [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.web-design-talk.co.uk/">http://www.web-design-talk.co.uk</a></p>
<p>I am a full-time developer for an internet company located in Staffordshire (Midlands) of the United Kingdom. I have been designing and coding websites for over 2 years using PHP, ASP, <a title="JQuery.com" href="http://www.jquery.com">JQuery</a>, XHTML, CSS and JavaScript. I have been lucky to work on a wide variety of projects from small intranet sites, personal websites and full e-commerce storefronts. I am currently available on a limited basis for interesting freelance work. I also offer the following services (although you can contact me via email to discuss web services not mentioned here):</p>
<ul>
<li>SEO / Website Marketing / Offsite SEO</li>
<li>Bespoke Website Design/Development</li>
<li>Website Updates</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.web-design-talk.co.uk/about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
