<?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>the Mr. Henry blog-o-sphere &#187; Internet</title>
	<atom:link href="http://blog.mrhenry.be/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mrhenry.be</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 15 Jul 2010 11:06:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Speed up your HTML development</title>
		<link>http://blog.mrhenry.be/2009/07/speed-up-your-html-development/</link>
		<comments>http://blog.mrhenry.be/2009/07/speed-up-your-html-development/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 10:19:12 +0000</pubDate>
		<dc:creator>yves</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Sharing]]></category>
		<category><![CDATA[conditional comments]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[google.load]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[pngfix]]></category>

		<guid isPermaLink="false">http://blog.mrhenry.be/?p=790</guid>
		<description><![CDATA[Every time you start a new html project, you have to configure a couple things over and over. When you have some standard configurations at hand, this could be an enormous time saver and can avoid easily made mistakes at deploy stage! A good example is HTML/CSS/JS-kickstart.
Through the hand of time, we&#8217;ve created something alike, [...]]]></description>
			<content:encoded><![CDATA[<p>Every time you start a new html project, you have to configure a couple things over and over. When you have some standard configurations at hand, this could be an enormous time saver and can avoid easily made mistakes at deploy stage! A good example is <a href="http://praegnanz.de/weblog/htmlcssjs-kickstart">HTML/CSS/JS-kickstart</a>.</p>
<p>Through the hand of time, we&#8217;ve created something alike, because there isn&#8217;t something like &#8220;the perfect starting files&#8221;.  And after all, everyone has other needs and preferences. You can easily make one yourself too!  Let&#8217;s take a closer look at our starting files.</p>
<blockquote><p>We have a Github repository where you can download or fork our files:<br />
<a href="http://github.com/mrhenry/head-start/tree/master">http://github.com/mrhenry/head-start/tree/master</a></p>
</blockquote>
<p><img class="alignnone size-full wp-image-851 slideshow" title="head-start" src="http://blog.mrhenry.be/wp-content/uploads/2009/07/head-start.jpg" alt="head-start" width="490" height="340" /><span id="more-790"></span><img class="alignnone size-full wp-image-863 slideshow" title="speedy-gon-what" src="http://blog.mrhenry.be/wp-content/uploads/2009/07/speedy-gon-what.jpg" alt="speedy-gon-what" width="490" height="340" /><img class="alignnone size-full wp-image-838 slideshow" src="http://blog.mrhenry.be/wp-content/uploads/2009/07/snel.jpg" alt="snel" width="490" height="340" /></p>
<p><!--more--></p>
<h3>The tree</h3>
<p>First of all, notice the tree structure. This is just a basic setup, but it contains essential folders for most websites. An other advantage is that you create a name spacing that you can use into all your projects.</p>
<ul>
<li>favicon.ico</li>
<li>index.html</li>
<li>crossdomain.xml</li>
<li><strong>flash</strong>
<ul>
<li>expressInstall.swf</li>
</ul>
</li>
<li><strong>images </strong>
<ul>
<li><strong>backgrounds</strong></li>
<li><strong>buttons</strong></li>
<li><strong>general</strong></li>
<li><strong>icons</strong></li>
<li><strong>titles</strong></li>
</ul>
</li>
<li><strong>javascripts </strong>
<ul>
<li>application.js</li>
<li>cufon-min.js</li>
<li>DD_belatedPNG.0.0.7a-min.js</li>
</ul>
</li>
<li><strong>stylesheets </strong>
<ul>
<li>general.css</li>
<li>ie.css</li>
<li>print.css</li>
<li>reset.css</li>
<li>typography.css</li>
</ul>
</li>
</ul>
<p>Ok, now you know what our tools are, let&#8217;s dive into our <strong>index.html</strong>. And we start at line 1!</p>
<h3>Doctype</h3>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #00bbdd;">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;</span></pre></div></div>

<p>This is where it all starts, and all can go wrong. It&#8217;s really important that you choose the right doctype for the job. We prefer to work with HTML 4.01 or XHTML 1.0. Always choose for the strict version because we write clean code and don&#8217;t use presentation tags. There&#8217;s a lot of fuzz about this so if you&#8217;re a selfrespecting front-end developer, you should read about this! Oh, and don&#8217;t leave it out if something goes wrong with your layout, it&#8217;s probably your code, not the doctype *grin*.</p>
<h3>Meta tags</h3>
<p>In our head section of our document we start with some very important meta tags. They still are very important for search engines and their crawl bots, but also for your visitor&#8217;s browser. You can easily give a lot of information about your page in machine language.</p>
<p>The first one declares that we the character encoding is Unicode.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">http-equiv</span>=<span style="color: #ff0000;">&quot;Content-Type&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;text/html; charset=UTF-8&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></div></div>

<p>This second one removes the image actions of Internet Explorer when you hover over images. Personally we don&#8217;t like this behavior, so it&#8217;s kind of personal wether you put this one in or not.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">http-equiv</span>=<span style="color: #ff0000;">&quot;imagetoolbar&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;no&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></div></div>

<p>And these are important for our search engine friends. They&#8217;re easily forgotten but can make a huge difference! We picked out the most relevant ones for us. And yes, again, you can flavour this at own taste!</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;distribution&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;Global&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;robots&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;INDEX,FOLLOW&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;revisit-after&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;31 Days&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;email&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;hello@mrhenry.be&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;author&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;Mr. Henry&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;publisher&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;Mr. Henry&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;copyright&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;copyright 2009 Mr. Henry&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;keywords&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;description&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;rating&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;expires&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;never&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></div></div>

<h3>Favicons</h3>
<p>These tiny little icons are a simple but effecient signature of your site. By adding the following line, you can make your own cool icon in .gif or .png format, and not the hard-to-make .ico. Maybe you can try an animated one!</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;link</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;shortcut icon&quot;</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;/favicon.gif&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></div></div>

<h3>Title</h3>
<p>Your page title is a very important key to search results. It&#8217;s a good practice that you keep your H1 and the first part of your title the same. Preserve the second part of your title, behind a seperator, for your site&#8217;s name.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Starting HTML template | Site name<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<h3>Including the stylesheets</h3>
<p>Now we&#8217;re going to link our stylesheets. As you saw in our tree structure, we use a couple of CSS files. It&#8217;s a best practice to divide your CSS files in proper sections. First we load a <em>reset.css</em> file, because we want to look good in every browser *shine*. Afterwards we pick up the <em>general.css</em> and <em>typography.css</em> files. And last but not least we link the <em>print.css</em> and a special dish for our good friend Internet Explorer (no sarcasm). Those strange tags around ie.css are hiding it from all other browsers. They&#8217;re called <a href="http://www.quirksmode.org/css/condcom.html">conditional comments</a> and are only recogniced by Mr. IE. If you need to write hacks, it&#8217;s better not to but sometimes there&#8217;s no other way, write them for IE, in these files. So the rest of your css stays clean and valid.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;link</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;stylesheets/reset.css&quot;</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">media</span>=<span style="color: #ff0000;">&quot;screen, projection&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;link</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;stylesheets/general.css&quot;</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">media</span>=<span style="color: #ff0000;">&quot;screen, projection&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;link</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;stylesheets/typography.css&quot;</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">media</span>=<span style="color: #ff0000;">&quot;screen, projection&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;link</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;stylesheets/print.css&quot;</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">media</span>=<span style="color: #ff0000;">&quot;print&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #808080; font-style: italic;">&lt;!--[if IE]&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheets/ie.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot;&gt;&lt;![endif]--&gt;</span></pre></div></div>

<h3>Including the javascript</h3>
<p>In modern webdevelopment, we all use javascript to let the user experience sparkle. Forget about the 90&#8217;s and the sloppy pop-up and -under scripts! Nowadays we have great frameworks at our side and they&#8217;ve taken the development speed to the next level. It&#8217;s fun to write and you can do really crazy things with them. Oh and they take care of all the browser differences too! My god, where have they been all these years! Enough blessings. Let&#8217;s move on!</p>
<p>Our favorite javascript library is <a href="http://jquery.com/">jQuery</a>. It&#8217;s easy to learn, fast to develop and has a huge active community. If you look at the way we load our library, you can see that we use the <a href="http://code.google.com/apis/ajaxlibs/documentation/">google.load()</a> function. Since a couple months, this is a great way of including your favorite javascript libraries, because it&#8217;s on the Google servers and this method is used on a lot of big sites. Your visitors probably have these links already cached, which results in faster loading times! It&#8217;s a good idea to choose your version number of the library you want to load, just in case, you never know if an update can change your script&#8217;s behavior.</p>
<p>We use the same method to load <a href="http://code.google.com/p/swfobject/">SWFObject</a>. You probably don&#8217;t need it in every project, but it&#8217;s handy in your head-start files.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script</span> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;http://www.google.com/jsapi&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/javascript&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;/script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/javascript&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
google.load(&quot;jquery&quot;, &quot;1.3.2&quot;);
google.load(&quot;swfobject&quot;, &quot;2&quot;);
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>After this hazzle dazzle, we include the <em>application.js</em>. In this file we write our home-made javascript, fueled with jQuery.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script</span> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;javascripts/application.js&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/javascript&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;/script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Of course, we can&#8217;t leave the house without a decent PNG fix. We&#8217;ve tried tons of PNG fixes, and every one of them had it&#8217;s disadvantages. But then, one day, there was <a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/">the DD_belatedPNG fix</a>. And, as they describe it themselves, it&#8217;s the pure medicine for your IE6 PNG headache! It uses a total other approach than all the others, a better one, a more simple one. Instead of using Microsoft&#8217;s AlphaImageLoader, it uses <a href="http://en.wikipedia.org/wiki/Vector_Markup_Language">VML</a>, Microsoft&#8217;s baby for creating vector graphics. And miraculously, PNG images and their transparency show correctly in a VML fill element. Notice the conditional comments around, because we only want IE6 to read and execute these lines.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--[if IE 6]&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;script src=&quot;javascripts/DD_belatedPNG_0.0.7a-min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;script&gt;</span>
<span style="color: #808080; font-style: italic;">DD_belatedPNG.fix('*'); /* string argument can be any CSS selector */</span>
<span style="color: #808080; font-style: italic;">&lt;/script&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;![endif]--&gt;</span></pre></div></div>

<p>We can close down the HTML head section and start working on our B.O.D.Y. There&#8217;s not much to say here because you probably want to start clean every project.</p>
<h3>A quick look inside our stylesheets</h3>
<p>When you look inside our CSS files, you will find some predefined styles, very limited, but these come in handy when it comes to rapid development. Then comes the question whether you like CSS frameworks or not. We personally like to do it from scratch when it comes to styling. But with the limited styles available from the beginning, yes, we&#8217;ve created our own little framework. There is absolutelly nothing wrong using a CSS framework, it just has to suit you. If you are more deleting than using styles of some framework, consider NOT using one, or simply create one at your needs.</p>
<h3>Taming Microsoft&#8217;s internet navigator</h3>
<p>And last but not least, a quick look into our special blended CSS file for Internet Explorer. Some people use different files for the different versions. We prefer one file with version hacks. It&#8217;s easier to keep an overview this way on what you allready hacked.</p>
<p>Below you will find the version hacks we use. They&#8217;re commented so everyone who uses the file can easily look up which neat hackedihack to use.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">    <span style="color: #6666ff;">.box</span> <span style="color: #00AA00;">&#123;</span>
       <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#00f</span><span style="color: #00AA00;">;</span> // all versions including Mac IE
       //<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f00</span><span style="color: #00AA00;">;</span> // IE8 only
       <span style="color: #00AA00;">*</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f00</span><span style="color: #00AA00;">;</span> // IE <span style="color: #cc66cc;">7</span> and <span style="color: #993333;">below</span>
       _background<span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f60</span><span style="color: #00AA00;">;</span> // IE <span style="color: #cc66cc;">6</span> and <span style="color: #993333;">below</span>
    <span style="color: #00AA00;">&#125;</span>
    html<span style="color: #00AA00;">&gt;</span>body <span style="color: #6666ff;">.box</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #00AA00;">*</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#007</span><span style="color: #00AA00;">;</span> Only IE7 <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>The very very last thing you can say about IE is that he renders images really ugly when you downscale the actual size. We&#8217;ve added the following line to our <em>ie.css</em> and IE is showing those scaled images of you as they where that size &#8216;fo real&#8217;!</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">img <span style="color: #00AA00;">&#123;</span> -ms-interpolation-mode<span style="color: #00AA00;">:</span> bicubic<span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>That&#8217;s it for our first head-start files.   As usual: comments are open for you much appreciated feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mrhenry.be/2009/07/speed-up-your-html-development/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
	</channel>
</rss>
