<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blog Improvement Craft</title>
	<atom:link href="http://blogimprovementcraft.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogimprovementcraft.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 20 Jul 2009 01:08:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blogimprovementcraft.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blog Improvement Craft</title>
		<link>http://blogimprovementcraft.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blogimprovementcraft.wordpress.com/osd.xml" title="Blog Improvement Craft" />
	<atom:link rel='hub' href='http://blogimprovementcraft.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Learn Basic HTML in 10 Minutes</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/learn-basic-html-in-10-minutes/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/learn-basic-html-in-10-minutes/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:07:55 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=47</guid>
		<description><![CDATA[About HTML Tags First thing you need to know about HTML is tags. Tags are keywords enclosed by brackets (ex. &#60;html&#62;, &#60;body&#62;). They give your browser instructions on how to display your content. They usually come in pairs and are called start and end tags. The end tag has &#8220;/&#8221; symbol prefixed before the tag [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=47&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>About HTML Tags</h3>
<p>First thing you need to know about HTML is <strong>tags</strong>. Tags are keywords enclosed by brackets (ex. &lt;html&gt;, &lt;body&gt;). They give your browser instructions on how to display your content. They usually come in pairs and are called <strong>start </strong>and <strong>end </strong>tags. The end tag has &#8220;/&#8221; symbol prefixed before the tag name. For example, &lt;html&gt; is a start tag, while &lt;/html&gt; is an end tag.</p>
<h3><strong>Creating Your First HTML Page</strong></h3>
<p>Now lets create your first HTML page. To do that, all you need is a text editor (Notepad will do). Open your text editor then save it as <em>&#8220;sample.html</em>&#8220;. You now have a blank HTML file which you can open using your browser (it will display a blank page).</p>
<p>Now place the following code in sample.html and refresh your browser:</p>
<div class="code">
<pre>&lt;html&gt;
  &lt;body&gt;
    HELLO WORLD
  &lt;/body&gt;
&lt;/html&gt;</pre>
</div>
<p>You should be able to see &#8220;<strong>HELLO WORLD</strong>&#8221; on your browser.</p>
<div class="section">
<h5>What happend?</h5>
<p>First, let me explain what each tag means.</p>
<table class="table" border="0">
<tbody>
<tr>
<td style="width:90px;">&lt;html&gt;</td>
<td>All HTML pages start and end with these tags. These tags describe your HTML page. Don&#8217;t worry about this for now.</td>
</tr>
<tr>
<td>&lt;body&gt;</td>
<td>Anything placed inside this tag will be displayed by the browser. Which is why in our example, the browser showed HELLO WORLD.</td>
</tr>
</tbody>
</table>
</div>
<h3>Adding a Title</h3>
<p>If you&#8217;re using Firefox, you&#8217;d notice that on top of your browser, the title says &#8220;Mozilla Firefox&#8221;. For IE users, it shows the path to sample.html.</p>
<p>We can change that title by adding the following lines to sample.html Refresh your browser afterwards.</p>
<div class="code">
<pre>&lt;html&gt;
  <span style="color:#008000;">&lt;head&gt;
    &lt;title&gt;My First HTML Page&lt;/title&gt;
  &lt;/head&gt;</span>
  &lt;body&gt;
    HELLO WORLD
  &lt;/body&gt;
&lt;/html&gt;</pre>
</div>
<p>You should see &#8220;My First HTML Page&#8221; on top of your browser. This code structure is used in most, if not all, HTML pages.</p>
<div class="section">
<h5>What happend?</h5>
<p>We just added &lt;head&gt; and &lt;title&gt;.</p>
<table class="table" border="0">
<tbody>
<tr>
<td style="width:90px;">&lt;head&gt;</td>
<td>This is normally placed right above the &lt;body&gt;. Anything placed here will not be displayed by your browser.</td>
</tr>
<tr>
<td>&lt;title&gt;</td>
<td>Sets your browser title to whatever you place between these tags</td>
</tr>
</tbody>
</table>
</div>
<h3>Formatting Text</h3>
<p>Now lets proceed to adding styles to your text.</p>
<p>Add the following lines to sample.html then refresh your browser.</p>
<div class="code">
<pre>&lt;html&gt;
<span style="color:#000000;">  &lt;head&gt;
    &lt;title&gt;My First HTML Page&lt;/title&gt;
  &lt;/head&gt;</span>
  &lt;body&gt;
<span style="color:#008000;">    <span style="color:#000000;">HELLO WORLD
</span></span><span style="color:#008000;">    &lt;h1&gt;Heading 1&lt;/h1&gt;
    &lt;h2&gt;Heading 2&lt;/h2&gt;
    &lt;h3&gt;Heading 3&lt;/h3&gt;
    &lt;h4&gt;Heading 4&lt;/h4&gt;
    &lt;h5&gt;Heading 5&lt;/h5&gt;
    &lt;h6&gt;Heading 6&lt;/h6&gt;</span>
<span style="color:#008000;">    &lt;p&gt;This is a paragraph using Normal text.&lt;/p&gt;
    &lt;p&gt;&lt;b&gt;</span><span style="color:#008000;">This is a paragraph using Bold text.</span><span style="color:#008000;">&lt;/b&gt;&lt;/p&gt;
    </span><span style="color:#008000;">&lt;p&gt;&lt;i&gt;This is a paragraph using Italic text.&lt;/i&gt;&lt;/p&gt;
    </span><span style="color:#008000;">&lt;p&gt;This is a paragraph using Normal, &lt;b&gt;Bold&lt;/b&gt;, and &lt;i&gt;Italic&lt;/i&gt; text.&lt;/p&gt;</span>
  &lt;/body&gt;
&lt;/html&gt;</pre>
</div>
<p>You should see something like this:</p>
<div class="boxed">HELLO WORLD</p>
<h1 style="color:black;font-size:30px;">Heading 1</h1>
<h2 style="color:black;font-size:22px;margin:12px 0;">Heading 2</h2>
<h3 style="color:black;font-size:16px;">Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p><span style="font-size:12px;">This is a paragraph using Normal text.</span></p>
<p><span style="font-size:12px;"><strong>This is a paragraph using Bold text.</strong></span></p>
<p><span style="font-size:12px;"><em>This is a paragraph using Italic text.</em></span></p>
<p><span style="font-size:12px;">This is a paragraph using Normal, <strong>Bold</strong>, and <em>Italic</em> text.</span></div>
<div class="section">
<h5>What happend?</h5>
<p>I know we added a lot of new tags in this example, but  these are very easy to understand. Let me explain each.</p>
<table class="table" border="0">
<tbody>
<tr>
<td style="width:110px;">&lt;h1&gt; &#8211; &lt;h6&gt;</td>
<td>Heading tags. The lower the number, the higher the importance, thus, the bigger the size. A new line is automatically added after these tags</td>
</tr>
<tr>
<td>&lt;p&gt;</td>
<td>Paragraph. Creates a paragraph, or in other words, adds a new line.</td>
</tr>
<tr>
<td>&lt;b&gt;</td>
<td>Bold. Turns text to bold.</td>
</tr>
<tr>
<td>&lt;i&gt;</td>
<td>Italic. Turns text to italic.</td>
</tr>
</tbody>
</table>
</div>
<h3>Creating a Link</h3>
<p>Links allow you to create a text or image that, when clicked on, redirects the browser to another HTML page.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blogimprovementcraft.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blogimprovementcraft.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blogimprovementcraft.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blogimprovementcraft.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blogimprovementcraft.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blogimprovementcraft.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blogimprovementcraft.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blogimprovementcraft.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blogimprovementcraft.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blogimprovementcraft.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blogimprovementcraft.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blogimprovementcraft.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blogimprovementcraft.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blogimprovementcraft.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=47&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/learn-basic-html-in-10-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Learn Basic CSS in 10 minutes</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/learn-basic-css-in-10-minutes/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/learn-basic-css-in-10-minutes/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:07:26 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=45</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=45&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=45&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/learn-basic-css-in-10-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Center-Aligning a DIV Container</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/center-aligning-a-div-container/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/center-aligning-a-div-container/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:07:02 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=43</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=43&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=43&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/center-aligning-a-div-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Using DIV Positioning</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/using-div-positioning/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/using-div-positioning/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:06:36 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=41</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=41&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=41&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/using-div-positioning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Starting a Blog Using WordPress</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/starting-a-blog-using-wordpress/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/starting-a-blog-using-wordpress/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:05:41 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[Blog Startup]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=39</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=39&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=39&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/starting-a-blog-using-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Choosing a Good Domain Name</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/choosing-a-good-domain-name/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/choosing-a-good-domain-name/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:05:19 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[Blog Startup]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=37</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=37&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=37&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/choosing-a-good-domain-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Optimizing Images Using Photoshop</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/optimizing-images-using-photoshop/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/optimizing-images-using-photoshop/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:04:45 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[Optimization]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=35</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=35&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=35&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/optimizing-images-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Include CSS First Before Scripts</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/include-css-first-before-scripts/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/include-css-first-before-scripts/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:03:57 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[Optimization]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=33</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=33&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=33&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/include-css-first-before-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Image Sprite for Faster Loading</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/using-image-sprite-for-faster-loading/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/using-image-sprite-for-faster-loading/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:03:31 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[Optimization]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=31</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=31&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=31&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/using-image-sprite-for-faster-loading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
		<item>
		<title>Be Aware of ‘dofollow’ and ‘nofollow’ Links</title>
		<link>http://blogimprovementcraft.wordpress.com/2009/07/20/be-aware-of-%e2%80%98dofollow%e2%80%99-and-%e2%80%98nofollow%e2%80%99-links/</link>
		<comments>http://blogimprovementcraft.wordpress.com/2009/07/20/be-aware-of-%e2%80%98dofollow%e2%80%99-and-%e2%80%98nofollow%e2%80%99-links/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:02:26 +0000</pubDate>
		<dc:creator>claire0917</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blogimprovementcraft.wordpress.com/?p=29</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=29&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blogimprovementcraft.wordpress.com&amp;blog=8645367&amp;post=29&amp;subd=blogimprovementcraft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blogimprovementcraft.wordpress.com/2009/07/20/be-aware-of-%e2%80%98dofollow%e2%80%99-and-%e2%80%98nofollow%e2%80%99-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47c3142b223139672e6d7d21d70312db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">claire0917</media:title>
		</media:content>
	</item>
	</channel>
</rss>
