<?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>Nelson3 Designs Blog</title>
	<atom:link href="http://nelson3.com/wpblog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://nelson3.com/wpblog</link>
	<description>Just some ramblings.</description>
	<lastBuildDate>Wed, 26 Oct 2011 13:50:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Halloween Hustle</title>
		<link>http://nelson3.com/wpblog/?p=17</link>
		<comments>http://nelson3.com/wpblog/?p=17#comments</comments>
		<pubDate>Wed, 26 Oct 2011 13:50:48 +0000</pubDate>
		<dc:creator>blaster30</dc:creator>
				<category><![CDATA[What's New]]></category>
		<category><![CDATA[5K]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Run]]></category>

		<guid isPermaLink="false">http://nelson3.com/wpblog/?p=17</guid>
		<description><![CDATA[Looking forward to the Halloween Hustle 5K on Saturday. What do you think of my t-shirt design?]]></description>
			<content:encoded><![CDATA[<p>Looking forward to the Halloween Hustle 5K on Saturday. What do you think of my t-shirt design?</p>
<p><a href="http://nelson3.com/wpblog/wp-content/uploads/2011/10/halloween_run1.jpg"><img src="http://nelson3.com/wpblog/wp-content/uploads/2011/10/halloween_run1-300x224.jpg" alt="" title="Halloween Hustle 5K" width="300" height="224" class="alignnone size-medium wp-image-21" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nelson3.com/wpblog/?feed=rss2&#038;p=17</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>You’re Doing it Wrong: Common HTML Tag Misuses</title>
		<link>http://nelson3.com/wpblog/?p=10</link>
		<comments>http://nelson3.com/wpblog/?p=10#comments</comments>
		<pubDate>Tue, 27 Sep 2011 11:49:28 +0000</pubDate>
		<dc:creator>blaster30</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nelson3.com/wpblog/?p=10</guid>
		<description><![CDATA[View the source code of a hand full of websites featured in CSS galleries today and you&#8217;ll often see the same errors appear time and time again. These mistakes are usually habits we picked up during our early days of coding that have stuck around due to lack of clarification. This post rounds up a &#8230; </p><p><a class="more-link block-button" href="http://nelson3.com/wpblog/?p=10">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>				<!-- WSA: rules for context 'content' did not apply -->					</p>
<p>View the source code of a hand full of websites featured in CSS galleries today and you&#8217;ll often see the same errors appear time and time again. These mistakes are usually habits we picked up during our early days of coding that have stuck around due to lack of clarification. This post rounds up a collection of common HTML tag and element misuses and describes the best practice to correctly and semantically use them in your markup.</p>
<p><span id="more-1825"></span></p>
<h3 class="header">Misuse of the &lt;br&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/1.png" alt="The &lt;br&gt; HTML tag" /></p>
<h3>How not to use the &lt;br&gt; tag</h3>
<p>A common misuse of the <code>&lt;br&gt;</code> tag is to use it to create spaces or gaps in your content. WYSIWYG editors are notorious for injecting multiple line breaks or empty paragraph tags.</p>
<h3>How to properly use the &lt;br&gt; tag</h3>
<p>The <code>&lt;br&gt;</code> is used to insert a line break in a sentence. Examples might be to correctly lay out an address. Use paragraph elements to split up your content and use CSS margins to alter the spacing between them.</p>
<h3 class="header">Misuse of the &lt;div&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/2.png" alt="The &lt;div&gt; HTML tag" /></p>
<h3>How not to use the &lt;div&gt; tag</h3>
<p>When we first get to grips with HTML and coding in CSS we often get carried away with our divs and surround almost every page item with its own div tags. </p>
<h3>How to properly use the &lt;div&gt; tag</h3>
<p>The <code>&lt;div&gt;</code> tag is perfectly acceptable to use to define the main page structure, but always try to use more suitable tags for your page elements. Paragraph tags, ordered/unordered lists and definition lists can be more semantic choices.</p>
<h3 class="header">Misuse of the &lt;small&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/3.png" alt="The &lt;small&gt; HTML tag" /></p>
<h3>How not to use the &lt;small&gt; tag</h3>
<p>The <code>&lt;small&gt;</code> tag is often wrongly used as its name suggests, to create text that&#8217;s small in size. </p>
<h3>How to properly use the &lt;small&gt; tag</h3>
<p>CSS should always be used for presentational styling, so use the <code>font-size</code> CSS property to control your text sizes. The <code>&lt;small&gt;</code> HTML tag is reserved for defining &#8220;smallprint&#8221; or legal text.</p>
<h3 class="header">Misuse of the &lt;hr&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/4.png" alt="The &lt;hr&gt; HTML tag" /></p>
<h3>How not to use the &lt;hr&gt; tag</h3>
<p>The use of the <code>&lt;hr&gt;</code> is pretty rare these days, but when you do see it you can guarantee it&#8217;s being misused as a presentational line between sections of a page.</p>
<h3>How to properly use the &lt;hr&gt; tag</h3>
<p>These days the CSS <code>border</code> property is the correct solution in most situations, however the <code>&lt;hr&gt;</code> tags still has its use in specific situations when defining layouts containing copy such as book chapters or poetry stanzas.</p>
<h3 class="header">Misuse of the &lt;title&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/5.png" alt="The &lt;title&gt; HTML tag" /></p>
<h3>How not to use the &lt;title&gt; tag</h3>
<p>In most cases the HTML <code>&lt;title&gt;</code> tag (not the attribute) is misused in two extremes. It either contains no valuable information, or it&#8217;s packed full of endless keywords for &#8220;SEO&#8221;.</p>
<h3>How to properly use the &lt;title&gt; tag</h3>
<p>The <code>&lt;title&gt;</code> should accurately but concisely describe the contents of the page. It&#8217;s important to include keywords that relate to the content as it is recognised by search engines, but it shouldn&#8217;t be abused.</p>
<h3 class="header">Misuse of the &lt;img&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/6.png" alt="The &lt;img&gt; HTML tag" /></p>
<h3>How not to use the &lt;img&gt; tag</h3>
<p>The misuse of the <code>&lt;img&gt;</code> is actually more to do with the misuse of its <code>alt</code> attribute. Often the text within the <code>alt</code> attribute is completely irrelevant (if it exists at all!).</p>
<h3>How to properly use the &lt;img&gt; tag</h3>
<p><code>&lt;img&gt;</code> tag <code>alt</code> attributes should contain an accurate description of the image. If the image is being used as a link give an insight to where the link will go. If the image has no importance an empty <code>alt</code> attribute is acceptable.</p>
<h3 class="header">Misuse of the &lt;label&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/7.png" alt="The &lt;label&gt; HTML tag" /></p>
<h3>How not to use the &lt;label&gt; tag</h3>
<p><code>&lt;label&gt;</code> is another tag that is often left out altogether rather than being misused. When it does appear it rarely includes the <code>for</code> attribute.</p>
<h3>How to properly use the &lt;label&gt; tag</h3>
<p>Use the <code>&lt;label&gt;</code> tag to relate a field to its descriptive label. For extra usability points add the <code>for</code> attribute to allow the user to click the label to activate the relevant input field.</p>
<h3 class="header">Misuse of the &lt;address&gt; tag</h3>
<p><img src="http://line25.com/wp-content/uploads/2011/html-misuse/8.png" alt="The &lt;address&gt; HTML tag" /></p>
<h3>How not to use the &lt;address&gt; tag</h3>
<p>The name of the <code>&lt;address&gt;</code> wrongly suggests that it should be used to surround a postal address on a contact page.</p>
<h3>How to properly use the &lt;address&gt; tag</h3>
<p>The correct use of the <code>&lt;address&gt;</code> tag is to define the author or owner of the document. Therefore it&#8217;s usually wrapped around their name along with their contact email address or telephone number. </p>
<p>Written by Chris Spooner</p>
]]></content:encoded>
			<wfw:commentRss>http://nelson3.com/wpblog/?feed=rss2&#038;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>21 Incredible HTML5 Experiments</title>
		<link>http://nelson3.com/wpblog/?p=7</link>
		<comments>http://nelson3.com/wpblog/?p=7#comments</comments>
		<pubDate>Wed, 21 Sep 2011 20:12:39 +0000</pubDate>
		<dc:creator>blaster30</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nelson3.com/wpblog/?p=7</guid>
		<description><![CDATA[Today we have a collection of some incredible and impressive HTML5 canvas and java-script experiments. Enjoy! Coil Google Gravity Canvas ribbon &#38; iOS4.2 device orientation Sketch 404 BreakDOM Move. Pick Up. Drop Fight or Flight? (HTML5 game) Make3D: Native Drag &#38; Drop in browser FlowerPower Conductor Z type webGL water Fish Tree HTML5 logo Test &#8230; </p><p><a class="more-link block-button" href="http://nelson3.com/wpblog/?p=7">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Today we have a collection of some incredible and impressive HTML5 canvas and java-script experiments.  Enjoy!</p>
<h4>Coil</h4>
<p><a href="http://hakim.se/experiments/html5/coil/"><img class="alignnone size-full wp-image-10762" src="http://spyrestudios.com/wp-content/uploads/160.jpg" alt="" width="570" height="342" /></a><br /> <br />
<span id="more-10761"></span></p>
<h4>Google Gravity</h4>
<p><a href="http://mrdoob.com/92/Google_Gravity_HTML5"><img class="alignnone size-full wp-image-10763" src="http://spyrestudios.com/wp-content/uploads/250.jpg" alt="" width="570" height="397" /></a></p>
<h4>Canvas ribbon &amp; iOS4.2 device orientation</h4>
<p><a href="http://www.monocubed.com/2010/11/24/html5-canvas-ribbon-ios4-2-device-orientation/"><img class="alignnone size-full wp-image-10764" src="http://spyrestudios.com/wp-content/uploads/340.jpg" alt="" width="570" height="292" /></a></p>
<h4>Sketch</h4>
<p><a href="http://hakim.se/experiments/html5/sketch/#786af119"><img class="alignnone size-full wp-image-10765" src="http://spyrestudios.com/wp-content/uploads/417.jpg" alt="" width="570" height="323" /></a></p>
<h4>404</h4>
<p><a href="http://hakim.se/experiments/html5/404/netmag.html"><img class="alignnone size-full wp-image-10766" src="http://spyrestudios.com/wp-content/uploads/512.jpg" alt="" width="570" height="284" /></a></p>
<h4>BreakDOM</h4>
<p><a href="http://hakim.se/experiments/html5/breakdom/"><img class="alignnone size-full wp-image-10767" src="http://spyrestudios.com/wp-content/uploads/612.jpg" alt="" width="570" height="458" /></a></p>
<h4>Move. Pick Up. Drop</h4>
<p><a href="http://www.monocubed.com/2011/01/13/move-pick-up-drop/"><img class="alignnone size-full wp-image-10768" src="http://spyrestudios.com/wp-content/uploads/712.jpg" alt="" width="570" height="312" /></a></p>
<h4>Fight or Flight? (HTML5 game)</h4>
<p><a href="http://www.monocubed.com/2010/10/20/fight-or-flight-html5-game/"><img class="alignnone size-full wp-image-10769" src="http://spyrestudios.com/wp-content/uploads/812.jpg" alt="" width="570" height="305" /></a></p>
<h4>Make3D: Native Drag &amp; Drop in browser</h4>
<p><a href="http://www.monocubed.com/2010/10/29/make3d-native-drag-drop-in-browser/"><img class="alignnone size-full wp-image-10770" src="http://spyrestudios.com/wp-content/uploads/912.jpg" alt="" width="570" height="301" /></a></p>
<h4><strong>FlowerPower</strong></h4>
<p><a href="http://www.openrise.com/lab/FlowerPower/"><img class="alignnone size-full wp-image-10771" src="http://spyrestudios.com/wp-content/uploads/1012.jpg" alt="" width="570" height="400" /></a></p>
<h4>Conductor</h4>
<p><a href="http://www.mta.me/"><img class="alignnone size-full wp-image-10772" src="http://spyrestudios.com/wp-content/uploads/1117.jpg" alt="" width="570" height="356" /></a></p>
<h4>Z type</h4>
<p><a href="http://www.phoboslab.org/ztype/"><img class="alignnone size-full wp-image-10773" src="http://spyrestudios.com/wp-content/uploads/1214.jpg" alt="" width="570" height="465" /></a></p>
<h4>webGL water</h4>
<p><a href="http://madebyevan.com/webgl-water/"><img class="alignnone size-full wp-image-10774" src="http://spyrestudios.com/wp-content/uploads/1313.jpg" alt="" width="570" height="436" /></a></p>
<h4>Fish</h4>
<p><a href="http://oos.moxiecode.com/js_webgl/fish/index.html"><img class="alignnone size-full wp-image-10775" src="http://spyrestudios.com/wp-content/uploads/1412.jpg" alt="" width="570" height="331" /></a></p>
<h4>Tree</h4>
<p><a href="http://kennethjorgensen.com/canvas/tree.html"><img class="alignnone size-full wp-image-10776" src="http://spyrestudios.com/wp-content/uploads/1512.jpg" alt="" width="570" height="302" /></a></p>
<h4>HTML5 logo</h4>
<p><a href="http://www.kevs3d.co.uk/dev/html5logo/"><img class="alignnone size-full wp-image-10777" src="http://spyrestudios.com/wp-content/uploads/1612.jpg" alt="" width="570" height="438" /></a></p>
<h4>Test</h4>
<p><a href="http://29a.ch/sandbox/2010/box2d2/test.html"><img class="alignnone size-full wp-image-10778" src="http://spyrestudios.com/wp-content/uploads/1712.jpg" alt="" width="570" height="363" /></a></p>
<h4>Canvascycle</h4>
<p><a href="http://www.effectgames.com/demos/canvascycle/"><img class="alignnone size-full wp-image-10779" src="http://spyrestudios.com/wp-content/uploads/1812.jpg" alt="" width="570" height="424" /></a></p>
<h4>Asteroids &#8211; HTML5 Canvas and JavaScript game</h4>
<p><a href="http://www.kevs3d.co.uk/dev/asteroids/"><img class="alignnone size-full wp-image-10780" src="http://spyrestudios.com/wp-content/uploads/1911.jpg" alt="" width="570" height="556" /></a></p>
<h4>UltraLight</h4>
<p><a href="http://www.kevs3d.co.uk/dev/canvask3d/ultralight.html"><img class="alignnone size-full wp-image-10781" src="http://spyrestudios.com/wp-content/uploads/2012.jpg" alt="" width="570" height="342" /></a></p>
<h4>Chrysaora</h4>
<p><a href="http://chrysaora.com/"><img class="alignnone size-full wp-image-10782" src="http://spyrestudios.com/wp-content/uploads/2116.jpg" alt="" width="570" height="401" /></a></p>
<div class="snap_nopreview sharing robots-nocontent">
<ul>
<li class="share-facebook share-regular">
<div class="like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fspyrestudios.com%2F21-incredible-html5-experiments%2F&amp;layout=button_count&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;height=21&amp;width=90" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:96px; height:21px;" allowTransparency="true"></iframe></div>
</li>
<li class="share-twitter share-regular">
<div class="twitter_button"><iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fspyrestudios.com%2F21-incredible-html5-experiments%2F&amp;counturl=http%3A%2F%2Fspyrestudios.com%2F21-incredible-html5-experiments%2F&amp;count=horizontal&amp;text=21%20Incredible%20HTML5%20Experiments%20%20: " style="width:97px; height:20px;"></iframe></div>
</li>
<li class="share-custom"><a href="#" class="sharing-anchor">Share</a></li>
<li class="share-end"></li>
</ul>
<div class="sharing-hidden">
<div class="inner" style="display: none;">
<ul>
<li class="share-email"><a rel="nofollow" class="share-email share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=email" target="_blank" title="Click to email this to a friend">Email</a></li>
<li class="share-reddit"><a rel="nofollow" class="share-reddit share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=reddit" target="_blank" title="Click to share on Reddit">Reddit</a></li>
<li class="share-end"></li>
<li class="share-print"><a rel="nofollow" class="share-print share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/#print" target="_blank" title="Click to print">Print</a></li>
<li class="share-stumbleupon">
<div class="stumbleupon_button"><iframe src="http://www.stumbleupon.com/badge/embed/1/?url=http%3A%2F%2Fspyrestudios.com%2F21-incredible-html5-experiments%2F&amp;title=21+Incredible+HTML5+Experiments++" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:74px; height: 18px;" allowTransparency="true"></iframe></div>
</li>
<li class="share-end"></li>
<li class="share-digg"><a rel="nofollow" class="share-digg share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=digg" target="_blank" title="Click to Digg this post">Digg</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/deliciousup16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=custom-1300650242" target="_blank" title="Click to share">Delicious</a></li>
<li class="share-end"></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/google-buzz-16x16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=custom-1300650370" target="_blank" title="Click to share">Google Buzz</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/yahoo-buzz-16x16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=custom-1300650306" target="_blank" title="Click to share">Yahoo Buzz</a></li>
<li class="share-end"></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/tumblr16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=custom-1300650455" target="_blank" title="Click to share">Tumblr</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/designbumpicon.jpg) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=custom-1300919375" target="_blank" title="Click to share">DesignBump</a></li>
<li class="share-end"></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/designfloaticon.jpg) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=custom-1300919353" target="_blank" title="Click to share">DesignFloat</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/thewebblendicon.jpg) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/21-incredible-html5-experiments/?share=custom-1300919395" target="_blank" title="Click to share">TheWebBlend</a></li>
<li class="share-end"></li>
<li class="share-custom"></li>
<li class="share-end"></li>
</ul>
</div>
</div>
<div class="sharing-clear"></div>
</div>
<p>				<br/> </p>
]]></content:encoded>
			<wfw:commentRss>http://nelson3.com/wpblog/?feed=rss2&#038;p=7</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>20 Tutorials That Will Improve Your CSS Skills and Make You a Better Coder</title>
		<link>http://nelson3.com/wpblog/?p=5</link>
		<comments>http://nelson3.com/wpblog/?p=5#comments</comments>
		<pubDate>Wed, 21 Sep 2011 20:10:21 +0000</pubDate>
		<dc:creator>blaster30</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nelson3.com/wpblog/?p=5</guid>
		<description><![CDATA[Create Digital Poster Design with CSS3 Only Create a rocking drop down navigation menu using css3 CSS Gradient Text Effect The CSS-Only Accordion Effect Create a rollover image using css image sprites Rounded Corner Boxes the CSS3 Way Styling Tables with CSS Working with css3 gradients and understanding how they work CSS Lightbox Effect Animated &#8230; </p><p><a class="more-link block-button" href="http://nelson3.com/wpblog/?p=5">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<h4><a href="http://webexpedition18.com/articles/create-digital-poster-design-with-css3-only/">Create Digital Poster Design with CSS3 Only</a></h4>
<p><a href="http://webexpedition18.com/articles/create-digital-poster-design-with-css3-only/"><img src="http://spyrestudios.com/wp-content/uploads/126.jpg" /></a></p>
<h4><a href="http://www.webdevtuts.net/coding/create-a-rocking-drop-down-navigation-menu-using-css3/">Create a rocking drop down navigation menu using css3</a></h4>
<p><a href="http://www.webdevtuts.net/coding/create-a-rocking-drop-down-navigation-menu-using-css3/"><img src="http://spyrestudios.com/wp-content/uploads/220.jpg" /></a></p>
<h4><a href="http://webdesignerwall.com/tutorials/css-gradient-text-effect">CSS Gradient Text Effect</a></h4>
<p><a href="http://webdesignerwall.com/tutorials/css-gradient-text-effect"><img src="http://spyrestudios.com/wp-content/uploads/319.jpg" /></a></p>
<h4><a href="http://www.cssnewbie.com/css-only-accordion/">The CSS-Only Accordion Effect</a></h4>
<p><a href="http://www.cssnewbie.com/css-only-accordion/"><img src="http://spyrestudios.com/wp-content/uploads/47.jpg" /></a></p>
<h4><a href="http://www.webdevtuts.net/coding/css/create-a-rollover-image-using-css-image-sprites/">Create a rollover image using css image sprites</a></h4>
<p><a href="http://www.webdevtuts.net/coding/css/create-a-rollover-image-using-css-image-sprites/"><img src="http://spyrestudios.com/wp-content/uploads/56.jpg" /></a></p>
<h4><a href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way">Rounded Corner Boxes the CSS3 Way</a></h4>
<p><a href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way"><img src="http://spyrestudios.com/wp-content/uploads/66.jpg" /></a></p>
<h4><a href="http://www.elated.com/articles/styling-tables-with-css/">Styling Tables with CSS</a></h4>
<p><a href="http://www.elated.com/articles/styling-tables-with-css/"><img src="http://spyrestudios.com/wp-content/uploads/76.jpg" /></a></p>
<h4><a href="http://www.webdevtuts.net/coding/css/working-with-css3-gradients-and-understanding-how-they-work/">Working with css3 gradients and understanding how they work</a></h4>
<p><a href="http://www.webdevtuts.net/coding/css/working-with-css3-gradients-and-understanding-how-they-work/"><img src="http://spyrestudios.com/wp-content/uploads/86.jpg" /></a></p>
<h4><a href="http://www.entheosweb.com/tutorials/css/lightbox_effect.asp">CSS Lightbox Effect</a></h4>
<p><a href="http://www.entheosweb.com/tutorials/css/lightbox_effect.asp"><img src="http://spyrestudios.com/wp-content/uploads/96.jpg" /></a></p>
<h4><a href="http://webdesigncrowd.com/animated-buttons-css3-transitions-transforms/">Animated Buttons using CSS3 Transitions and Transforms</a></h4>
<p><a href="http://webdesigncrowd.com/animated-buttons-css3-transitions-transforms/"><img src="http://spyrestudios.com/wp-content/uploads/106.jpg" /></a></p>
<h4><a href="http://www.gamexe.net/photoshop/fluid-css-speech-bubbles/">Fluid CSS Speech Bubbles</a></h4>
<p><a href="http://www.gamexe.net/photoshop/fluid-css-speech-bubbles/"><img src="http://spyrestudios.com/wp-content/uploads/1111.jpg" /></a></p>
<h4><a href="http://www.webdevtuts.net/coding/css/create-a-speaking-block-navigation-menu-using-pure-css/">Create a speaking block navigation menu using pure css</a></h4>
<p><a href="http://www.webdevtuts.net/coding/css/create-a-speaking-block-navigation-menu-using-pure-css/"><img src="http://spyrestudios.com/wp-content/uploads/127.jpg" /></a></p>
<h4><a href="http://acrisdesign.com/2011/06/create-a-multi-color-and-size-css3-buttons/">Create a Multi Color and Size CSS3 Buttons</a></h4>
<p><a href="http://acrisdesign.com/2011/06/create-a-multi-color-and-size-css3-buttons/"><img src="http://spyrestudios.com/wp-content/uploads/136.jpg" /></a></p>
<h4><a href="http://line25.com/tutorials/create-a-stylish-contact-form-with-html5-css3">Create a Stylish Contact Form with HTML5 &amp; CSS3</a></h4>
<p><a href="http://line25.com/tutorials/create-a-stylish-contact-form-with-html5-css3"><img src="http://spyrestudios.com/wp-content/uploads/146.jpg" /></a></p>
<h4><a href="http://webexpedition18.com/articles/create-attractive-web-typography-with-css3-and-lettering-js/">Create Attractive Web Typography with CSS3 and Lettering.js</a></h4>
<p><a href="http://webexpedition18.com/articles/create-attractive-web-typography-with-css3-and-lettering-js/"><img src="http://spyrestudios.com/wp-content/uploads/156.jpg" /></a></p>
<h4><a href="http://www.webdevtuts.net/photoshop-2/part-1-create-a-beautiful-contact-form-from-scratch-using-photoshop-html-and-css/">Part 1: Create a beautiful contact form from scratch using Photoshop, HTML, and CSS</a></h4>
<p><a href="http://www.webdevtuts.net/photoshop-2/part-1-create-a-beautiful-contact-form-from-scratch-using-photoshop-html-and-css/"><img src="http://spyrestudios.com/wp-content/uploads/166.jpg" /></a></p>
<h4><a href="http://www.tutorialshock.com/tutorials/fancy-css3-boxes/">Advanced (yet awesome) pure CSS3 boxes without using images</a></h4>
<p><a href="http://www.tutorialshock.com/tutorials/fancy-css3-boxes/"><img src="http://spyrestudios.com/wp-content/uploads/176.jpg" /></a></p>
<h4><a href="http://www.zenelements.com/blog/css3-transition/">CSS3 Transition</a></h4>
<p><a href="http://www.zenelements.com/blog/css3-transition/"><img src="http://spyrestudios.com/wp-content/uploads/186.jpg" /></a></p>
<h4><a href="http://net.tutsplus.com/articles/news/create-a-sticky-note-effect-in-5-easy-steps-with-css3-and-html5/">Create a Sticky Note Effect in 5 Easy Steps with CSS3 and HTML5 </a></h4>
<p><a href="http://net.tutsplus.com/articles/news/create-a-sticky-note-effect-in-5-easy-steps-with-css3-and-html5/"><img src="http://spyrestudios.com/wp-content/uploads/196.jpg" /></a></p>
<h4><a href="http://blog.echoenduring.com/2010/05/13/create-beautiful-css3-typography/">Create Beautiful CSS3 Typography</a></h4>
<p><a href="http://blog.echoenduring.com/2010/05/13/create-beautiful-css3-typography/"><img src="http://spyrestudios.com/wp-content/uploads/206.jpg" /></a></p>
<div class="snap_nopreview sharing robots-nocontent">
<ul>
<li class="share-facebook share-regular">
<div class="like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fspyrestudios.com%2F20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder%2F&amp;layout=button_count&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;height=21&amp;width=90" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:96px; height:21px;" allowTransparency="true"></iframe></div>
</li>
<li class="share-twitter share-regular">
<div class="twitter_button"><iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fspyrestudios.com%2F20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder%2F&amp;counturl=http%3A%2F%2Fspyrestudios.com%2F20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder%2F&amp;count=horizontal&amp;text=20%20Tutorials%20That%20Will%20Improve%20Your%20CSS%20Skills%20and%20Make%20You%20a%20Better%20Coder: " style="width:97px; height:20px;"></iframe></div>
</li>
<li class="share-custom"><a href="#" class="sharing-anchor">Share</a></li>
<li class="share-end"></li>
</ul>
<div class="sharing-hidden">
<div class="inner" style="display: none;">
<ul>
<li class="share-email"><a rel="nofollow" class="share-email share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=email" target="_blank" title="Click to email this to a friend">Email</a></li>
<li class="share-reddit"><a rel="nofollow" class="share-reddit share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=reddit" target="_blank" title="Click to share on Reddit">Reddit</a></li>
<li class="share-end"></li>
<li class="share-print"><a rel="nofollow" class="share-print share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/#print" target="_blank" title="Click to print">Print</a></li>
<li class="share-stumbleupon">
<div class="stumbleupon_button"><iframe src="http://www.stumbleupon.com/badge/embed/1/?url=http%3A%2F%2Fspyrestudios.com%2F20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder%2F&amp;title=20+Tutorials+That+Will+Improve+Your+CSS+Skills+and+Make+You+a+Better+Coder" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:74px; height: 18px;" allowTransparency="true"></iframe></div>
</li>
<li class="share-end"></li>
<li class="share-digg"><a rel="nofollow" class="share-digg share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=digg" target="_blank" title="Click to Digg this post">Digg</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/deliciousup16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300650242" target="_blank" title="Click to share">Delicious</a></li>
<li class="share-end"></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/google-buzz-16x16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300650370" target="_blank" title="Click to share">Google Buzz</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/yahoo-buzz-16x16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300650306" target="_blank" title="Click to share">Yahoo Buzz</a></li>
<li class="share-end"></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/tumblr16.png) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300650455" target="_blank" title="Click to share">Tumblr</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/designbumpicon.jpg) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300919375" target="_blank" title="Click to share">DesignBump</a></li>
<li class="share-end"></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/designfloaticon.jpg) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300919353" target="_blank" title="Click to share">DesignFloat</a></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/thewebblendicon.jpg) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300919395" target="_blank" title="Click to share">TheWebBlend</a></li>
<li class="share-end"></li>
<li class="share-custom"><a rel="nofollow" style="background:url(http://spyrestudios.com/wp-content/uploads/2011/03/dzoneicon.jpg) no-repeat center left;" class="share-custom share-icon" href="http://spyrestudios.com/20-tutorials-that-will-improve-your-css-skills-and-make-you-a-better-coder/?share=custom-1300919412" target="_blank" title="Click to share">Dzone</a></li>
<li class="share-end"></li>
</ul>
</div>
</div>
<div class="sharing-clear"></div>
</div>
<p>				<br/> </p>
]]></content:encoded>
			<wfw:commentRss>http://nelson3.com/wpblog/?feed=rss2&#038;p=5</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

