<?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>Design Woop &#124; The Web Design and Development Blog &#187; HTML</title>
	<atom:link href="http://designwoop.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://designwoop.com</link>
	<description>The Web design blog brought to you by David Martin</description>
	<lastBuildDate>Mon, 21 May 2012 07:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Tutorial: Create A Minimal Single Page Portfolio With HTML5/CSS3</title>
		<link>http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/</link>
		<comments>http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 08:00:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Minimal]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/</guid>
		<description><![CDATA[This tutorial is the second installment of how to create a minimal single page portfolio using HTML5 and CSS3, take a look at part one where I initially <a title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" href="http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/">designed the single page portfolio concept</a>. In this tutorial I will walk you through the basic front-end build and what resources I used to rapidly build the page.]]></description>
			<content:encoded><![CDATA[<p>This tutorial is the second installment of how to create a minimal single page portfolio using HTML5 and CSS3, take a look at part one where I initially <a rel="nofollow" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" href="http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/">designed the single page portfolio concept</a>. In this tutorial I will walk you through the basic front-end build and what resources I used to rapidly build the page.</p>
<h3>The Design</h3>
<p><img class="alignnone size-large wp-image-7440" title="David Martin - A Web Designer &amp; Developer - Tunbridge Wells, Kent._1325439810610" src="http://turbo.designwoop.com/uploads/2012/02/David-Martin-A-Web-Designer-Developer-Tunbridge-Wells-Kent._1325439810610-580x721.png" alt="" width="580" height="721" /></p>
<h3>Resources Used</h3>
<p><a rel="nofollow" href="http://www.fontsquirrel.com/fonts/TitilliumText" target="_blank">Titillium Text</a> &#8211; Using @font-face for heading typography.</p>
<p><a rel="nofollow" href="http://dev7studios.com/portfolio/form-producer/" target="_blank">Form Producer</a> &#8211; Used for basic form demo.</p>
<p><a rel="nofollow" href="http://www.premiumpixels.com/freebies/apple-ios-linen-texture/" target="_blank">Apple iOS Linen Texture</a> &#8211; Used for the background texture.</p>
<p><a rel="nofollow" href="http://lab.tylergaw.com/jribbble/" target="_blank">Jribbble</a> &#8211; A jQuery plugin to pull in some dribbble shots.</p>
<p><a rel="nofollow" href="http://html5boilerplate.com/" target="_blank">HTML5 Boilerplate</a> &#8211; A HTML5 framework to build our design on.</p>
<p><a rel="nofollow" href="http://960.gs/" target="_blank">960 Grid System</a> &#8211; A CSS framework to provide pixel perfect from design to code.</p>
<h3>Basic HTML5 Layout</h3>
<p>Our basic layout section starts with the HTML5 doctype and the usual stuff such as the title/meta tags and the CSS links to two stylesheets. One is the 960 grid frame work which will allow me to quickly and easily code up the site from my previous design, the other stylesheet is where I place the styles for the page. I have kept these separate for demonstration purposes. I lastly use the HTML5 Autocorrect form attribute in the message text area, this is again useful for mobile users who may have fat or clumsy fingers ;).</p>
<pre class="brush: php; title: ; notranslate">

&lt;!doctype html&gt;
&lt;head&gt;
  &lt;meta charset=&quot;utf-8&quot;&gt;
  &lt;title&gt;David Martin - A Web Designer &amp;amp; Developer - Tunbridge Wells, Kent.&lt;/title&gt;
	  &lt;meta name=&quot;description&quot; content=&quot;David Martin - Web Design Tunbridge Wells&quot;&gt;
	  &lt;meta name=&quot;author&quot; content=&quot;David Martin @webadelic&quot;&gt;
	  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt;
	  &lt;link rel=&quot;stylesheet&quot; href=&quot;css/grid/960_12_col.css&quot;&gt;
	  &lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot;&gt;
&lt;/head&gt;
&lt;body&gt;
</pre>
<h3>Header</h3>
<p>The page concept is pretty simply so semantically dividing the sections up is easy. I use HTML5 elements such as &lt;header&gt; to markup the intro block as this is the introduction to the section and &lt;hrgroup&gt; to markup the intro text for the current section.</p>
<pre class="brush: php; title: ; notranslate">
  &lt;div id=&quot;header-line&quot;&gt;&lt;/div&gt;

  &lt;div class=&quot;container_12&quot;&gt;

  	&lt;header&gt;

		&lt;div class=&quot;grid_3 push_1&quot;&gt;

			&lt;img src=&quot;img/webadelic-logo.png&quot; alt=&quot;Webadelic - Web Design Tunbridge Wells&quot; border=&quot;0&quot; width=&quot;140&quot; height=&quot;94&quot; /&gt;

		&lt;/div&gt;

		&lt;hgroup class=&quot;grid_7 push_1 intro&quot;&gt;

			&lt;h1&gt;Hello! My name is David!&lt;/h1&gt;

			&lt;h2&gt;A web developer &amp;amp; designer from Tunbridge Wells, UK.&lt;/h2&gt;

		&lt;hgroup&gt;

    &lt;/header&gt;

    &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</pre>
<h3>Body</h3>
<p>I group the body contents of the page using the HTML5 elements &lt;section&gt; and &lt;article&gt;. I use the &lt;section&gt; element to group the small &#8216;About&#8217; left column and the right side &#8216;Contact&#8217; form.</p>
<p>Notice I also nest both the left and right columns using the &lt;article&gt; element. I used the &lt;article&gt; element to markup the left and right content areas as two separate pieces of content inside the main &lt;section&gt; element.</p>
<p>When constructing the form you can see I was able to use some new HTML5 form elements to improve the form functionality. Notice for the text inputs I use the Placeholder attribute, this displays text in the field until the field is focused.</p>
<p>A useful HTML5 form attribute is Auto capitalization, this is useful for mobile users who may not want their phones to add capital letters to their email fields.</p>
<p>I lastly used the HTML5 form attribute Autocorrect on the message textarea to help mobile users who may have clumsy fingers ;).</p>
<p>There are more HTML5 form elements you could add to this form, but for now this is simply a demo.  I would recommend also using the Required attribute to improve your form validation. Have a play around and enjoy!</p>
<p>The Dribbble shot feed is pulled in using the jQuery plugin, for now I simply add &lt;ul id=&#8221;feed&#8221;&gt;&lt;/ul&gt; to the page, this is where the feed will be pulled in. There are some configuration options you will need to amend in the plugin, you can <a rel="nofollow" href="https://github.com/tylergaw/jribbble/blob/master/README.md" target="_blank">read up on this here</a> or simply view the demo.</p>
<pre class="brush: php; title: ; notranslate">

   &lt;div id=&quot;horizontal-line-full&quot;  class=&quot;push_1&quot;&gt;&lt;/div&gt;

		&lt;div id=&quot;main&quot; role=&quot;main&quot; class=&quot;grid_10 push_1&quot;&gt;
			&lt;section&gt;

				&lt;article class=&quot;grid_4 about&quot;&gt;

					&lt;header&gt;

						&lt;h3&gt;About&lt;/h3&gt;

					&lt;/header&gt;

					&lt;p&gt;Maurizzle tellivizzle nibh bling bling for sure. Ghetto izzle sheezy. Pellentesque yo mamma rhoncus owned. Gangster hac nizzle platea dictumst.&lt;/p&gt;

					&lt;p&gt;Maurizzle tellivizzle nibh bling bling for sure. Ghetto izzle sheezy. Pellentesque yo mamma rhoncus owned. Gangster hac nizzle platea dictumst.&lt;/p&gt;

					&lt;p&gt;Maurizzle tellivizzle nibh bling bling for sure. Ghetto izzle sheezy. Pellentesque yo mamma rhoncus owned. Gangster hac nizzle platea dictumst.&lt;/p&gt;

				&lt;/article&gt;

			&lt;/section&gt;

				&lt;div class=&quot;grid_2 column&quot;&gt;&lt;/div&gt;

			&lt;section&gt;

				&lt;article class=&quot;grid_4 contact&quot;&gt;

					&lt;header&gt;

						&lt;h3&gt;Contact&lt;/h3&gt;

					&lt;/header&gt;

							&lt;section class=&quot;contact-me&quot;&gt;

								&lt;label for=&quot;name&quot;&gt;Name&lt;/label&gt;
								&lt;input type=&quot;text&quot; name=&quot;name&quot; id=&quot;name&quot; placeholder=&quot;Your name&quot; autocapitalize=&quot;on&quot; autocorrect=&quot;on&quot; /&gt;

								&lt;label for=&quot;email&quot;&gt;Email&lt;/label&gt;
								&lt;input type=&quot;email&quot; name=&quot;email&quot; id=&quot;email&quot; placeholder=&quot;Your email&quot; autocapitalize=&quot;off&quot; autocorrect=&quot;on&quot; /&gt;

								&lt;label for=&quot;website&quot;&gt;Message&lt;/label&gt;
								&lt;textarea name=&quot;message&quot; id=&quot;message&quot; placeholder=&quot;Your message&quot; autocorrect=&quot;on&quot;&gt;&lt;/textarea&gt;

								&lt;button class=&quot;button&quot; name=&quot;submit&quot; id=&quot;submit&quot;&gt;Send&lt;/button&gt;

							&lt;/section&gt;

						&lt;/form&gt;

				&lt;/article&gt;

			&lt;/section&gt;

			&lt;section&gt;

				&lt;article class=&quot;grid_10 projects&quot;&gt;

						&lt;header&gt;

							&lt;h3&gt;Projects&lt;/h3&gt;

						&lt;/header&gt;

						&lt;p&gt;You can check out some of the designs I am working on which are being fed from my &lt;a href=&quot;http://dribbble.com/webadelic&quot; rel=&quot;nofollow&quot;&gt;Dribbble feed&lt;/a&gt;, one day when I have some spare time I’ll develop this site a little further to actually show some full project details...&lt;em&gt;I promise&lt;/em&gt;.&lt;/p&gt;

						&lt;ul id=&quot;feed&quot;&gt;&lt;/ul&gt;

				&lt;/article&gt;

			&lt;/section&gt;
</pre>
<h3>Footer</h3>
<p>I can once again use more HTML5 elements to semantically divide the footer section up,  I first wrap the entire footer with the &lt;footer&gt; attribute.</p>
<p>The &lt;footer&gt; attribute can be used at the end of documents and sections and typically are used to provide the author information or other miscellaneous text.</p>
<p>Inside the &lt;footer&gt; attribute I divide the left and right links into two separate sections using &lt;section&gt;, this allows me to separate the grouping of content in more semantic way.</p>
<pre class="brush: php; title: ; notranslate">

    &lt;footer class=&quot;grid_10 footer&quot;&gt;

    	&lt;section id=&quot;social-procrastination&quot; class=&quot;grid_6&quot;&gt;

    		&lt;ul&gt;
    			&lt;li id=&quot;twitter&quot;&gt;
    				&lt;a href=&quot;http://twitter.com/#!webadelic&quot; rel=&quot;nofollow&quot; title=&quot;David Martin (@webadelic) on Twitter&quot;&gt;
						&lt;span&gt;David Martin (@webadelic) on Twitter&lt;/span&gt;
					&lt;/a&gt;
    			&lt;/li&gt;
    			&lt;li id=&quot;gplus&quot;&gt;
	    			&lt;a href=&quot;https://plus.google.com/108725634593324907312/posts&quot; rel=&quot;nofollow&quot;&gt;
	    				&lt;span&gt;David Martin (@webadelic) on Google Plus&lt;/span&gt;
	    			&lt;/a&gt;
    			&lt;/li&gt;
 				&lt;li id=&quot;dribbble&quot;&gt;
 					&lt;a href=&quot;http://dribbble.com/webadelic&quot; rel=&quot;nofollow&quot;&gt;
 						&lt;span&gt;David Martin (@webadelic) on Dribbble&lt;/span&gt;
 					&lt;/a&gt;
 				&lt;/li&gt;
    		&lt;/ul&gt;

    	&lt;/section&gt;

    	&lt;section id=&quot;footer-email&quot; class=&quot;grid_2 push_2&quot;&gt;

    		&lt;p&gt;&lt;a href=&quot;mailto:david@webadelic.co.uk&quot; rel=&quot;nofollow&quot;&gt;david@webadelic.co.uk&lt;/a&gt;&lt;/p&gt;

    	&lt;/section&gt;

    &lt;/footer&gt;

  &lt;/div&gt; &lt;!-- end of #container --&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<h3>Using CSS</h3>
<p>Now we have created the basic HTML5 layout, we are ready to add the CSS. Here I will walk you through a <strong>few basics of the CSS I used</strong> to code up the design. To see the full CSS I used to achieve the exact layout <a rel="nofollow" href="http://designwoop.com/labs/portfolio/" target="_blank">view the demo</a> and have a snoop around.</p>
<p>I use the 960.gs grid with some custom styles in order to match the site with the design, if you take a look at the source code you will see my references to the grid columns in the code, a good write up on <a rel="nofollow" href="http://sixrevisions.com/web_design/the-960-grid-system-made-easy/" target="_blank">using the 960 grid</a> is available from Six Revisions. If you would like to explore the CSS code better, its all available in the demo.</p>
<p><em>Before I add the CSS:</em></p>
<p><a rel="nofollow" href="http://turbo.designwoop.com/uploads/2012/02/nocss.png"><img class="alignnone size-large wp-image-7441" title="nocss" src="http://turbo.designwoop.com/uploads/2012/02/nocss-580x787.png" alt="" width="580" height="787" /></a></p>
<h3>Header</h3>
<p>First off I am setting the background texture to the downloaded and modified <a rel="nofollow" href="http://www.premiumpixels.com/freebies/apple-ios-linen-texture/" target="_blank">Apple iOS Linen Texture</a>. Next I am setting the body fonts, I want the fonts to show as Helvetica Neue if possible but if this font is not available I will roll back to either Helvetica or Arial respectively.</p>
<pre class="brush: php; title: ; notranslate">
body {
margin: 0;
background-image: url(../img/bg.png);
font: 11px/20px &quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif;
line-height: 1.231;
}
</pre>
<h3>Heading Fonts</h3>
<p>As stated I wanted to use Titillium text on the heading fonts, as the font is available in various different formats and is font-face compatible I can use @font-face. I download the fonts and place them in a folder in the site directory and call them using the below @font-face code:</p>
<pre class="brush: php; title: ; notranslate">&lt;/pre&gt;
&lt;pre id=&quot;line1&quot;&gt;h1 {font: 35px/15px 'TitilliumText22LXBold', Arial, sans-serif;letter-spacing: 2px;}
h2 {font: 20px/15px 'TitilliumText22LThin', Arial, sans-serif;letter-spacing: 1px; 	color:#8a8989;}
h3 {font: 28px/15px 'TitilliumText22LThin', Arial, sans-serif;letter-spacing: 1px;}
p{color:#8a8989;}

@font-face {
    font-family: 'TitilliumText22LThin';
    src: url('../fonts/TitilliumText22L001-webfont.eot');
    src: url('../fonts/TitilliumText22L001-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L001-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L001-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L001-webfont.svg#TitilliumText22LThin') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TitilliumText22LRegular';
    src: url('../fonts/TitilliumText22L003-webfont.eot');
    src: url('../fonts/TitilliumText22L003-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L003-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L003-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L003-webfont.svg#TitilliumText22LRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TitilliumText22LBold';
    src: url('../fonts/TitilliumText22L005-webfont.eot');
    src: url('../fonts/TitilliumText22L005-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L005-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L005-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L005-webfont.svg#TitilliumText22LBold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TitilliumText22LXBold';
    src: url('../fonts/TitilliumText22L006-webfont.eot');
    src: url('../fonts/TitilliumText22L006-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L006-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L006-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L006-webfont.svg#TitilliumText22LXBold') format('svg');
    font-weight: normal;
    font-style: normal;

}
</pre>
<h3>Form</h3>
<p>Styling the form allows me to use some nice CSS3 effects to match up with the design without having to use images.</p>
<p>I use the following CSS3 to achieve an indented effect on the form inputs, I think this is a pleasant and simple way of making the form inputs. I achieve the indented textfield using the CSS box shadow technique and using a -1px black line:  0 -1px 0 0px which has its opacity set to 0.1: rgba(0,0,0,0.1). <em>See below</em>:</p>
<pre class="brush: php; title: ; notranslate">
   -moz-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
   -webkit-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
   box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
</pre>
<p><strong>The Complete Form CSS</strong></p>
<pre class="brush: php; title: ; notranslate">&lt;/pre&gt;
&lt;pre id=&quot;line1&quot;&gt;/* Contact Form */

 label {
 	margin: 0 0 10px 0;
 	display: block;
 	font-weight: normal;
 }

 .error{color:red;}

 #form_producer input[type=&quot;text&quot;], .contact-me input[type=&quot;email&quot;] {
	float:left;
	clear:both;
	margin:0 0 15px 0;
	padding:3px 6px;
	width:300px;
	height:24px;
	border:none;
	color:#8a8989;
	background:#f9f9f9;
		-moz-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		-webkit-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
 }

 #form_producer textarea{
 	float:left;
 	clear:both;
 	margin:0 0 15px 0;
 	padding:3px;
 	width:305px;
 	height:90px;
 	border:none;
 	color:#8a8989;
	background:#f9f9f9;
		-moz-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		-webkit-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
 }

 .button{
 	float:left;
	clear:both;
	background-color:#ebe9e9;
	border:solid 1px #ebe9e9;
	width:140px;
	height:30px;
	text-transform:uppercase;
	font-size: 0.9em;
	letter-spacing:1px;
		background-image: linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -o-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -moz-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -webkit-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -ms-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);

		background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			color-stop(0.5, rgb(241,241,241)),
			color-stop(0.5, rgb(235,233,233))
		);
 }

 	.button:hover{
 		opacity: 0.8;
 	}

 		.button:active{
 			opacity: 0.4;
 		}
</pre>
<h3>The Dribbble Feed</h3>
<p>The dribbble shot feed is styled using some simple CSS to remove the list bullets and to get each image to sit next to the next correctly. <em>See below:</em></p>
<pre class="brush: php; title: ; notranslate">
ul#feed{
list-style-type: none;
margin: 60px 0;
padding: 0;
}

#feed li{
float: left;
margin: 0 45px 45px 0;
padding:5px;
width: 200px;
height: 150px;
border: solid 1px #dedbdb;
background: #fff;
}
</pre>
<h3>Footer</h3>
<p>To give the social icons a little hover effect, we can use the CSS3 opacity attribute. When a user hovers over, the opacity is changed to o.8.</p>
<pre class="brush: php; title: ; notranslate">

#twitter a:hover, #gplus a:hover, #dribbble a:hover{
opacity:0.8;
}
</pre>
<p><strong>Demo:</strong> <a rel="nofollow" href="http://designwoop.com/labs/portfolio/" target="_blank">View the demo &#8211; Single Page HTML5 Portfolio</a></p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>30 Great Examples Of HTML5 In Web Design</title>
		<link>http://designwoop.com/2011/08/30-great-examples-of-html5-in-web-design/</link>
		<comments>http://designwoop.com/2011/08/30-great-examples-of-html5-in-web-design/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 07:30:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[showcase]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=5178</guid>
		<description><![CDATA[It is great seeing so many new and existing websites embracing HTML5, however HTML5 is still in its infant stages and we are really only scratching the surface of what can be done, take a look at the 30 HTML5 sites I have added in from my bookmark list and dissect their source!]]></description>
			<content:encoded><![CDATA[<p>It is great seeing so many new and existing websites embracing HTML5, with HTML5 comes a ton of new features available to web developers allowing for cleaner and more powerful code, which essentially is there to benefit the end user. HTML5 is still in its infant stages and we are really only scratching the surface of what can be done, take a look at the 30 HTML5 sites I have added in from my bookmark list and dissect their source!</p>
<h3><a rel="nofollow" href="http://robedwards.org/" target="_blank">Rob Edwards</a></h3>
<p><img class="alignnone size-medium wp-image-5230" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/ROBEDWARDS.ORG-Web-Graphic-Design_1311587604616-428x283.png" alt="30 Great Examples Of HTML5 In Web Design" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://rockstarworking.com/" target="_blank">Rockstar Working</a></h3>
<p><img class="alignnone size-medium wp-image-5214" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Personal-portfolio-of-Ahmad-Ali-Web-Designer-Front-end-Developer_1311337156016-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://www.thisisbliss.com/" target="_blank">This is Bliss</a></h3>
<p><img class="alignnone size-medium wp-image-5213" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/BLISS-Manchester-Website-design-mobile-development_1311337541916-428x279.png" alt="" width="428" height="279" /></p>
<h3><a rel="nofollow" href="http://chillysheep.co.uk/" target="_blank">Chilly </a><a rel="nofollow" href="http://chillysheep.co.uk/" target="_blank">Sheep</a></h3>
<p><img title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Coventry-and-Warwickshire-Web-Design_1311337582134-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://www.goup.it/#goup" target="_blank">Goup</a></h3>
<p><img class="alignnone size-medium wp-image-5211" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/GO%E2%80%A2UP-Communication_1311337631116-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://symb.ly/" target="_blank">Symb</a></h3>
<p><img class="alignnone size-medium wp-image-5210" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Symb.ly-Creating-the-biggest-set-of-mono-glyph-symbol-icons_1311337729793-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://facturandum.com/" target="_blank">Facturandum</a></h3>
<p><img class="alignnone size-medium wp-image-5209" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/facturandum-Online-Invoicing-System-Billing-Software_1311337823056-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://apollonet.fr/" target="_blank">Apollonet</a></h3>
<p><img class="alignnone size-medium wp-image-5208" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/D%C3%A9veloppement-Web-Drupal-et-Int%C3%A9gration-%E2%98%85-ApolloNet-%E2%98%85_1311337858890-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://wantist.com/" target="_blank">Wantist</a></h3>
<p><img class="alignnone size-medium wp-image-5194" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Wantist-A-curated-collection-of-gift-ideas._1311339421063-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://sublimevideo.net/" target="_blank">Sublime Video</a></h3>
<p><img class="alignnone size-medium wp-image-5206" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/SublimeVideo-HTML5-Video-Player_1311337977087-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://gorgias.nu/" target="_blank">Arjan Jonker</a></h3>
<p><img class="alignnone size-medium wp-image-5205" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Gorgias.nu-Arjan-Jonker-tekstschrijver_1311338144394-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://www.jonathan-krause.de/" target="_blank">Jonathan Krause</a></h3>
<p><img class="alignnone size-medium wp-image-5204" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Jonathan-Krause-Webdesign-Frontendentwicklung-aus-Oberfranken_1311338190412-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://waratsuyoshi.jp/" target="_blank">Waratsuyoshi</a></h3>
<p><img class="alignnone size-medium wp-image-5203" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/waratsuyoshi.jp_1311338247118-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://www.culturalsolutions.co.uk/" target="_blank">Cultural Solutions</a></h3>
<p><img class="alignnone size-medium wp-image-5202" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/cultural-solutions-uk-I-Lincolnshire-based-cultural-consultancy-I-research-planning-events-management-services_1311338345248-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://austinknight.net/" target="_blank">Austin Knight</a></h3>
<p><img class="alignnone size-medium wp-image-5201" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Austin-Knight_1311338472249-428x274.png" alt="" width="428" height="274" /></p>
<h3><a rel="nofollow" href="http://www.labelsandlabeling.com/" target="_blank">Labels and Labeling</a></h3>
<p><img class="alignnone size-medium wp-image-5200" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Labels-and-Labeling-the-wider-world-of-narrow-web-Labels-and-Labeling_1311338533445-428x274.png" alt="" width="428" height="274" /></p>
<h3><a rel="nofollow" href="http://freefaces.simonfosterdesign.com/index.html" target="_blank">Free Faces</a></h3>
<p><img class="alignnone size-medium wp-image-5199" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Free-Faces_1311338674438-428x274.png" alt="" width="428" height="274" /></p>
<h3><a rel="nofollow" href="http://www.matiasmancini.com.ar/" target="_blank">Matias Mancini</a></h3>
<p><img class="alignnone size-medium wp-image-5221" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Matias-Mancini-Desarrollo-Web-Dise%C3%B1o-Web-en-Buenos-Aires-Dise%C3%B1o-Web-en-Argentina-Desarrollador-Web-PHP-OOP-en-Buenos-Aires-Matias-Mancini-Buenos-Aires-Argentina_1311577424782-428x403.png" alt="" width="428" height="403" /></p>
<h3><a rel="nofollow" href="http://stormen.nu/" target="_blank">Stormen</a></h3>
<p><img class="alignnone size-medium wp-image-5198" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Stormen-kommunikation_1311338802393-428x274.png" alt="" width="428" height="274" /></p>
<h3><a rel="nofollow" href="http://www.learnsomethingeveryday.co.uk/" target="_blank">Learn Something Every Day</a></h3>
<p><img class="alignnone size-medium wp-image-5222" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Elephants-walk-on-their-tip-toes-Learn-Something-Every-Day_1311577656757-428x399.png" alt="" width="428" height="399" /></p>
<h3><a rel="nofollow" href="http://www.fullfathomdesign.com/" target="_blank">Full Fathom Design</a></h3>
<p><img class="alignnone size-medium wp-image-5197" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Full-Fathom-Design_1311339207243-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://nihongoup.com/japan-quake-2011/" target="_blank">Great Tohoku</a></h3>
<p><img class="alignnone size-medium wp-image-5196" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Great-Tohoku-earthquake-Sendai-Japan_1311339363217-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://quentind.be/" target="_blank">Quentin De Smedt</a></h3>
<p><img class="alignnone size-medium wp-image-5195" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Int%C3%A9grateur-web-et-d%C3%A9veloppeur-web-Bruxelles-%E2%80%A2-Quentin-De-Smedt_1311339377926-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://wantist.com/" target="_blank">Wantist </a></h3>
<p><img class="alignnone size-medium wp-image-5207" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Wantist-A-curated-collection-of-gift-ideas._1311337926618-428x283.png" alt="" width="428" height="283" /></p>
<h3><a rel="nofollow" href="http://www.sushimonstr.com/" target="_blank">Sushimonstr </a></h3>
<p><img class="alignnone size-medium wp-image-5223" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Sushimonstr-%E2%80%94-Informative-Hoot-by-TJ-Dhillon_1311578045469-428x403.png" alt="" width="428" height="403" /></p>
<h3><a rel="nofollow" href="http://twohoot.com/" target="_blank">Hoot Hoot</a></h3>
<p><img class="alignnone size-medium wp-image-5220" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Hoot-Hoot-Studio_1311575576504-428x412.png" alt="" width="428" height="412" /></p>
<h3><a rel="nofollow" href="http://mustachewax.co.uk/" target="_blank">Mustache Wax</a></h3>
<p><img class="alignnone size-medium wp-image-5219" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Mustache-Wax-Natural-Moustache-Wax-Combs-by-Baldy_1311575668852-428x407.png" alt="" width="428" height="407" /></p>
<h3><a rel="nofollow" href="http://www.theroomweb.com/" target="_blank">the Room</a></h3>
<p><img class="alignnone size-medium wp-image-5218" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/the-Room-web-agency-in-London_1311575740116-428x412.png" alt="" width="428" height="412" /></p>
<h3><a rel="nofollow" href="http://www.forefathersgroup.com " target="_blank">Forefathers</a></h3>
<p><img class="alignnone size-medium wp-image-5217" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Forefathers-Group-The-New-Design-Frontier_1311575827860-428x403.png" alt="" width="428" height="403" /></p>
<h3><a rel="nofollow" href="http://forgottenpresidents.com/" target="_blank">Forgotten Presidents</a></h3>
<p><img class="alignnone size-medium wp-image-5216" title="30 Great Examples Of HTML5 In Web Design" src="http://turbo.designwoop.com/uploads/2011/08/Forgotten-Presidents-A-Demonstration-in-Disaster-Recovery-and-Responsive-Web-Design_1311576022141-428x403.png" alt="" width="428" height="403" /></p>
<p>If you have a HTML5 powered site or know of more that should be featured drop a comment and I will update the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2011/08/30-great-examples-of-html5-in-web-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Give Your Website A Custom iPhone Icon With/Without The Gloss Effect</title>
		<link>http://designwoop.com/2010/05/give-your-website-a-custom-iphone-icon-withwithout-the-gloss-effect/</link>
		<comments>http://designwoop.com/2010/05/give-your-website-a-custom-iphone-icon-withwithout-the-gloss-effect/#comments</comments>
		<pubDate>Tue, 25 May 2010 21:29:36 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=1780</guid>
		<description><![CDATA[What is becoming just as popular is to add a custom iPhone icon that will appear on your iPhone's Home Screen. This post will show you how to do this and how you can customise it so that it doesn't have the default gloss effect.]]></description>
			<content:encoded><![CDATA[<p>When creating a website, it is more common then not now that we will add a custom favicon that will display in the browser tab alongside the website page title, this is fairly simple in fact only one line of code as below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;link rel=&quot;icon&quot; href=&quot;/favicon.png&quot; type=&quot;image/vnd.microsoft.icon&quot; /&gt;
</pre>
<p>What is becoming just as popular is to add a custom iPhone icon that will appear on your iPhone&#8217;s Home Screen. Again this is very straight forward with one line of code in between your header tags, as shown below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;link rel=&quot;apple-touch-icon&quot; href=&quot;/iphone_icon.png&quot;/&gt;
</pre>
<p>If you use an image of anything around 50px by 50px in size that will be, as the iPhone will resize and round off the corners for you on the fly. To add your site to your Home Screen, simply visit the webpage on your iPhone, then select the <strong>plus</strong> sign, followed by <strong>Add to Home Screen</strong>. You will get a prompt now and your icon should show, to finish, simply click add. </p>
<p>You will now be taken to your Home Screen where the icon should now be appearing. Here is the example below for Design Woop:</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/05/photo-1.png" alt="" title="Normal Icon" width="320" height="480" class="alignnone size-full wp-image-1782" /></p>
<p>Now if your a picky sod like me, you will notice the horrible gloss effect that Apple adds to the icon by default. Until today I was using jQTouch to remove this until I came across <a href="http://developer.apple.com/safari/library/documentation/appleapplications/reference/safariwebcontent/ConfiguringWebApplications/ConfiguringWebApplications.html">this page on Apple.com</a> which brought my attention to the additional -precomposed option. This stops mobile Safari adding any effects to the icon which is just what I was after! The line of code we use for this is now:</p>
<pre class="brush: php; title: ; notranslate">
&lt;link rel=&quot;apple-touch-icon-precomposed&quot; href=&quot;/iphone_icon.png&quot;/&gt;
</pre>
<p>After refreshing the page and re-saving it to my iPhone Home Screen I was left with the much nicer&#8230;</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/05/photo-2.png" alt="" title="iPhone 2" width="320" height="480" class="alignnone size-full wp-image-1784" /></p>
<p>I hope you agree with me but I think the no gloss icons are nicer!</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2010/05/give-your-website-a-custom-iphone-icon-withwithout-the-gloss-effect/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Show me whatcha got! HTML 5 vs. Flash Showcase</title>
		<link>http://designwoop.com/2010/04/show-me-whatcha-got-html-5-vs-flash-showcase/</link>
		<comments>http://designwoop.com/2010/04/show-me-whatcha-got-html-5-vs-flash-showcase/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 20:20:24 +0000</pubDate>
		<dc:creator>Karen Myers</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[showcase]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=1591</guid>
		<description><![CDATA["HTML 5 vs. Flash" topic has been actively discussed in the global web dev circles lately. Apple devices don’t support Flash and this adds the fuel to the discussion fire. And while the advocates of the Open Standards are prophesying the near end of Flash, Adobe Flash fans are desperately defending their platform.]]></description>
			<content:encoded><![CDATA[<p>&#8220;HTML 5 vs. Flash&#8221; topic has been actively discussed in the global web dev circles lately. Apple devices don’t support Flash and this adds the fuel to the discussion fire. And while the advocates of the Open Standards are prophesying the near end of Flash, Adobe Flash fans are desperately defending their platform.</p>
<p>We decided to stay dispassionate and take a look at the current achievements of both platforms. In this post you can find a showcase of some well-designed websites that implement HTML 5 and Flash features at their best. This is by no means an attempt to put any of the platforms in a favorable light, but an endeavor to see what advantages each of them is actually able to deliver to the end-user at this stage.<br />
Hopefully, the following collection will highlight the benefits of HTML 5 and Flash to you and give you some visual inspiration for your own projects as well.</p>
<h3>Websites built with HTML 5</h3>
<h4><a rel="nofollow" href="http://eyestylesllc.com/" rel="nofollow">Eye Styles</a></h4>
<p>Unique eyewear shop Eye Styles from Portland, Oregon shows wonderful rollover effects implemented by means of HTML 5. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_1.jpg" alt="Eye Styles" title="Eye Styles" width="428" height="258" class="alignnone size-full wp-image-1600" /></p>
<h4><a rel="nofollow" href="http://clearideaz.com/" rel="nofollow">Clearideaz</a></h4>
<p>This is a personal portfolio of French designer Olivier Gorzalka. Very good markup can be observed on this site which is powered by WordPress, by the way.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_2.jpg" alt="Clearideaz" title="Clearideaz" width="428" height="269" class="alignnone size-full wp-image-1601" /></p>
<h4><a rel="nofollow" href="http://www.iamjamie.co.uk/" rel="nofollow">Jamie Wright</a></h4>
<p>By viewing the portfolio of the British web designer Jamie Wright in Google Chrome or Safari 4.0 you will be able to enjoy this vivid and colorful website to the fullest. The latest version of Firefox reveals the roughness of typography, while Opera breaks the text positioning altogether.</p>
<p><a rel="nofollow" href="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_3.jpg"><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_3.jpg" alt="Jamie Wright" title="Jamie Wright" width="428" height="276" class="alignnone size-full wp-image-1602" /></a></p>
<h4><a rel="nofollow" href="http://catcubed.com/" rel="nofollow">CatCubed</a></h4>
<p>Unlike the previous website, Colin Fahrion’s HTML 5 powered personal blog feels best in Firefox 3.6 and Google Chrome.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_4.jpg" alt="CatCubed" title="CatCubed" width="428" height="425" class="alignnone size-full wp-image-1603" /></p>
<h4><a rel="nofollow" href="http://www.scoslow.com/" rel="nofollow">Shannen Coslow</a></h4>
<p>The portfolio of Pennsylvania-based designer Shannen Coslow is fully coded in HTML 5 and has an orderly structure and an beautiful, minimalist design.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_5.jpg" alt="Shannen Coslow" title="Shannen Coslow" width="428" height="372" class="alignnone size-full wp-image-1607" /></p>
<h4><a rel="nofollow" href="http://nathanstaines.com/" rel="nofollow">Nathan Staines</a></h4>
<p>The personal site of Starkers HTML5 theme developer Nathan Staines is simple and elegant. Besides a great implementing of HTML 5 markup it displays a stylish monochrome color-scheme with felicitous color inclusions.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_6.jpg" alt="Nathan Staines" title="Nathan Staines" width="428" height="305" class="alignnone size-full wp-image-1608" /></p>
<h4><a rel="nofollow" href="http://www.slimkiwi.com/" rel="nofollow">Slim Kiwi</a></h4>
<p>The site of the web studio Slim Kiwi has a unique and eye-catching design mostly due to the beautiful graphic elements used in it.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_7.jpg" alt="Slim Kiwi" title="Slim Kiwi" width="428" height="285" class="alignnone size-full wp-image-1609" /></p>
<h4><a rel="nofollow" href="http://www.go-on-web.com/" rel="nofollow">Go On Web</a></h4>
<p>French web design agency Go On Web created its website with HTML 5 and used some lovely little interaction features.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_8.jpg" alt="Go On Web" title="Go On Web" width="428" height="235" class="alignnone size-full wp-image-1610" /></p>
<h4><a rel="nofollow" href="http://www.sheepindisguise.com/" rel="nofollow">Sheep in Disguise</a></h4>
<p>Website of the web design and development studio Sheep in Disguise shows a neat layout and stylish typography, and of course, HTML 5 well using a number of the new structural elements.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_9-e1271871572941.jpg" alt="Sheep in Disguise" title="Sheep in Disguise" width="428" height="251" class="alignnone size-full wp-image-1611" /></p>
<h4><a rel="nofollow" href="http://www.nzfestival.nzpost.co.nz/" rel="nofollow">New Zealand International Art Festival</a></h4>
<p>Even though you can see some Flash components on this website, it still shows a solid implementation of new HTML standards and better browser accessibility might be a reason for the use of flash files here.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_10.jpg" alt="New Zealand International Art Festival" title="New Zealand International Art Festival" width="428" height="226" class="alignnone size-full wp-image-1612" /></p>
<h4><a rel="nofollow" href="http://cameronchamberlain.com/newsite/" rel="nofollow">Cameron Chamberlain</a></h4>
<p>In spite of being the most anticipated feature in HTML 5, video tag is still rare to see on live websites. Cameron Chamberlain’s personal site contains the new video element implemented using Video for Everybody.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_11.jpg" alt="Cameron Chamberlain" title="Cameron Chamberlain" width="428" height="253" class="alignnone size-full wp-image-1613" /></p>
<h4><a rel="nofollow" href="http://www.zoewithdots.com/" rel="nofollow">Zoe Ann Baker</a></h4>
<p>This website is clean and beautiful, big arrows pointing at post sections when you hover a mouse over menu categories are a nice touch.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_12.jpg" alt="Zoe Ann Baker" title="Zoe Ann Baker" width="428" height="333" class="alignnone size-full wp-image-1614" /></p>
<h4><a rel="nofollow" href="http://welove.02cst.com/" rel="nofollow">We love 02 SCT</a></h4>
<p>This website belongs to the community of graduate students of Jimei University (China), 2002 Computer Science and Technology.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_13.jpg" alt="We love 02 SCT" title="We love 02 SCT" width="428" height="389" class="alignnone size-full wp-image-1615" /></p>
<h4><a rel="nofollow" href="http://www.elladesign.com/" rel="nofollow">Ella Design</a></h4>
<p>This site shows a sleek use of HTML 5 and CSS 3, truly an eye-candy.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_14.jpg" alt="Ella Design" title="Ella Design" width="428" height="286" class="alignnone size-full wp-image-1616" /></p>
<h4><a rel="nofollow" href="http://narkoba.be/happy_love" rel="nofollow">Narkoba</a></h4>
<p>On Narkoba website you can find various audio samples, videos, snippets and other DJ music stuff. On a page Happy Love visitors can play with some audio and video elements which are quite fun despite being experimental. Thus, you can trigger audio loops directing the mouse at the white border rectangles and you can also launch video by typing “happy love” on the keyboard.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_15.jpg" alt="Narkoba" title="Narkoba" width="428" height="305" class="alignnone size-full wp-image-1617" /></p>
<h4><a rel="nofollow" href="http://9elements.com/io/projects/html5/canvas/" rel="nofollow">9elements.com Project</a></h4>
<p>This is  a sweet online experiment showing the great possibilities HTML 5 provides for audio &#038; canvas. It loads 100 tweets related to HTML5 and displays them using a javascript-based particle engine. Each particle represents a tweet – click on one of them and it’ll appear on the screen.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_16.jpg" alt="9elements.com Project" title="9elements.com Project" width="428" height="251" class="alignnone size-full wp-image-1631" /></p>
<h3>Flash Sites</h3>
<h4><a rel="nofollow" href="https://www.canv-as.com/" rel="nofollow">Canvas</a></h4>
<p>Canvas is a unique poster shopping website featuring an amazing user interaction process.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_17.jpg" alt="Canvas" title="Canvas" width="428" height="193" class="alignnone size-full wp-image-1632" /></p>
<h4><a rel="nofollow" href="http://www.bk.com/" rel="nofollow">Burger King</a></h4>
<p>Visitors of the Burger King website can literally customize it on the fly. Using three basic sliders you can control the subject area of the content to display. What a clever navigation solution!</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_18.jpg" alt="Burger King" title="Burger King" width="428" height="295" class="alignnone size-full wp-image-1633" /></p>
<h4><a rel="nofollow" href="http://www.pepperworks.pl/" rel="nofollow">PepperWorks</a></h4>
<p>Website of the Polish media agency PepperWorks is done in an elegant, minimalist style. Great use of high-quality photos and fast loading provide a pleasant browsing experience. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_19.jpg" alt="PepperWorks" title="PepperWorks" width="428" height="258" class="alignnone size-full wp-image-1618" /></p>
<h4><a rel="nofollow" href="http://www.shaunfynn.com/" rel="nofollow">Fynn</a></h4>
<p>Another example of uncluttered and usable Flash website design.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_20.jpg" alt="Fynn" title="Fynn" width="428" height="328" class="alignnone size-full wp-image-1619" /></p>
<h4><a rel="nofollow" href="http://mnatwork.com/" rel="nofollow">magneticNorth</a></h4>
<p>A creative navigation mechanism can be observed on magneticNorth website – a user can access the content drawing various shapes with the help of a mouse. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_21.jpg" alt="magneticNorth" title="magneticNorth" width="428" height="193" class="alignnone size-full wp-image-1620" /></p>
<h4><a rel="nofollow" href="http://www.simonds.com.au/" rel="nofollow">Simods Homes</a></h4>
<p>Flash can work well for business and the site of the Australian construction company Simonds Homes proves this. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_22.jpg" alt="Simods Homes" title="Simods Homes" width="428" height="299" class="alignnone size-full wp-image-1621" /></p>
<h4><a rel="nofollow" href="http://wereallfans.com/" rel="nofollow">We Are All Fans</a></h4>
<p>Flash can also be a good tool to render streaming content. This is well illustrated on the We Are All Fans website. Here portraits of selected Grammy-nominated artists are created in real time from social media content generated by fans across the web. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_23.jpg" alt="We Are All Fans" title="We Are All Fans" width="428" height="227" class="alignnone size-full wp-image-1622" /></p>
<h4><a rel="nofollow" href="http://www.thebluesmaker.com/" rel="nofollow">The Blues Maker</a></h4>
<p>This is a funny Flash application you can use to compose your own blues song.</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_24.jpg" alt="The Blues Maker" title="The Blues Maker" width="428" height="226" class="alignnone size-full wp-image-1623" /></p>
<h4><a rel="nofollow" href="http://www.converse.com/" rel="nofollow">Converse</a></h4>
<p>Converse online store is Flash-based, still the shopping process and website usability are on a very high level here. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_251.jpg" alt="Converse" title="Converse" width="428" height="338" class="alignnone size-full wp-image-1637" /></p>
<h4><a rel="nofollow" href="http://legoclick.com/" rel="nofollow">Lego Click</a></h4>
<p>Lego Click website contains information on art and creativity, mostly Lego-inspired. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_26.jpg" alt="Lego Click" title="Lego Click" width="428" height="249" class="alignnone size-full wp-image-1638" /></p>
<h4><a rel="nofollow" href="http://www.smetana.net/" rel="nofollow">Andreas Smetana</a></h4>
<p>Website of the well-known photographer Anreas Smetana features an original navigation and full-screen photo galleries for the best visual impact. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_27.jpg" alt="Andreas Smetana" title="Andreas Smetana" width="428" height="235" class="alignnone size-full wp-image-1639" /></p>
<h4><a rel="nofollow" href="http://www.djeco.com/" rel="nofollow">Djeco</a></h4>
<p>Website of the toy brand Djeco is a celebration of interactive design. Besides, it shows awesome illustrations and work with sound. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_28.jpg" alt="Djeco" title="Djeco" width="428" height="214" class="alignnone size-full wp-image-1624" /></p>
<h4><a rel="nofollow" href="http://www.plateinteractive.com/" rel="nofollow">Plate Interactive</a></h4>
<p>A good bunch of elegance and beauty in this one. After all, what else can be expected from a globally renowned interactive agency Plate?</p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_29.jpg" alt="Plate Interactive" title="Plate Interactive" width="428" height="193" class="alignnone size-full wp-image-1625" /></p>
<h4><a rel="nofollow" href="http://www.bandit3.com/" rel="nofollow">F.One – Bandit 3 Most Wanted</a></h4>
<p>Promo website of the kiteboarding brand F.One has a spectacular 3D designs and brings an excellent interaction experience to users. By the way, be sure to watch the video in the category Cinema – it’s a masterpiece indeed! </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_30.jpg" alt="F.One – Bandit 3 Most Wanted" title="F.One – Bandit 3 Most Wanted" width="428" height="191" class="alignnone size-full wp-image-1626" /></p>
<h4><a rel="nofollow" href="http://www.adhemas.com/" rel="nofollow">Adhemas Batista</a></h4>
<p>The artworks of Adhemas Batista used to design his personal website are enough to give it a remarkable look. </p>
<p><img src="http://turbo.designwoop.com/uploads/2010/04/flashvhtml_31.jpg" alt="Adhemas Batista" title="Adhemas Batista" width="428" height="256" class="alignnone size-full wp-image-1627" /></p>
<p>As you might see, HTML 5 has a lot of wonderful features to offer and it’s surely worth anticipating. However, people declaring HTML 5 will kill Flash are grossly exaggerating. Why don’t we just try think more positively and assume that both Flash and HTML 5 will exist in harmony to the glory of the Web. After all, none of the platforms can be a solution to everything. Each of them is just a tool with a certain amount of capabilities and it’s up to you, dear designers and developers, to decide which tool will help to achieve the best results in your job. </p>
<p>Written exclusively for Design Woop by FlashMint, the top-class provider of flash templates and flash components. </p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2010/04/show-me-whatcha-got-html-5-vs-flash-showcase/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Favourite Links 1</title>
		<link>http://designwoop.com/2009/12/favourite-links-of-the-week-1/</link>
		<comments>http://designwoop.com/2009/12/favourite-links-of-the-week-1/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 13:34:12 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=636</guid>
		<description><![CDATA[I am going to start a set of weekly posts that will show you my favourite links I have found, been sent or have used myself at some point. Please, if you have time to take a few minutes to help spread my posts using the share links at the bottom of the page I would be very greatful! Right heres my #1 set of links...]]></description>
			<content:encoded><![CDATA[<p>I am going to start a set of weekly posts that will show you my favourite links I have found, been sent or have used myself at some point. Please, if you have time to take a few minutes to help spread my posts using the share links at the bottom of the page I would be very greatful! Right heres my #1 set of links&#8230;.</p>
<h4>New Growl Styles</h4>
<p>Visit Source: <a rel="nofollow" href="http://fixedgear.ca/">http://fixedgear.ca</a></p>
<p>Christopher Lobay has posted two new notification styles for the popular Mac app <a rel="nofollow" href="http://growl.info/">Growl</a> which can be downloaded for free.</p>
<p><a rel="nofollow" href="http://fixedgear.ca/"><img alt="Growl Notification Styles" src="http://designwoop.com/images/posts/links-1/growl.jpg" class="alignnone visit-link" width="428" height="295" /></a></p>
<h4>10 Fresh Must Read Blogs For Creatives</h4>
<p>Visit Source: <a rel="nofollow" href="http://www.inspiredm.com/2009/12/15/10-fresh-must-read-blogs-for-creatives-the-december-edition/">http://www.inspiredm.com</a></p>
<p>InspiredMag have posted a great article showcasing 10 &#8216;Must Read&#8217; blogs that are great for us &#8216;Creatives&#8217;. There are some great reads here and lots of useful resources worth bookmarking.</p>
<p><a rel="nofollow" href="http://www.inspiredm.com/2009/12/15/10-fresh-must-read-blogs-for-creatives-the-december-edition/"><img alt="10 Must Read Creative Blogs" src="http://designwoop.com/images/posts/links-1/must-reads.jpg" class="alignnone visit-link" width="428" height="156" /></a></p>
<h4>Exobotics</h4>
<p>Visit Source: <a rel="nofollow" href="http://www.exopolis.com/holiday/2007/factory.html">www.exopolis.com</a></p>
<p>A very clever site built in Flash that lets you build a robot (Cool I know) and then bust some moves with it to a nice dance beat. Give it a try, very cooly designed!</p>
<p><a rel="nofollow" href="http://www.exopolis.com/holiday/2007/factory.html"><img alt="Build a Robot" src="http://designwoop.com/images/posts/links-1/robots.jpg" class="alignnone visit-link" width="428" height="285" /></a></p>
<h4>35 CSS-based Layouts that Look Awesome</h4>
<p>Visit Source: <a rel="nofollow" href="http://net.tutsplus.com/articles/web-roundups/35-css-based-layouts-that-look-awesome/">http://net.tutsplus.com</a></p>
<p>Nettuts+ posted a article showcasing 35 awsum CSS based websites! Another great article to bookmark for inspiration at a later date. There is a whole range of differently styled sites here so something for everyone.</p>
<p><a rel="nofollow" href="http://net.tutsplus.com/articles/web-roundups/35-css-based-layouts-that-look-awesome/"><img alt="35 CSS Based Websites" src="http://designwoop.com/images/posts/links-1/nettuts-css.jpg" class="alignnone visit-link" width="428" height="317" /></a></p>
<h4>Outstanding Website Background Guide: 60+ Impressive Resources</h4>
<p>Visit Source: <a rel="nofollow" href="http://www.noupe.com/design/outstanding-website-background-guide-60-impressive-resources.html">http://www.noupe.com</a></p>
<p>Noupe&#8217;s article on Website Background&#8217;s offers tonnes of great links and resources for getting the perfect website background. There are plenty of Tutorials, Texture Packs and Links where you can get loads of free background tiles/images.</p>
<p><a rel="nofollow" href="http://www.noupe.com/design/outstanding-website-background-guide-60-impressive-resources.html"><img alt="Outstanding Website Background Guide: 60+ Impressive Resources" src="http://designwoop.com/images/posts/links-1/noupe-bg.jpg" class="alignnone visit-link" width="428" height="221" /></a></p>
<h4>30 Website Navigations that Make You Wanna Click It</h4>
<p>Visit Source: <a rel="nofollow" href="http://webdesignledger.com/inspiration/30-website-navigations-that-make-you-wanna-click-it">http://webdesignledger.com</a></p>
<p>Web Design Ledger (One of my favourite subscribed to websites) posted this awesome article showcasing 30 Websites with class Navigation menu&#8217;s. A great post and really good source of inspiration when building a design concept.</p>
<p><a rel="nofollow" href="http://webdesignledger.com/inspiration/30-website-navigations-that-make-you-wanna-click-it"><img alt="30 Website Navigations" src="http://designwoop.com/images/posts/links-1/navigation.jpg" class="alignnone visit-link" width="428" height="238" /></a></p>
<h4>Hacked STOP Signs</h4>
<p>Visit Source: <a rel="nofollow" href="http://www.urlesque.com/2009/12/28/hacked-stop-signs-photos/">http://www.urlesque.com</a></p>
<p>Great set of Stop Sign&#8217;s that have been modified and there are some funny ones! My favourite is &#8220;STOP! Hammertime!&#8221;.</p>
<p><a rel="nofollow" href="http://www.urlesque.com/2009/12/28/hacked-stop-signs-photos/"><img alt="Hacked Stop Signs" src="http://designwoop.com/images/posts/links-1/stop-signs.jpg" class="alignnone visit-link" width="428" height="303" /></a></p>
<h4>Rio Ferdinand Online Magazine</h4>
<p>Visit Source: <a rel="nofollow" href="http://www.rioferdinand.com/">http://www.rioferdinand.com</a></p>
<p>Not design related but a cool site anyways. Footballer Rio Ferdinand has started an online magazine which is a great read. He interviews different celebs each edition and covers alot of general stuff.</p>
<p><a rel="nofollow" href="http://www.rioferdinand.com/"><img alt="Rio Ferdinand Magazine" src="http://designwoop.com/images/posts/links-1/rio-mag.jpg" class="alignnone visit-link" width="428" height="268" /></a></p>
<h4>24 Ways: CSS Animations</h4>
<p>Visit Source: <a rel="nofollow" href="http://24ways.org/2009/css-animations">http://24ways.org</a></p>
<p>Tim Van Damme posted this cool article on 24ways about CSS Animations, showing you how to create one yourself. A great read and this is definately going to be something that we will start to see more and more of.</p>
<p><a rel="nofollow" href="http://24ways.org/2009/css-animations"><img alt="CSS Animations" src="http://designwoop.com/images/posts/links-1/css-animations.jpg" class="alignnone visit-link" width="428" height="290" /></a></p>
<h4>7 Open Source And Free URL Shortener Scripts To Create Your Own</h4>
<p>Visit Source: <a rel="nofollow" href="http://www.webresourcesdepot.com/7-open-source-and-free-url-shortener-scripts-to-create-your-own/">http://www.webresourcesdepot.com</a></p>
<p>Web Resource Depot posted this article reviewing 7 open source URL Shortener scripts that are all free. I went for Yourls myself but a handy link for anyone else wanting to get on the URL Shortening bandwagon :)</p>
<p><a rel="nofollow" href="http://www.webresourcesdepot.com/7-open-source-and-free-url-shortener-scripts-to-create-your-own/"><img alt="URL Shortener Scripts" src="http://designwoop.com/images/posts/links-1/url-scripts.jpg" class="alignnone" width="428" height="272" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2009/12/favourite-links-of-the-week-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Clearing the Textarea value onFocus</title>
		<link>http://designwoop.com/2009/12/clearing-form-textarea-value-onfocus/</link>
		<comments>http://designwoop.com/2009/12/clearing-form-textarea-value-onfocus/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 22:16:23 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[onfocus]]></category>
		<category><![CDATA[quick tips]]></category>
		<category><![CDATA[textarea]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=606</guid>
		<description><![CDATA[Quick tip that will always come in handy when creating forms. More often then not you will see a textarea that initially has some text in, something like... 'Type your message here...'. On some websites, I have noticed that when you go to type in that same textarea you have to first remove the message before you start typing yours which I find very frustratings.]]></description>
			<content:encoded><![CDATA[<p>Quick tip that will always come in handy when creating forms. More often then not you will see a textarea that initially has some text in, something like&#8230; &#8216;Type your message here&#8230;&#8217;. On some websites, I have noticed that when you go to type in that same textarea you have to first remove the message before you start typing yours which I find very frustratings.</p>
<p>There is a simple line of code that will fix this and clear your message when they click on the textarea box. First you need to create your form, below I have included some sample form code:</p>
<pre class="brush: php; title: ; notranslate">
&lt;form name=&quot;test_form&quot;&gt;
	&lt;dl&gt;
		&lt;dt&gt;&lt;label for=&quot;field_one&quot;&gt;Field One&lt;/label&gt;&lt;/dt&gt;
		&lt;dd&gt;&lt;input type=&quot;text&quot; name=&quot;field_one&quot; value=&quot;&quot; size=&quot;100&quot; /&gt;&lt;/dd&gt;

		&lt;dt&gt;&lt;label for=&quot;field_two&quot;&gt;Field Two&lt;/label&gt;&lt;/dt&gt;
		&lt;dd&gt;&lt;textarea name=&quot;field_two&quot; rows=&quot;10&quot; cols=&quot;100&quot;&gt;Type your message here...&lt;/textarea&gt;&lt;/dd&gt;
	&lt;/dl&gt;
&lt;/form&gt;
</pre>
<p>To make the text disappear on click we use the event handler <strong>onFocus</strong> which will basically run once the Textarea is in an &#8216;active&#8217; state. We need to add in the following to our form:</p>
<pre class="brush: php; title: ; notranslate">
onFocus=&quot;this.value=''; return false;&quot;
</pre>
<p>Add it inside the opening textarea tag so you will end up with a form looking like this&#8230;.</p>
<pre class="brush: php; title: ; notranslate">
&lt;form name=&quot;test_form&quot;&gt;
	&lt;dl&gt;
		&lt;dt&gt;&lt;label for=&quot;field_one&quot;&gt;Field One&lt;/label&gt;&lt;/dt&gt;
		&lt;dd&gt;&lt;input type=&quot;text&quot; name=&quot;field_one&quot; value=&quot;&quot; size=&quot;100&quot; /&gt;&lt;/dd&gt;

		&lt;dt&gt;&lt;label for=&quot;field_two&quot;&gt;Field Two&lt;/label&gt;&lt;/dt&gt;
		&lt;dd&gt;&lt;textarea name=&quot;field_two&quot; rows=&quot;10&quot; cols=&quot;100&quot; onFocus=&quot;this.value=''; return false;&quot;&gt;Type your message here...&lt;/textarea&gt;&lt;/dd&gt;
	&lt;/dl&gt;
&lt;/form&gt;
</pre>
<p>Thats it done, nice and simple! You can download the source code for this below or view a demo <a rel="nofollow" href="http://designwoop.com/labs/textarea-onfocus/">here</a>.</p>
<div class="tutorial-files">
<p class="demo"><a rel="nofollow" href="http://designwoop.com/labs/textarea-onfocus/">View Demo</a></p>
<p class="source"><a rel="nofollow" href="http://designwoop.com/labs/textarea-onfocus/source.zip">Source Code</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2009/12/clearing-form-textarea-value-onfocus/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 780/906 objects using disk: basic
Content Delivery Network via turbo.designwoop.com

Served from: designwoop.com @ 2012-05-21 14:16:31 -->
