<?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>SEO Blogger &#187; Web Design</title>
	<atom:link href="http://www.seoblogger.co.uk/category/web-design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.seoblogger.co.uk</link>
	<description>My boring views &#38; ocassional tutorial on SEO, web design, CSS, graphic design, making money with your website and so on...</description>
	<lastBuildDate>Wed, 09 Apr 2008 16:00:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Updating your site from HTML to XHTML</title>
		<link>http://www.seoblogger.co.uk/seo/updating-your-site-from-html-to-xhtml.html</link>
		<comments>http://www.seoblogger.co.uk/seo/updating-your-site-from-html-to-xhtml.html#comments</comments>
		<pubDate>Thu, 08 Nov 2007 13:09:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[XHTML]]></category>
<category>search engines</category><category>xhtml</category>
		<guid isPermaLink="false">http://www.seoblogger.co.uk/seo/updating-your-site-from-html-to-xhtml.html</guid>
		<description><![CDATA[Now, I know this isn&#8217;t exactly the most advanced post in the world and is going back to basics quite a bit, but given the amount of basic questions I get asked on the subject I thought I&#8217;d jot down some points on it.
Everyone’s going on about XHTML nowadays, and you’re probably beginning to get [...]]]></description>
			<content:encoded><![CDATA[<p>Now, I know this isn&#8217;t exactly the most advanced post in the world and is going back to basics quite a bit, but given the amount of basic questions I get asked on the subject I thought I&#8217;d jot down some points on it.</p>
<p>Everyone’s going on about XHTML nowadays, and you’re probably beginning to get a bit worried that your site must be infinitely inferior to the rest of the web as you’ve got no clue what XHTML is, and your site’s just coded in plain old HTML.</p>
<p>XHTML stands for Extensible Hypertext Mark-up Language and is a hybrid of XML and HTML. The basic principle behind it is that all pages designed in XHTML should look the same across all browsers and platforms, thanks to the way in which XHTML documents are parsed. I won’t try and bore you with an indepth explanation, but those nice people over at <a href="http://en.wikipedia.org/wiki/XHTML" target="_blank" title="XHTML definition at Wikipedia">Wikipedia have an explanation</a> that might make your head hurt. But if I were you, I’d just take my word for it that you should be coding in XHTML, and if you do so your sites should continue to look as you intended as the Internet continues to evolve. It’s all about trying to get a set of global standards that everyone follows so that no-one gets left behind… not too much anyway.<span id="more-22"></span></p>
<p>So anyway, you want to change your old HTML coded site into an all singing all dancing XHTML site. It doesn’t take a lot to drag your site out of the dark ages, just a few common principles to follow and some minor changes to your site. Optimising for search engines and building your site with CSS is another story though, which I’ll cover sometime in the near future.</p>
<h3>1. All tags in lowercase please</h3>
<p>Turn your caps lock off, do a match-case find-and-replace for all &lt;P&gt; tags and replace them with &lt;p&gt;. Find the next tag and repeat. We all hate stuff written in all caps anyway, so it shouldn’t be much of a chore.</p>
<h3>2. Close all tags!</h3>
<p>XHTML must be valid and able to be correctly parsed! I’d hope you’re in the habit of &lt;p&gt;Closing your paragraph&lt;/p&gt; tags anyway, as well as your &lt;li&gt;&lt;/li&gt;, &lt;ul&gt;&lt;/ul&gt; tags and so on. But what about all these tags like the &lt;img&gt; one, and &lt;br&gt;? They’ve gotta be closed too, but not like your paragraphs. Tags without a closing element need to be closed as follows with a &#8220;/&#8221; before the &#8220;&gt;&#8221; (/ &gt;):</p>
<blockquote><p>&lt;img src=”hand.gif” width=”100” height=”100” border=”0” alt=”John Leslie’s Right Hand” /&gt;</p>
<p>&lt;br /&gt;</p>
<p>&lt;hr /&gt;</p></blockquote>
<p>I’m sure you get the idea. But please note, this also applies to header tags such as:</p>
<blockquote><p>&lt;meta name=&#8221;keywords&#8221; content=&#8221;keywords, go, here&#8221; /&gt;</p>
<p>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;styles.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;</p></blockquote>
<p>Close them all! This way the browser will know not to go looking through the rest of your code for a closing tag that’s not there!</p>
<h3>3. Nest your tags correctly</h3>
<p>You should close your tags in the order that you opened them. Here are a couple of examples:</p>
<blockquote><p>WRONG &#8211; &lt;p&gt;&lt;strong&gt;Hello!&lt;/p&gt;&lt;/strong&gt;</p>
<p>CORRECT &#8211; &lt;p&gt;&lt;strong&gt;Hello!&lt;/strong&gt;&lt;/p&gt;</p></blockquote>
<p>Seems obvious doesn’t it, but you’d be surprised how many people do it the wrong way.</p>
<h3>4. Use double speech marks</h3>
<p>Inside your tags, for example the image tag, remember to use your double speech marks. So not width=100, but width=”100”.</p>
<h3>5. Add your alt tags</h3>
<p>I’m not 100% sure if this is a requirement for XHTML, but you should be doing it anyway. Images are no use in text-only browsers or screen readers UNLESS you add alt tags explaining what the picture is of. And if you’ve got spacer images, use alt=”” for consistency. Please don’t put the word “Spacer” in as that’ll just be really annoying and doesn’t actually add any value. The spacers are only there to aid the visual structure of the site.</p>
<h3>6. No more &lt;font&gt; tags!</h3>
<p>They&#8217;re horrible, clunky and limited. Get rid of them! Use your paragraph and span tags where applicable to style and size your text. It&#8217;s some of the most basic CSS to do this, and if you&#8217;re not familiar with the basics yet, you really should be &#8211; so get Googling!</p>
<h3>7. Use character entity codes</h3>
<p>This is reasonably simple, instead of using &amp; use &amp;. There’s a <a href="http://www.asciitable.com/" target="_blank" title="Ascii Table">huge list of them all here</a>.</p>
<p>That wasn’t that hard was it? Now you’ve tidied your code up, it’s probably time to start thinking about step number…</p>
<h3>8. Code your sites with CSS</h3>
<p>Not part of the XHTML thing, but it’s definitely the next step. Coding your sites in CSS will allow for much more control over the appearance of your site, it’ll make your page size loads smaller, and you’ll be well on your way to fully optimizing your site for all the major search engines. My tips on how to do this will be winging their way to you via this blog soon!</p>
<p>A useful link: <a href="http://meiert.com/en/indices/html-elements/" title="HTML Elements Index" target="_blank">HTML Elements Index</a>. It&#8217;s a great list of what you can and can&#8217;t use in different versions of HTML and XHTML.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoblogger.co.uk/seo/updating-your-site-from-html-to-xhtml.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating CSS Rounded Corners</title>
		<link>http://www.seoblogger.co.uk/web-design/creating-css-rounded-corners.html</link>
		<comments>http://www.seoblogger.co.uk/web-design/creating-css-rounded-corners.html#comments</comments>
		<pubDate>Wed, 07 Nov 2007 10:26:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SERPs]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.seoblogger.co.uk/web-design/creating-css-rounded-corners.html</guid>
		<description><![CDATA[Something I&#8217;ve often been asked is how to create a box with rounded corners in CSS, i.e. without using tables. Now, there are loads of tutorials out there waiting to be found, so I&#8217;m not going to write yet another one. What I am going to do is point you in the direction of a [...]]]></description>
			<content:encoded><![CDATA[<p>Something I&#8217;ve often been asked is how to create a box with rounded corners in CSS, i.e. without using tables. Now, there are loads of tutorials out there waiting to be found, so I&#8217;m not going to write yet another one. What I am going to do is point you in the direction of a brilliant site that does the work for you.<span id="more-20"></span></p>
<p><a href="http://www.roundedcornr.com" title="RoundedCornr" target="_blank">http://www.roundedcornr.com</a></p>
<p>RoundedCornr is another brilliant generator, and all you have to do is fill in the required details such as the corner radius, border size, colours, even a gradient if you want, and the best bit is that you don&#8217;t have to have them at a fixed width, they&#8217;re fluid.</p>
<p>There are so many great tools on the net now to help make life easier and I&#8217;m always interested to try out new ones and spread the word, so if anyone comes across any that may be of interest, let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoblogger.co.uk/web-design/creating-css-rounded-corners.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Not just stripes, but TABS as well!</title>
		<link>http://www.seoblogger.co.uk/web-design/not-just-stripes-but-tabs-as-well.html</link>
		<comments>http://www.seoblogger.co.uk/web-design/not-just-stripes-but-tabs-as-well.html#comments</comments>
		<pubDate>Mon, 05 Nov 2007 14:18:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Web Design]]></category>
<category>graphics</category><category>menu tabs</category><category>minimal effort</category><category>web design</category><category>web design</category>
		<guid isPermaLink="false">http://www.seoblogger.co.uk/web-design/not-just-stripes-but-tabs-as-well.html</guid>
		<description><![CDATA[As if being able to generate striped backgrounds in a matter of seconds weren&#8217;t enough, you can now save yourself the hassle in Photoshop by generating menu tabs with Tabs Generator!
Admittedly, this one doesn&#8217;t save you huge amounts of time if you already know what the tab you want to create looks like, but being [...]]]></description>
			<content:encoded><![CDATA[<p>As if being able to <a href="http://www.seoblogger.co.uk/web-design/my-new-favourite-site-stripegeneratorcom.html" title="Stripe Generator">generate striped backgrounds</a> in a matter of seconds weren&#8217;t enough, you can now save yourself the hassle in Photoshop by generating menu tabs with <a href="http://www.tabsgenerator.com/" title="Tabs Generator">Tabs Generator</a>!</p>
<p>Admittedly, this one doesn&#8217;t save you huge amounts of time if you already know what the tab you want to create looks like, but being able to experiment and play about a bit with minimal effort is great. There&#8217;s a lot of trial and error involved in web design, and anything that&#8217;ll help save me some time I&#8217;m all for.<span id="more-18"></span></p>
<p>So check it out, <a href="http://www.tabsgenerator.com/" title="Tabs Generator">http://www.tabsgenerator.com</a>, and try not to get quite as excited about it as I do &#8211; it&#8217;s a bit sad really. Great tool though!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoblogger.co.uk/web-design/not-just-stripes-but-tabs-as-well.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love Web 2.0</title>
		<link>http://www.seoblogger.co.uk/serps/i-love-web-20.html</link>
		<comments>http://www.seoblogger.co.uk/serps/i-love-web-20.html#comments</comments>
		<pubDate>Mon, 05 Nov 2007 13:15:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[SERPs]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Design]]></category>
<category>backlinks</category><category>content creation</category><category>dream come true</category><category>google</category><category>internet users</category><category>manually</category><category>search engine traffic</category><category>slightly modified version</category><category>sourcing</category><category>strong user</category>
		<guid isPermaLink="false">http://www.seoblogger.co.uk/serps/i-love-web-20.html</guid>
		<description><![CDATA[I love the whole Web 2.0 concept. It&#8217;s so lazy and a dream come true for many a webmaster.  It&#8217;s like you&#8217;re effectively out-sourcing the content creation for your site to as many internet users as you can possibly manage.
One of my Web 2.0 style sites has over 10,000 pages indexed in Google now [...]]]></description>
			<content:encoded><![CDATA[<p>I love the whole Web 2.0 concept. It&#8217;s so lazy and a dream come true for many a webmaster.  It&#8217;s like you&#8217;re effectively out-sourcing the content creation for your site to as many internet users as you can possibly manage.</p>
<p>One of my Web 2.0 style sites has over 10,000 pages indexed in Google now after just 1 year, and I manually created about 5 of those. Not only that, but the beauty of the whole Web 2.0 concept is that as people are effectively creating the content for you, they want to share what they&#8217;ve done with others. Hey presto, looooooads of backlinks.<span id="more-16"></span></p>
<p>Lots of content + lots of backlinks, many of them deeplinks = brilliant search engine traffic. And brilliant search engine traffic = more visitors, more users and more content. Once you&#8217;ve got site that works, it&#8217;s just going to grow and grow, particularly if you&#8217;re creating a strong user base that&#8217;ll continue to return to your site.</p>
<p>It&#8217;s genius really. And while I&#8217;m in a proverby mood, if that&#8217;s a word, lets go with a slightly modified version of an old classic &#8211; &#8220;They do the work, so you don&#8217;t have to&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoblogger.co.uk/serps/i-love-web-20.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Cowboys</title>
		<link>http://www.seoblogger.co.uk/seo/web-design-cowboys.html</link>
		<comments>http://www.seoblogger.co.uk/seo/web-design-cowboys.html#comments</comments>
		<pubDate>Mon, 05 Nov 2007 13:05:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
<category>cost effective solution</category><category>freelancers</category><category>most cost effective</category><category>style site</category><category>web designers</category><category>web design companies</category><category>word of mouth</category>
		<guid isPermaLink="false">http://www.seoblogger.co.uk/seo/web-design-cowboys.html</guid>
		<description><![CDATA[Some may consider it a weakness on my part, but I&#8217;m one of those web designers with some morals. I only raise this point after speaking to a friend the other night and learning the astronomical quote someone gave a company he knows for a really basic e-commerce style site.
It&#8217;s something that has always irritated [...]]]></description>
			<content:encoded><![CDATA[<p>Some may consider it a weakness on my part, but I&#8217;m one of those web designers with some morals. I only raise this point after speaking to a friend the other night and learning the astronomical quote someone gave a company he knows for a really basic e-commerce style site.</p>
<p>It&#8217;s something that has always irritated about a lot of web design companies and freelancers out there &#8211; the complete shoddiness of their work coupled with the ridiculous amounts they charge, while they prey on unsuspecting small businesses who know very little about the web other than it&#8217;s getting bigger and they should probably have some sort of online presence. 9 times out of 10, once they&#8217;re online they&#8217;re unlikely to ever do much business directly from their site because of how small they are anyway, so an expensive all singing, all dancing site really isn&#8217;t the most cost-effective solution for them.<span id="more-15"></span></p>
<p>I&#8217;m one of these people who (a) takes pride in their work (I see my work as an advert for my services &#8211; the better my sites are, the more likely I am to get more business) and (b) refuses to take these businesses for a ride by charging 10 times what the site&#8217;s worth. All that&#8217;ll happen is that they&#8217;ll be calling the designer a month later when they learn they&#8217;ve been ripped off, and when you couple that with the shoddy site they made that&#8217;s some pretty awful PR there.</p>
<p>I&#8217;ve found I&#8217;ve managed to have a nice steady stream of work come through by making quality and reasonably priced websites, leaving the customers pleased with the end result and the feeling they got great value for money. Next thing you know, you&#8217;ve got 5 other people contacting you wanting a site thanks to you good word of mouth.</p>
<p>Now my prices are by no means &#8220;cheap&#8221;, but I pride myself on creating something of the highest quality and value, and I&#8217;d much rather continue to get a steady stream of work, or often too much work, coming through than to take some poor soul for a ride for 20k and struggle to get much work again in the future.</p>
<p>This leads me to another point I&#8217;ll quickly make which also comes as a result of the conversation I had with a friend the other day. Nowadays, anyone can <a href="http://buildyoursite.com">make a website</a>, the real battle&#8217;s it getting found. Now, what&#8217;s the likelihood that these web design cowboys are offering any sort of SEO or PPC (if applicable) advice, or even bothering to optimise the websites properly?</p>
<p>As the old saying goes, &#8220;if a jobs worth doing, it&#8217;s worth doing well&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoblogger.co.uk/seo/web-design-cowboys.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My new favourite site &#8211; StripeGenerator.com</title>
		<link>http://www.seoblogger.co.uk/web-design/my-new-favourite-site-stripegeneratorcom.html</link>
		<comments>http://www.seoblogger.co.uk/web-design/my-new-favourite-site-stripegeneratorcom.html#comments</comments>
		<pubDate>Fri, 02 Nov 2007 12:22:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.seoblogger.co.uk/web-design/my-new-favourite-site-stripegeneratorcom.html</guid>
		<description><![CDATA[I love it. Stripes are the new &#8220;cool&#8221; thing in web design, and they&#8217;re a pain in the arse to make in Photoshop. So why bother toiling for hours trying to get the perfect stripe when you can use&#8230;
StripeGenerator.com!
It&#8217;s great. Just pick your colours, the stripe directions, even add a gradient to them if you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>I love it. Stripes are the new &#8220;cool&#8221; thing in web design, and they&#8217;re a pain in the arse to make in Photoshop. So why bother toiling for hours trying to get the perfect stripe when you can use&#8230;<span id="more-10"></span></p>
<p><a href="http://www.stripegenerator.com/" title="Stripe Generator" target="_blank">StripeGenerator.com!</a></p>
<p>It&#8217;s great. Just pick your colours, the stripe directions, even add a gradient to them if you&#8217;re feeling adventurous, and hey presto, stripes generated for you in a .PNG format. It&#8217;d be nice to have the option of downloading them in .GIF of .JPG formats, but that&#8217;s just because I&#8217;m lazy and it&#8217;d save me having to open the file and resave it.</p>
<p>Great site anyway &#8211; let&#8217;s paint the web stripey!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoblogger.co.uk/web-design/my-new-favourite-site-stripegeneratorcom.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
