<?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>noblewebdesign.co.uk</title>
	<atom:link href="http://noblewebdesign.co.uk/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://noblewebdesign.co.uk/blog</link>
	<description></description>
	<lastBuildDate>Wed, 12 May 2010 14:34:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to redirect a web page using 301 redirect</title>
		<link>http://noblewebdesign.co.uk/blog/?p=34</link>
		<comments>http://noblewebdesign.co.uk/blog/?p=34#comments</comments>
		<pubDate>Wed, 12 May 2010 14:12:39 +0000</pubDate>
		<dc:creator>noble web design</dc:creator>
				<category><![CDATA[Search engine optimisation]]></category>
		<category><![CDATA[Uncategorised]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://noblewebdesign.co.uk/blog/?p=34</guid>
		<description><![CDATA[If you already have a website and need to redirect domain names or website pages without affecting your current search engine rank then the best method is by using a 301 redirect.]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong>How to redirect a web page using 301 redirect</strong></p>
<p>If you already have a website and need to redirect domain names or website pages without affecting your current search engine rank then the best method is by using a 301 redirect.</p>
<p> </p>
<p><strong>What is a 301 redirect?</strong></p>
<p>The code 301 is interpreted by search engines as &#8220;Moved permanently&#8221;, you setup the code 301 inside a .HTaccess file on your server. This method will keep your current search engine rank as appose to just forwarding which will lose the search engine position and traffic.</p>
<p> </p>
<p><strong>What is a .HTaccess file?</strong></p>
<p>A .HTaccess file is simply a file named .htaccess which is then uploaded to the home root directory of your web server. The .htaccess file can contain code for lots of different features like URL rewriting, specific requests, security and password permissions. When a search engine spider visits your site it will check the .htaccess file for instructions.</p>
<p> </p>
<p><strong>How to setup a 301 redirect on your server from domain1.com to domain2.com:</strong></p>
<p>1) Open notepad and type the following:</p>
<p> </p>
<p>Options +FollowSymLinks<br />
RewriteEngine on<br />
RewriteCond %{HTTP_HOST} ^example\.com<br />
RewriteRule ^(.*)$ <a href="http://www.example.com/$1">http://www.example.com/$1</a> [R=permanent,L]</p>
<p> </p>
<p>2) Save the file as .htaccess (with no extension)</p>
<p>3) Upload the file to your server</p>
<p>4) Check you are not overwriting any previous .htaccess files or code</p>
<p> </p>
<p><strong>How to setup a 301 redirect from old page to new page:</strong></p>
<p>1) Open notepad and type the following</p>
<p> </p>
<p>redirect 301 /something/yourpage.htm <a href="http://www.you.com/new.htm">http://www.domain.com/new.htm</a></p>
<p> </p>
<p>2) Save the file as .htaccess (with no extension)</p>
<p>3) Upload the file to your server</p>
<p>4) Check you are not overwriting any previous .htaccess files or code</p>
<p> </p>
<p><strong>Note: </strong>/something/yourpage.htm is the old folder path and file name. The domain.com/new.htm is the new path and file name. Do not add <a href="http://www">http://www</a>. to first part.</p>
<p> </p>
<p>When the search engines spider your site again they will follow the rule you have created in your .htaccess file. The search engine spider doesn&#8217;t actually read the .htaccess file, but recognises the response from the server as valid.</p>
]]></content:encoded>
			<wfw:commentRss>http://noblewebdesign.co.uk/blog/?feed=rss2&amp;p=34</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Friendly SEO XHTML Page</title>
		<link>http://noblewebdesign.co.uk/blog/?p=29</link>
		<comments>http://noblewebdesign.co.uk/blog/?p=29#comments</comments>
		<pubDate>Sat, 23 Jan 2010 19:21:20 +0000</pubDate>
		<dc:creator>noble web design</dc:creator>
				<category><![CDATA[Search engine optimisation]]></category>

		<guid isPermaLink="false">http://noblewebdesign.co.uk/blog/?p=29</guid>
		<description><![CDATA[When creating an XHTML page for your website there are some basic tips you can follow to make sure it is search engine friendly and SEO ready.]]></description>
			<content:encoded><![CDATA[<p> </p>
<p><strong>Search Engine Friendly SEO XHTML Page</strong></p>
<p>When creating an XHTML page for your website there are some basic tips you can follow to make sure it is search engine friendly and SEO ready.</p>
<p> </p>
<p><strong>Declare the Document Type</strong></p>
<p>Right at the very top of the page you should declare what Document Type you are using, the two most popular are Transitional and Strict. We would recommend using the Strict 1.0 Document Type. The code would be as follows:</p>
<p> </p>
<p><span><span>&lt;!<span>DOCTYPE</span> <span>html</span> <span>PUBLIC</span> <span>&#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;</span> <span>&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;</span>&gt;</span></span></p>
<p><span><span> </span></span></p>
<p><span><span><strong>Give your page an XMLNS Attribute and set the proper Page Language Code</strong></span></span></p>
<p><span><span>The code to use here should follow on the next line down directly under where you defined the Document Page Type, this code tells the browser which language you are using:</span></span></p>
<p><span><span> </span></span></p>
<p><span><span>&lt;html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en” lang=”en”&gt;</span></span></p>
<p><span><span> </span></span></p>
<p><span><span><strong>Declare a Character Set used in the Page</strong></span></span></p>
<p><span><span>Indside the &lt;head&gt; tags your first line of code should define the Character Set used in page, the correct code to do this is:</span></span></p>
<p><span><span> </span></span></p>
<p><span><span>&lt;meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ /&gt;</span></span></p>
<p><span><span> </span></span></p>
<p><span><span><strong>Define your Page Title</strong></span></span></p>
<p><span><span>This is one of the most important parts of Search Engine Optimisation, the Page Title should be placed inside the &lt;head&gt; tags directly below where you placed the Character Set used in page.</span></span></p>
<p><span><span> </span></span></p>
<p><span><span>Your Page Title should be placed inside &lt;title&gt; &lt;/title&gt; tags and include no more than 70 characters. The Page Title should include core keywords to use when people are searching for your website. Try to avoid stop words like and, or, if, etc. We advise using 8 max main keywords in the Page Title.</span></span></p>
<p><span><span> </span></span></p>
<p><span><span><strong>Define your Page Description.</strong></span></span></p>
<p><span><span>The page description should be no more than 25 words, in these words try to include all your same keywords used in the Page Title in the same order. Again try to avoid words with no use or meaning to search phrases. The correct code to use for this is:</span></span></p>
<p><span><span> </span></span></p>
<p><span><span>&lt;meta name=”description” content=”detailed description of page” /&gt;</span></span></p>
<p><span><span> </span></span></p>
<p><span><span><strong>Define your Page Keywords</strong></span></span></p>
<p><span><span>The next line down after Page Description include your page keywords, the correct code to use is:</span></span></p>
<p><span><span> </span></span></p>
<p><span> </span> &lt;meta name=&#8221;keywords&#8221; content=&#8221;keyword1, keyword2, keyword3&#8243; /&gt;</p>
<p> </p>
<p>Include no more than 8 main keywords and avoid stop words like and, or, if etc.</p>
<p> </p>
<p><strong>Include External CSS and JavaScript Files</strong></p>
<p>At the bottom of your &lt;head&gt; section before the closing tag define your page external CSS file and and JavaScrip files. The code to do this is:</p>
<p> </p>
<p>&lt;script src=&#8221;includes/quote_validator.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
 </p>
<p>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;includes/style.css&#8221; media=&#8221;screen&#8221; /&gt;</p>
<p> </p>
<p><strong>Define your Page Body Content</strong></p>
<p>After the closing &lt;/head&gt; tag open your &lt;body&gt; tag and insert your main page content here. For search engine optimisation you can bold, italic, and list keywords and include image alt attributes to include keywords.</p>
<p> </p>
<p>Some of the most popular tags to use for Search Engine Optimisation are:</p>
<p>&lt;h1&gt;&lt;h2&gt;&lt;h3&gt;&lt;h4&gt;</p>
<p>&lt;p&gt;&lt;/p&gt;</p>
<p>&lt;strong&gt;&lt;/strong&gt;</p>
<p>&lt;em&gt;&lt;/em&gt;</p>
<p>&lt;a&gt;&lt;/a&gt;</p>
<p>&lt;img alt=&gt;</p>
<p> </p>
<p>Close the body section with &lt;/body&gt; and then remember to close the html with &lt;/html&gt; at the very bottom of the page.</p>
]]></content:encoded>
			<wfw:commentRss>http://noblewebdesign.co.uk/blog/?feed=rss2&amp;p=29</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website standards</title>
		<link>http://noblewebdesign.co.uk/blog/?p=19</link>
		<comments>http://noblewebdesign.co.uk/blog/?p=19#comments</comments>
		<pubDate>Thu, 14 Jan 2010 17:05:31 +0000</pubDate>
		<dc:creator>noble web design</dc:creator>
				<category><![CDATA[Your first website]]></category>

		<guid isPermaLink="false">http://noblewebdesign.co.uk/blog/?p=19</guid>
		<description><![CDATA[Web usability and web standards are not a luxury anymore... they are essential in this competitive internet world. Ignore them at your expense!]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong>Website standards and accessibility</strong></p>
<p>We know about professional web standards and accessibility guidelines as part of our quality assurance. We are registered members of  UKWDA who lobby for better designed web sites to the W3C guidelines.</p>
<p> </p>
<p><strong>Why bother</strong></p>
<p>You only have a few seconds to impress your visitors, so slow or broken web sites will turn them away for sure!</p>
<p> </p>
<p>We build our sites using advanced coding practices such as xHTML and CSS and implement checks for readability, usability and accessibility. WHY? Because your site will be faster to download, work in more browsers and on more PCs (Apple Macs included) and be seen by more people than a site not coded to these standards.</p>
<p> </p>
<p>A website designed to meet W3C web standards and accessibility guidelines will display correctly accross multiple web browsers ensuring the widest possible audiance can view your site.  This proper coding will also ensure search engines can read your website properly for higher rankings in the search results.</p>
<p> </p>
<p><strong>World Wide Web Consortium (W3C)</strong></p>
<p>The W3C are the guardians of web standards that ensure web designers and developers have a coherent direction &amp; blueprint for professional web design. They provide validation tools and conformance badges to show a web site has passed their web standards.</p>
]]></content:encoded>
			<wfw:commentRss>http://noblewebdesign.co.uk/blog/?feed=rss2&amp;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a Web Designer</title>
		<link>http://noblewebdesign.co.uk/blog/?p=13</link>
		<comments>http://noblewebdesign.co.uk/blog/?p=13#comments</comments>
		<pubDate>Tue, 12 Jan 2010 17:13:22 +0000</pubDate>
		<dc:creator>noble web design</dc:creator>
				<category><![CDATA[Your first website]]></category>

		<guid isPermaLink="false">http://noblewebdesign.co.uk/blog/?p=13</guid>
		<description><![CDATA[There are many people out there who claim to be web designers but in reality have no real experience of meeting web standards or designing for established clients.]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong>How to choose a web designer</strong></p>
<p>Unless creating your own hobby related site, you should use a professional web designer to create a website for your business.</p>
<p> </p>
<p>There are many people out there who claim to be web designers but in reality have no real experience of meeting web standards or designing for established clients.</p>
<p> </p>
<p><strong>Questions to ask a web designer</strong></p>
<ul>
<li>What software do they use?</li>
<li>What technology and languages do they use?</li>
<li>Can they manually write HTML code?</li>
<li>Can they apply SEO to the website?</li>
<li>Are they able to create forms and interactive content?</li>
<li>Can they work in a secure server environment?</li>
<li>Do they validate code to web standards?</li>
<li>Do they meet accessibility guidelines?</li>
</ul>
<p> </p>
<p>Any good web designer should hold these skills, even if they don’t apply to your project at hand they are still a good set of questions to ask. Should a web designer lack in these areas, they are unlikely to be qualified to work on your website. </p>
<p> </p>
<p>Try to find out what programs the web designer will use, although a website can be setup using cheap software this does not necessarily mean it will be a good website.</p>
<p> </p>
<p><strong>Web design software</strong></p>
<ul>
<li>Microsoft Front page should be a warning sign, few professional web designers will use this programme</li>
<li>Plain text editors, in theory should demonstrate that a web designer is able to code by hand, and in return has a good understanding of their medium</li>
<li>Dreamweaver and other associated programmes are very good and expensive, however just because a web designer owns this software does not necessarily make them qualified</li>
</ul>
<p> </p>
<p><strong>Other questions to ask</strong></p>
<p>Find out what steps the web designer will take to make sure your website can be found in the search engines, this is very important.</p>
<p> </p>
<p>Ask to see examples of the web designers work, if they have a portfolio take a look.</p>
<p> </p>
<p>Find out what will happen if you do not like their design, will you incur additional charges or will they keep working on the website until you are satisfied?</p>
<p> </p>
<p>Find out who will retain copyright of the website once it is complete, some web designers try to retain ownership of the website. In our opinion the client should own the website outright with no limitations or conditions at all.</p>
<p> </p>
<p>Ask about the websites cost, a website quote that sounds to good to be true usually is.</p>
]]></content:encoded>
			<wfw:commentRss>http://noblewebdesign.co.uk/blog/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting with SEO</title>
		<link>http://noblewebdesign.co.uk/blog/?p=6</link>
		<comments>http://noblewebdesign.co.uk/blog/?p=6#comments</comments>
		<pubDate>Tue, 12 Jan 2010 15:40:07 +0000</pubDate>
		<dc:creator>noble web design</dc:creator>
				<category><![CDATA[Search engine optimisation]]></category>
		<category><![CDATA[Your first website]]></category>

		<guid isPermaLink="false">http://noblewebdesign.co.uk/blog/?p=6</guid>
		<description><![CDATA[This is one of the single most important aspects of on page SEO. This needs to be totally relevant to the domain name and also be as natural as possible]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong>Domain Name </strong></p>
<p>Choose a domain name which is keyword rich and describes the product you are selling exactly.</p>
<p> </p>
<p>Always choose either .co.uk or .org.uk extension as these are most defiantly preferred for ranking in google.co.uk.</p>
<p> </p>
<p>So a good example which covers both of the aspects above, would be winterboots.org.uk.</p>
<p> </p>
<p><strong>Title Tag </strong></p>
<p>This is one of the single most important aspects of on page SEO. This needs to be totally relevant to the domain name and also be as natural as possible</p>
<p> </p>
<p>So a good example of a title tag for winterboots.org.uk would be this : winter boots | girls | boys | shoes</p>
<p> </p>
<p>Keep it short and to the point. Don&#8217;t be tempted to put too many keywords in here, as you will water it down and not have the same impact.</p>
<p> </p>
<p><strong>Meta Description </strong></p>
<p>This is what the search engine uses to show a snippet in the results page. This should be keyword rich with your domain name keyword used at least once and also be informative and easy to be read by humans</p>
<p> </p>
<p>So a good example of a meta description would be this “Winter Boots have the best range of shoes for this magical occasion. We have both boys and girls winter boots at the cheapest prices and available with free delivery”</p>
<p> </p>
<p>This is very keyword rich, with lots of possibilities of other matching keywords appearing also in the search engines.</p>
<p> </p>
<p><strong>H1 Tag </strong></p>
<p>This is very important and your chance to shine. Google likes correct formatting of the header tags and if you use them correctly, you can achieve some excellent results. Try to keep it as similar as possible to your domain name, but without making it to obvious.</p>
<p> </p>
<p>So a good example would be “Winter Boots at the cheapest prices”</p>
<p> </p>
<p><strong>H2 Tag </strong></p>
<p>Again this is important and can be used with good effect. Use a variation of your main keyword and keep it targeted</p>
<p> </p>
<p>So a good example would be “Their special day is fast approaching, and you are looking for the best Winter Boots you can find – now you have found them”</p>
<p> </p>
<p><strong>H3 Tag </strong></p>
<p>Just to keep in line with looking fluent with correct use of H tags, this can be utilised with just another variation of your main keyword.</p>
<p> </p>
<p>So a good example would be “Choose from our extensive range of winter boots, which range from classic to modern”</p>
<p> </p>
<p><strong>Image ALT tags</strong></p>
<p>Make sure you always use image ALT tags on all images included on your page. These do not only aid those who are partially sited, but it also follows further compliance with search engines and makes your site nice and clean. They also can bring you extra traffic from google images etc if done correctly.</p>
<p> </p>
<p><strong>Unique content </strong></p>
<p>ALWAYS use unique content. Never copy someone else&#8217;s content as A. it is stealing and B. search engines hate duplicate content. Keep your content as keyword rich as possible but only mention your main keyword 4-6% in the entire content on the page. So for every 100 words, you can mention your keyword 4-6 times. Only bold the keywords approx 2-4 % on the page also – don&#8217;t over do it</p>
]]></content:encoded>
			<wfw:commentRss>http://noblewebdesign.co.uk/blog/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a domain name</title>
		<link>http://noblewebdesign.co.uk/blog/?p=3</link>
		<comments>http://noblewebdesign.co.uk/blog/?p=3#comments</comments>
		<pubDate>Tue, 21 Jul 2009 03:27:32 +0000</pubDate>
		<dc:creator>noble web design</dc:creator>
				<category><![CDATA[Your first website]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[web address]]></category>
		<category><![CDATA[website address]]></category>

		<guid isPermaLink="false">http://noblewebdesign.co.uk/blog/?p=3</guid>
		<description><![CDATA[How to choose a good domain name for your business, tips/tricks and things to take into consideration before designing the website.]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong>Choosing a domain name for your website and business</strong></p>
<p><strong> </strong></p>
<p>To help your website and business flourish, pick a domain name that:</p>
<p> </p>
<ol>
<li>is easy for Web users to remember and find</li>
<li>suggests the nature of your product or service</li>
<li>serves as a strong trademark so competitors won’t be able to use a business name or domain name similar to it, and is free of legal conflicts with trademarks belonging to other businesses</li>
</ol>
<p> </p>
<p><strong>So what makes a good domain name?</strong></p>
<p>Good extension – If a person is surfing around looking for a site, and they know its name, most people will try .com. So, for the web site owner who wants their site to be found, the rule is: if at all possible, get a .com name.</p>
<p> </p>
<p>Short – Less than 7 characters, ideally. A simple name will roll off the tongue more easily in conversation, look more professional, and have less chance of being mis-typed.</p>
<p> </p>
<p>Easy to spell – Make sure it passes the phone test: if you were to say the domain name of your website to a friend over the phone, would your friend be able to spell it correctly the first time without your having to spell it for them? If not, you’ve failed the phone test and should likely try a different domain name.</p>
<p> </p>
<p> Also, be careful about double letters. Take CyberRodeo, for example. Their domain uses a double R, as you might expect, but there is an uncertainty there. The two R’s together look a bit strange if written without capitalization, and a good name will not force the user to assume anything about the name. If you must have a double letter, the best solution is to buy both versions of the domain. Avoid using dashes in your domain name.</p>
<p> </p>
<p>Descriptive – A good site or business name will describe exactly what the site is about. In most cases it’s important for a person to be able to get some sort of sense what the website is about just by reading the domain name. Of course that logic doesn’t work for sites like ebay, amazon, ivillage, etc, but then again you likely don’t have a multi-million dollar budget to help you brand your name and teach people what it means.</p>
<p> </p>
<p>Keywords – Include descriptive keywords that describe your business, product or mission in your domain name. This will play a very small part, in some cases, in increasing your search engine ranking for search phrases that include the keywords used in your domain name.</p>
<p> </p>
<p>When shopping for a domain, it is also important to keep an eye open for domain name scams. The surging popularity of domain name affiliate programs has created countless “fly by night” operations; dozens of domain name resellers worldwide cease operations every month, often leaving the administrative status of the domains they leave behind up in the air. Making a purchase from a reseller is not a bad decision, but make sure to research the company’s history and credentials.</p>
]]></content:encoded>
			<wfw:commentRss>http://noblewebdesign.co.uk/blog/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
