<?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; All Posts</title>
	<atom:link href="http://designwoop.com/category/general/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>Thu, 02 Feb 2012 08:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</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://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://designwoop.com/uploads/2012/02/nocss.png"><img class="alignnone size-large wp-image-7441" title="nocss" src="http://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>0</slash:comments>
		</item>
		<item>
		<title>10 Useful jQuery Plugins For Enhancing Your Website UX</title>
		<link>http://designwoop.com/2012/01/10-useful-jquery-plugins-for-enhancing-your-website-ux/</link>
		<comments>http://designwoop.com/2012/01/10-useful-jquery-plugins-for-enhancing-your-website-ux/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 08:00:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://designwoop.com/2012/01/brilliant-jquery-plugins/</guid>
		<description><![CDATA[Incorporating jQuery effectively and modestly in your website build process is a great way to enhance and take your user experience to another level. Using jQuery plugins can be a great tool for helping display content to your users in a much more intuitive and interactive way. The jQuery community is fantastic, developers are consistently releasing new, quality jQuery plug-ins for us to incorporate into our websites.

In this post I will take show you a collection of <a title="jQuery Tutorials and Resources" href="http://designwoop.com/category/jquery/" target="_blank">jQuery</a> plugins that are really useful for improving your overall user experience on your website.]]></description>
			<content:encoded><![CDATA[<p>Incorporating jQuery effectively and modestly in your website build process is a great way to enhance and take your user experience to another level. Using jQuery plugins can be a great tool for helping display content to your users in a much more intuitive and interactive way. The jQuery community is fantastic, developers are consistently releasing new, quality jQuery plug-ins for us to incorporate into our websites.</p>
<p>In this post I will take show you a collection of <a rel="nofollow" title="jQuery Tutorials and Resources" href="http://designwoop.com/category/jquery/" target="_blank">jQuery</a> plugins that are really useful for improving your overall user experience on your website.</p>
<h3><a rel="nofollow" href="http://nivo.dev7studios.com/?ap_id=webadelic" target="_blank">Nivo Slider</a></h3>
<p><img class="alignnone size-large wp-image-7622" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/Demos-Nivo-Slider_1326699558242-580x417.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="417" /></p>
<p>The Nivo Slider is a fantastic jQuery slider plug-in, it is available in two formats, one jQuery plug-in is a dedicated WordPress plug-in and the other is freely available for all  websites.</p>
<h3><a rel="nofollow" href="http://isotope.metafizzy.co/index.html" target="_blank">Isotope</a></h3>
<p><img class="alignnone size-large wp-image-7621" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/Isotope_1326699605019-580x421.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="421" /></p>
<p>Isotope is a jQuery plug-in that can add some serious improvement to how your users navigate content displayed on a webpage. The plugin makes use of some great jQuery effects to alter your content layout on a page.</p>
<h3><a rel="nofollow" href="http://flex.madebymufffin.com/" target="_blank">FlexSlider</a></h3>
<p><img class="alignnone size-large wp-image-7616" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/FlexSlider-The-Best-Responsive-jQuery-Slider_1326699703726-580x421.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="421" /></p>
<p>Another great yet simple to use free jQuery slider plug-in which is completely responsive and packed with tons of slide animations.</p>
<h3><a rel="nofollow" href="http://buildinternet.com/project/mosaic/" target="_blank">Mosaic</a></h3>
<p><img class="alignnone size-large wp-image-7615" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/Mosaic-Sliding-Boxes-and-Captions-jQuery-Plugin_1326699721292-580x421.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="421" /></p>
<p>One of my personal favorite jQuery plugins for improving how additional content is served to a user is Mosaic. Mosaic automatically generates sliding boxes and captions, allowing slide and fade animations with custom directions.</p>
<h3><a rel="nofollow" href="http://buildinternet.com/project/supersized/slideshow/3.2/demo.html" target="_blank">Supersized</a></h3>
<p><img class="alignnone  wp-image-7614" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/Supersized-Full-Screen-Background-Slideshow-jQuery-Plugin_1326699741243-580x417.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="417" /></p>
<p>If you use big background images in web design, then Supersized is a jQuery plugin you should take a look at. Supersized is a full screen background slideshow allowing you to rotate through, pause/play and array of images that are set as the website background.</p>
<h3><a rel="nofollow" href="http://www.jquery4u.com/demos/jquery4u-parallax-demo/" target="_blank">jQuery Image Parallax</a></h3>
<p><img class="alignnone size-large wp-image-7613" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/jQuery4u-Demo-The-Parallax-Effect_1326699757575-580x417.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="417" /></p>
<p>The jQuery Image Parallax plug-in allows you to manage the animation aspects of a banner which you could use for your header  or background.</p>
<h3><a rel="nofollow" href="http://www.myjqueryplugins.com/jMenu" target="_blank">jMenu</a></h3>
<p><img class="alignnone  wp-image-7612" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/jMenu-jQuery-plugin-Demonstration-Horizontal-navigation-with-unlimited-sub-menus-with-jQuery-MyjQueryPlugins.com_1326699775094-580x417.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="417" /></p>
<p>jMenu is a useful jQuery plug-in that allows you to create awesome menus that include unlimited sub navigation items.</p>
<h3><a rel="nofollow" href="http://codecanyon.net/item/assign-jquery/157596?ref=webadelic" target="_blank">Assign</a></h3>
<p><img class="alignnone size-large wp-image-7611" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/Assign-jQuery_1326699797319-580x417.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="417" /></p>
<p>Assign is a jQuery plug-in that lets you easily assign multiple keyboard shortcuts and events for specified functions.</p>
<h3><a rel="nofollow" href="http://codecanyon.net/item/dynamic-tag-form/482498?ref=webadelic" target="_blank">Dynamic Tag</a></h3>
<p><img class="alignnone size-large wp-image-7610" title="dynamic-tags" src="http://designwoop.com/uploads/2012/01/dynamic-tags-580x435.jpg" alt="" width="580" height="435" /></p>
<p>The Dynamic Tag form is a stylish way to enhance your tags inside a form input, try the demo its a great enhancement plug-in.</p>
<h3><a rel="nofollow" href="http://codecanyon.net/item/jquery-tour-the-flexible-tour-plugin/1052564?ref=webadelic" target="_blank">jQuery Tour</a></h3>
<p><img class="alignnone size-large wp-image-7609" title="10 Useful jQuery Plugins For Enhancing Your Website UX" src="http://designwoop.com/uploads/2012/01/jQuery-Tour-–-the-flexible-Tour-plugin_1326699971054-580x421.png" alt="10 Useful jQuery Plugins For Enhancing Your Website UX" width="580" height="421" /></p>
<p>jQuery Tour is a flexible plug-in that can provide a stylish, high customizable way to provide your users with a website tour.</p>
<h3>What Plugins Do You Use?</h3>
<p>I would be interested to hear about some of the plugins you use on a regular basis, drop me a comment and I will add them to the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2012/01/10-useful-jquery-plugins-for-enhancing-your-website-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>22 Creative Business Cards From January 2012</title>
		<link>http://designwoop.com/2012/01/business-cards-from-january-2012/</link>
		<comments>http://designwoop.com/2012/01/business-cards-from-january-2012/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 08:00:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Business Cards]]></category>

		<guid isPermaLink="false">http://designwoop.com/2012/01/business-cards-from-january-2012/</guid>
		<description><![CDATA[This post is the first part of the business card inspiration series of 2012, each month I will featuring a collection of awesome business cards that have been submitted to the <a title="Business Card Gallery" href="http://carddsgn.com/" target="_blank">business card gallery</a>, you can see some of the best business cards from last year in the <a title="Business card design inspiration" href="http://designwoop.com/tag/business-cards/" target="_blank">business card archive</a>.]]></description>
			<content:encoded><![CDATA[<p>This post is the first part of the business card inspiration series of 2012, each month I will featuring a collection of awesome business cards that have been submitted to the <a rel="nofollow" title="Business Card Gallery" href="http://carddsgn.com/" target="_blank">business card gallery</a>, you can see some of the best business cards from last year in the <a rel="nofollow" title="Business card design inspiration" href="http://designwoop.com/tag/business-cards/" target="_blank">business card archive</a>.</p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/wyatt" target="_blank">Wyatt</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/wyatt"><img class="alignnone size-large wp-image-7533" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/wyatt-600x803-580x776.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="776" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/we-are-manic" target="_blank">We Are Manic</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/we-are-manic"><img class="alignnone size-large wp-image-7532" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/we-are-manic-580x354.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="354" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/wall-envy-photo" target="_blank">Wall Envy Photo</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/wall-envy-photo"><img class="alignnone size-large wp-image-7531" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/Wall-Envy-Photo-600x384-580x371.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="371" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/tiny-twiggette" target="_blank">Tiny Twiggette</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/tiny-twiggette"><img class="alignnone size-large wp-image-7530" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/Twigette2-600x488-580x471.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="471" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/strumpets-crumpets" target="_blank">Strumpets Crumpets</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/strumpets-crumpets"><img class="alignnone size-large wp-image-7529" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/QR-Code-Business-Card-600x333-580x321.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="321" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/projekt-inc-business-card" target="_blank">Projekt, Inc</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/projekt-inc-business-card"><img class="alignnone size-large wp-image-7528" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/Projekt-busCard-600x426-580x411.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="411" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/modern-karibou" target="_blank">Modern Karibou</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/modern-karibou"><img class="alignnone size-large wp-image-7527" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/modern_karibou-600x403-580x389.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="389" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/middletown-lumber" target="_blank">Middletown Lumber</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/middletown-lumber"><img class="alignnone size-large wp-image-7526" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/mlumber-card-1-600x491-580x474.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="474" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/maria-bernal" target="_blank">Maria Bernal</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/maria-bernal"><img class="alignnone size-large wp-image-7525" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/maria-bernal-edge-painted-580x580.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="580" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/manfred-erjak" target="_blank">Manfred Erjak</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/manfred-erjak"><img class="alignnone size-large wp-image-7524" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/Manfred-Erjak-letterpress-business-cards-600x448-580x433.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="433" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/kip-beelman" target="_blank">Kip Beelman</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/kip-beelman"><img class="alignnone size-large wp-image-7523" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/kip-beelmans-edge-painted-business-card-580x751.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="751" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/i-am-tiago-2" target="_blank">I Am Tiago</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/i-am-tiago-2"><img class="alignnone size-large wp-image-7522" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/IamTiago-2-580x433.png" alt="22 Creative Business Cards From January 2012" width="580" height="433" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/homer-liwag" target="_blank">Homer Liwag</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/homer-liwag"><img class="alignnone size-large wp-image-7521" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/homer-liwag-600x742-580x717.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="717" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/great-circle" target="_blank">Great Circle</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/great-circle"><img class="alignnone size-large wp-image-7520" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/Great-Circle-square-business-cards-600x600-580x580.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="580" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/gorjana" target="_blank">Gorjana</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/gorjana"><img class="alignnone size-large wp-image-7519" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/gorjana-600x400-580x386.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="386" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/formgarten" target="_blank">Formgarten</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/formgarten"><img class="alignnone size-large wp-image-7518" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/fgcard-m-2-600x426-580x411.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="411" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://designwoop.com/uploads/2012/01/fgcard-m-2-600x426-580x411.jpg" target="_blank">Emily Deisiath</a></h3>
<p><a rel="nofollow" href="http://designwoop.com/uploads/2012/01/emily-deisiath-600x450.jpg"><img class="alignnone size-large wp-image-7517" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/emily-deisiath-600x450-580x435.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="435" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/digital-elliot" target="_blank">Digital Elliot</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/digital-elliot"><img class="alignnone size-large wp-image-7516" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/digital-elliot-600x397-580x383.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="383" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/debadge-design-business-cards" target="_blank">Debadge</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/debadge-design-business-cards"><img class="alignnone size-large wp-image-7515" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/debadge-design-cards3-600x1372-580x1326.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="1326" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/chef-boulder" target="_blank">Chef Boulder</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/chef-boulder"><img class="alignnone size-large wp-image-7514" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/chef-boulder-rounded-business-cards-600x803-580x776.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="776" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/cfd" target="_blank">CF Designer</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/cfd"><img class="alignnone size-large wp-image-7513" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/CFD-600x450-580x435.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="435" /></a></p>
<h3><a rel="nofollow" title="business card inspiration" href="http://carddsgn.com/business-card-gallery/cecelia-tattoo" target="_blank">Cecelia Tattoo</a></h3>
<p><a rel="nofollow" href="http://carddsgn.com/business-card-gallery/cecelia-tattoo"><img class="alignnone size-large wp-image-7512" title="22 Creative Business Cards From January 2012" src="http://designwoop.com/uploads/2012/01/Cecelia-tattoo-letterpress-business-cards-600x620-580x599.jpg" alt="22 Creative Business Cards From January 2012" width="580" height="599" /></a></p>
<h3></h3>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2012/01/business-cards-from-january-2012/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blank &amp; Bare WordPress HTML5 Frameworks</title>
		<link>http://designwoop.com/2012/01/wordpress-html5-frameworks/</link>
		<comments>http://designwoop.com/2012/01/wordpress-html5-frameworks/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 08:00:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://designwoop.com/2012/01/wordpress-html5-frameworks/</guid>
		<description><![CDATA[If your looking to give your <a title="WordPress Themes" href="http://designwoop.com/tag/theme/">WordPress theme</a> a new design or simply looking to upgrade your code to more modern technologies such as HTML5/CSS3, you will these free WordPress HTML5 frameworks very handy. These HTML5 WordPress frameworks are stripped back and mostly include little or no styling which provides a perfect HTML5 framework for you to build your new WordPress site on.]]></description>
			<content:encoded><![CDATA[<p>If your looking to give your <a rel="nofollow" title="WordPress Themes" href="http://designwoop.com/tag/theme/">WordPress theme</a> a new design or simply looking to upgrade your code to more modern technologies such as HTML5/CSS3, you will these free WordPress HTML5 frameworks very handy. These HTML5 WordPress frameworks are stripped back bare and mostly include little or no styling which provides a perfect HTML5 framework for you to build your new WordPress site on.</p>
<h3><a rel="nofollow" href="http://www.rootstheme.com/" target="_blank">Roots</a></h3>
<p><a rel="nofollow" href="http://www.rootstheme.com/" target="_blank"><img class="alignnone  wp-image-7487" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/Roots-WordPress-Theme-Rapidly-create-sites-with-HTML5-Boilerplate-and-Blueprint-CSS-or-960.gs_1325664828113-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>Roots is a starting WordPress theme based on HTML5 Boilerplate, Blueprint CSS (or 960.gs) and Starkers that will help you rapidly create brochure sites and blogs.</p>
<h3><a rel="nofollow" href="http://themefortress.com/reverie/" target="_blank">Reverie Framework</a></h3>
<p><a rel="nofollow" href="http://themefortress.com/reverie/" target="_blank"><img class="alignnone size-large wp-image-7486" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/Reverie-Versatile-HTML5-WordPress-Framework-ThemeFortress-WordPress-Themes-and-Plugins_1325664887572-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>Reverie Framework is a versatile HTML5 WordPress framework based on ZURB&#8217;s Foundation, a powerful tool for building prototypes on any kind of devices.</p>
<h3><a rel="nofollow" href="http://nathanstaines.com/archive/starkers-html5-v3" target="_blank">Starkers</a></h3>
<p><a rel="nofollow" href="http://nathanstaines.com/archive/starkers-html5-v3" target="_blank"><img class="alignnone size-large wp-image-7488" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/Starkers-HTML5-•-Nathan-Staines_1325664917248-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>Starkers is a bare-bones WordPress theme created to act as a starting point for the theme designer.</p>
<h3><a rel="nofollow" href="http://whiteboardframework.com/" target="_blank">Whiteboard</a></h3>
<p><a rel="nofollow" href="http://whiteboardframework.com/" target="_blank"><img class="alignnone  wp-image-7489" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/Whiteboard-Framework-for-WordPress-Learn-How-to-Use-WordPress_1325664949859-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>Whiteboard is not like most other WordPress Frameworks that include a mess of styles, functions, and content areas that have to be cleaned out for nearly every project, Whiteboard remains a true WordPress Framework.</p>
<h3><a rel="nofollow" href="http://themble.com/bones/" target="_blank">Bones</a></h3>
<p><a rel="nofollow" href="http://themble.com/bones/" target="_blank"><img class="alignnone  wp-image-7480" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/Bones-The-HTML5-Wordpress-Starter-Theme_1325664938303-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>Bones freely provides you with the option of a responsive WordPress framework or a fixed framework, Bones is a perfect starting point for creating your next HTML5 WordPress site.</p>
<h3><a rel="nofollow" href="http://digwp.com/2010/02/blank-wordpress-theme/" target="_blank">BLANK WordPress Theme</a></h3>
<p><a rel="nofollow" href="http://digwp.com/2010/02/blank-wordpress-theme/" target="_blank"><img class="alignnone  wp-image-7482" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/DiW-Theme-Clubhouse-A-WordPress-site-to-showcase-different-themes-created-by-the-DIW-crew._1325665022093-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>Blank is a WordPress theme with all the functionality of a normal WordPress theme but with none of the styling.</p>
<p>The idea is that when starting a new theme, it is far easier to use this as a base then a theme that is already finished and styled.</p>
<h3><a rel="nofollow" href="http://randyjensenonline.com/thoughts/handcrafted-wp-starter-theme/" target="_blank">Handcrafted WP</a></h3>
<p><a rel="nofollow" href="http://randyjensenonline.com/thoughts/handcrafted-wp-starter-theme/" target="_blank"><img class="alignnone size-large wp-image-7483" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/Handcrafted-WP-Starter-Theme-«-Randy-Jensen-Online_1325665064916-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>Handcrafted WP is an almost-naked starter theme that will provide you a rock solid starting point for crafting a serious website on the WordPress platform.</p>
<h3><a rel="nofollow" href="http://multicelldesign.com/2009/04/brave-new-world-wordpress-theme/" target="_blank">Brave New World HTML5 Theme</a></h3>
<p><a rel="nofollow" href="http://multicelldesign.com/2009/04/brave-new-world-wordpress-theme/" target="_blank"><img class="alignnone size-large wp-image-7481" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/Brave-New-World-WordPress-theme-Multi-Cell-Design_1325665281308-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>The Brave New World WordPress theme is free from all the elements that are not needed and is built using HTML5, WAI-ARIA landmark roles and hCard and hAtom microformats to provide a great base to build on.</p>
<h3><a rel="nofollow" href="http://html5.mimoymima.com/" target="_blank">HTML5 WordPress Shell</a></h3>
<p><a rel="nofollow" href="http://html5.mimoymima.com/" target="_blank"><img class="alignnone size-large wp-image-7484" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/HTML5-Wordpress-Shell-by-mimoYmima.com_1325665331108-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>The WordPress Shell provides a great starting point for you to build HTML5 WordPress themes on.</p>
<h3><a rel="nofollow" href="https://github.com/murtaugh/HTML5-Reset-Wordpress-Theme#readme" target="_blank">HTML5 Reset WordPress Theme</a></h3>
<p><a rel="nofollow" href="https://github.com/murtaugh/HTML5-Reset-Wordpress-Theme#readme" target="_blank"><img class="alignnone size-large wp-image-7490" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/html5Reset1-580x290.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="290" /></a></p>
<p>The HTML5 Reset WordPress theme is a blank theme that provides a great empty slate upon which to build your own HTML5-based WordPress themes.</p>
<h3><a rel="nofollow" href="http://digwp.com/2009/07/free-html-5-wordpress-theme/" target="_blank">h5 WordPress Theme</a></h3>
<p><a rel="nofollow" href="http://digwp.com/2009/07/free-html-5-wordpress-theme/" target="_blank"><img class="alignnone size-large wp-image-7491" title="Blank &amp; Bare WordPress HTML5 Frameworks" src="http://designwoop.com/uploads/2012/01/DiW-Theme-Clubhouse_1325666416119-580x405.png" alt="Blank &amp; Bare WordPress HTML5 Frameworks" width="580" height="405" /></a></p>
<p>H5 is a semantically sound and fully valid HTML5 framework for which you can build your WordPress theme on.</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2012/01/wordpress-html5-frameworks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>30 Amazing Optical Illusion Pictures</title>
		<link>http://designwoop.com/2012/01/optical-illusion-pictures/</link>
		<comments>http://designwoop.com/2012/01/optical-illusion-pictures/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 08:00:00 +0000</pubDate>
		<dc:creator>Sarah Anderson</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Optical Illusion]]></category>

		<guid isPermaLink="false">http://designwoop.com/2012/01/optical-illusion-pictures/</guid>
		<description><![CDATA[The human brain is an incredibly amazing organ. It is capable of everything from complex calculations, philosophy, social interactions, and many other tasks, all while also maintaining vital functions. Without the interactions between the hemispheres in the brain, creativity would not manifest itself in humans.

However, the brain makes use of patterns and natural observances to make inferences about an object. Optical illusions take advantage of this, by tricking the brain into making an inference about the scene that is not true.]]></description>
			<content:encoded><![CDATA[<p>The human brain is an incredibly amazing organ. It is capable of everything from complex calculations, philosophy, social interactions, and many other tasks, all while also maintaining vital functions. Without the interactions between the hemispheres in the brain, creativity would not manifest itself in humans.</p>
<p>However, the brain makes use of patterns and natural observances to make inferences about an object. Optical illusions take advantage of this, by tricking the brain into making an inference about the scene that is not true.</p>
<p>Prepare to be amazed, puzzled, and possibly even confused by these awesome examples of <a rel="nofollow" title="Optical Illusion Pictures" href="http://designwoop.com/tag/optical-illusion/">optical illusion photography</a>.</p>
<p><a rel="nofollow" href="http://www.behance.net/gallery/Daily-Drop-Cap-a-Letter-A/987933"><img src="http://designwoop.com/uploads/2012/01/1.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://farm3.static.flickr.com/2526/4129499068_f70828f4ee_b.jpg"><img src="http://designwoop.com/uploads/2012/01/2.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://farm3.static.flickr.com/2513/4030341609_2fed0d7f07.jpg"><img src="http://designwoop.com/uploads/2012/01/3.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://c00lpix.deviantart.com/art/Illusions-No-1-61156400?q=boost%3Apopular%20illusions&amp;qo=2"><img src="http://designwoop.com/uploads/2012/01/4.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://farm4.static.flickr.com/3065/2960460814_6c7939e425_b.jpg"><img src="http://designwoop.com/uploads/2012/01/5.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/25608866@N00/4780175635/"><img src="http://designwoop.com/uploads/2012/01/6.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/12224827@N07/2873173874/"><img src="http://designwoop.com/uploads/2012/01/7.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/benheine/4505536418/"><img src="http://designwoop.com/uploads/2012/01/8.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/18603052@N06/2621815599/"><img src="http://designwoop.com/uploads/2012/01/9.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/83902407@N00/1504454998/"><img src="http://designwoop.com/uploads/2012/01/10.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/emilywatson/748134937/"><img src="http://designwoop.com/uploads/2012/01/11.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/diffused/3741853202/"><img src="http://designwoop.com/uploads/2012/01/12.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/9599423@N03/1711841443/"><img src="http://designwoop.com/uploads/2012/01/13.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/26525816@N06/2975069958/"><img src="http://designwoop.com/uploads/2012/01/14.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://farm4.static.flickr.com/3179/2785848220_6c67a3ceb9.jpg"><img src="http://designwoop.com/uploads/2012/01/15.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/39832403@N05/3664859303"><img src="http://designwoop.com/uploads/2012/01/16.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/83951141@N00/3441147896/"><img src="http://designwoop.com/uploads/2012/01/17.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/froodmat/418851217/"><img src="http://designwoop.com/uploads/2012/01/18.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/trekmtber/3178402937"><img src="http://designwoop.com/uploads/2012/01/19.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/42302576@N00/3959497/"><img src="http://designwoop.com/uploads/2012/01/20.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.dphclub.com/beautiful-pictures/other-pictures/optical-illusion"><img src="http://designwoop.com/uploads/2012/01/21.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.artofillusion.org/artgallery"><img src="http://designwoop.com/uploads/2012/01/22.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://visualfunhouse.com/altered_reality/underwater-candle-flame-optical-illusion.html"><img src="http://designwoop.com/uploads/2012/01/23.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.betterphoto.com/gallery/dynoGallDetail.asp?photoID=10373129"><img src="http://designwoop.com/uploads/2012/01/24.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://photosunion.com/photos/3D-Street-Optical-Illusion-042/"><img src="http://designwoop.com/uploads/2012/01/25.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.moillusions.com/2009/03/flamenco-group-optical-illusion.html"><img src="http://designwoop.com/uploads/2012/01/26.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.maijaluutonen.com/"><img src="http://designwoop.com/uploads/2012/01/27.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.moillusions.com/2009/04/news-and-les-alpes-optical-illusion.html"><img src="http://designwoop.com/uploads/2012/01/28.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://www.neatorama.com/2009/11/19/custom-backyard-deck-will-make-you-dizzy/"><img src="http://designwoop.com/uploads/2012/01/29.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
<p><a rel="nofollow" href="http://bewildermouse.deviantart.com/art/a-set-of-aluminium-stairs-14955097?qj=1&amp;q=boost%3Apopular+in%3Aphotography+optical+illusion&amp;qo=311"><img src="http://designwoop.com/uploads/2012/01/30.jpg" alt="30 Clever Examples of Negative Space Logos" width="428" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2012/01/optical-illusion-pictures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>15 Cool Design Studio Accessories</title>
		<link>http://designwoop.com/2012/01/15-cool-design-studio-accessories/</link>
		<comments>http://designwoop.com/2012/01/15-cool-design-studio-accessories/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 08:00:00 +0000</pubDate>
		<dc:creator>Tomas Laurinavicius</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Studio]]></category>

		<guid isPermaLink="false">http://designwoop.com/2012/01/awesome-stickersacc-for-your-design-studio/</guid>
		<description><![CDATA[If you want to <a href="http://designwoop.com/2011/09/ten-tips-for-staying-productive-today/">achieve great results and be productive</a> as much as possible you must find a comfortable and cozy environment to work in. Work takes a lot of time in our lives and we would like to make it enjoyable and interesting. It doesn't matter if you're working from home or office your workplace should be inspiring and motivating space where you can let your imagination go wild.]]></description>
			<content:encoded><![CDATA[<p>If you want to <a rel="nofollow" href="http://designwoop.com/2011/09/ten-tips-for-staying-productive-today/">achieve great results and be productive</a> as much as possible you must find a comfortable and cozy environment to work in. Work takes a lot of time in our lives and we would like to make it enjoyable and interesting. It doesn&#8217;t matter if you&#8217;re working from home or office your workplace should be inspiring and motivating space where you can let your imagination go wild.</p>
<p>I have collected 15 cool design studio accessories for your work or company office. Hopefully you will find something cool to spice up your workstation.</p>
<h3><a rel="nofollow" href="http://us.urbanoutfitters.com/urban/catalog/productdetail.jsp?id=21226097">Vintage Wood Calendar Chalkboard</a></h3>
<p><a rel="nofollow" href="http://us.urbanoutfitters.com/urban/catalog/productdetail.jsp?id=21226097"><img src="http://www.designwoop.com/uploads/2012/01/01_cool_design_studio_accessories_vintage_wood_calendar_chalkboard.jpg" alt="Vintage Wood Calendar Chalkboard" width="428" height="340" /></a></p>
<p>This vintage wall mount features a washable chalkboard with graphics of all 12 months (printed in French!) and 31 days. Complete with 3 slots for holding chalk or other accessories; and 6 total hooks at the bottom for hanging coats, scarves or whatever.</p>
<h3><a rel="nofollow" href="http://www.suck.uk.com/products/quacktapedispenser/">Quack Tape Dispenser</a></h3>
<p><a rel="nofollow" href="http://www.suck.uk.com/products/quacktapedispenser/"><img src="http://www.designwoop.com/uploads/2012/01/02_cool_design_studio_accessories_quack_tape_dispenser.jpg" alt="Quack Tape Dispenser" width="428" height="340" /></a></p>
<p>If it looks like a duck, and quacks like a duck, it&#8217;s probably a sticky tape dispenser. Wooden tape dispenser shaped like a duck.</p>
<h3><a rel="nofollow" href="http://www.barnesandnoble.com/p/perpetual-calendar-grey-silver/18005833">Perpetual Calendar Grey Silver</a></h3>
<p><a rel="nofollow" href="http://www.barnesandnoble.com/p/perpetual-calendar-grey-silver/18005833"><img src="http://www.designwoop.com/uploads/2012/01/03_cool_design_studio_accessories_perpetual_calendar_grey_silver.jpg" alt="Perpetual Calendar Grey Silver" width="428" height="340" /></a></p>
<p>Designed by Gideon Dagan for the Museum of Modern Art, this elegant calendar can be used year after year. A magnetic ball marks the day on a bar suspended in space. A second ball seems to float as the magnetic tension pulls the string toward the month printed on the outer ring. A distinctive addition to home or office.</p>
<h3><a rel="nofollow" href="http://mocoloco.com/fresh2/2011/11/15/artificial-nature-pen-holder-by-arthur-ditlef.php">A.N. Pen Holder</a></h3>
<p><a rel="nofollow" href="http://mocoloco.com/fresh2/2011/11/15/artificial-nature-pen-holder-by-arthur-ditlef.php"><img src="http://www.designwoop.com/uploads/2012/01/04_cool_design_studio_accessories_an_pen_holder.jpg" alt="20 Cool Design Studio Accessories" width="428" height="340" /></a></p>
<p>From Arthur Ditlef, a 3D printed pen holder with a geometric spider-web like design that &#8220;traps&#8221; pens.</p>
<h3><a rel="nofollow" href="http://www.cb2.com/new-accessories/new/chalkboard-office-accessories/f7042">Chalkboard office accessories</a></h3>
<p><a rel="nofollow" href="http://www.cb2.com/new-accessories/new/chalkboard-office-accessories/f7042"><img src="http://www.designwoop.com/uploads/2012/01/05_cool_design_studio_accessories_chalkboard_office_accessories.jpg" alt="Chalkboard office accessories" width="428" height="340" /></a></p>
<p>Instant messaging. Old-school staple writes (then erases) new rules for keeping it together. Scrawl labels, to-dos, doodles, then wipe the slate clean. Includes one piece of white chalk.</p>
<h3><a rel="nofollow" href="http://www.yankodesign.com/2011/07/29/turn-tap-for-usb-power/">Turn Tap for USB Power</a></h3>
<p><a rel="nofollow" href="http://www.yankodesign.com/2011/07/29/turn-tap-for-usb-power/"><img src="http://www.designwoop.com/uploads/2012/01/06_cool_design_studio_accessories_turn_tap_for_usb_power.jpg" alt="Turn Tap for USB Power" width="428" height="340" /></a></p>
<p>The Charging Tap is quite an adorable hub that takes in cellphones, digital cameras, MP3 and other USB enabled devices, for charging. Quite simple and minimal in styling, all you need to do is to hook up your gadget and turn on the tap.</p>
<h3><a rel="nofollow" href="http://www.creativesoutfitter.com/product/33/dot-grid-journal">Dot Grid Journal</a></h3>
<p><a rel="nofollow" href="http://www.creativesoutfitter.com/product/33/dot-grid-journal"><img src="http://www.designwoop.com/uploads/2012/01/09_cool_design_studio_accessories_dot_grid_journal.jpg" alt="Dot Grid Journal" width="428" height="340" /></a></p>
<p>The Dot Grid Journal was developed as an alternative to traditional lines and boxes. The light geometric dot matrix serves as a subtle guide for your notations and sketches, while the materials used to create each notebook are cleaned up, de-inked and bleached naturally (no chlorine).</p>
<h3><a rel="nofollow" href="http://www.noteslate.com/">NoteSlate</a></h3>
<p><a rel="nofollow" href="http://www.noteslate.com/"><img src="http://www.designwoop.com/uploads/2012/01/08_cool_design_studio_accessories_noteslate.jpg" alt="NoteSlate" width="428" height="340" /></a></p>
<p>NoteSlate is low technology tablet device with true one color display, real paper look design and long life battery. The unique simple interface for pencil and paper brings the obvious technology to completely new experience.</p>
<h3><a rel="nofollow" href="http://www.clock3.com/index.php?option=com_k2&amp;view=item&amp;id=61:jumbo-flip-clock&amp;Itemid=184">Jumbo Flip Clock</a></h3>
<p><a rel="nofollow" href="http://www.clock3.com/index.php?option=com_k2&amp;view=item&amp;id=61:jumbo-flip-clock&amp;Itemid=184"><img src="http://www.designwoop.com/uploads/2012/01/07_cool_design_studio_accessories_jumbo_flip_clock.jpg" alt="Jumbo Flip Clock" width="428" height="340" /></a></p>
<p>Hit the big time with this giant wall clock that flips the hours away. Over a foot in width, the Giant Wall Flip Clock will definitely make a bold statement. This retro battery-powered clock literally flips through the minutes and hours, making sure its bold numbers are seen from a mile away. The sheer size of this clock is already enough to make you stop in your tracks.</p>
<h3><a rel="nofollow" href="http://www.amazon.com/gp/product/B004C1ODR4/">Teamwork Tape Dispenser</a></h3>
<p><a rel="nofollow" href="http://www.amazon.com/gp/product/B004C1ODR4/"><img src="http://www.designwoop.com/uploads/2012/01/10_cool_design_studio_accessories_teamwork_tape_dispenser.jpg" alt="Teamwork Tape Dispenser" width="428" height="340" /></a></p>
<p>This desktop tape dispenser is entitled &#8220;Teamwork.&#8221; This piece bears the message: Teamwork divides the task and multiplies the success.</p>
<h3><a rel="nofollow" href="http://www.uistencils.com/collections/frontpage/products/iphone-stencil-kit">iPhone Stencil Kit</a></h3>
<p><a rel="nofollow" href="http://www.uistencils.com/collections/frontpage/products/iphone-stencil-kit"><img src="http://www.designwoop.com/uploads/2012/01/11_cool_design_studio_accessories_iphone_stencil_kit.jpg" alt="iPhone Stencil Kit" width="428" height="340" /></a></p>
<p>Quickly sketch out iPhone UI prototypes. Brainstorm your application ideas using our precision cut stainless steel stencil and mechanical pencil.</p>
<h3><a rel="nofollow" href="http://qlocktwo.com/touch.php?lang=en">Qlocktwo Touch</a></h3>
<p><a rel="nofollow" href="http://qlocktwo.com/touch.php?lang=en"><img src="http://www.designwoop.com/uploads/2012/01/12_cool_design_studio_accessories_qlocktwo_touch.jpg" alt="Qlocktwo Touch" width="428" height="340" /></a></p>
<p>Qlocktwo Touch is a precision table clock with alarm function. These characters shine in pure white with a sharp outline using LED technology. A complex process is employed to cut the monolithic corpus in one piece from a single aluminium block and represents a milestone in table clock aesthetics.</p>
<h3><a rel="nofollow" href="http://www.thinkofthe.com/product.php?name=walls-notebook">Walls Notebook</a></h3>
<p><a rel="nofollow" href="http://www.thinkofthe.com/product.php?name=walls-notebook"><img src="http://www.designwoop.com/uploads/2012/01/13_cool_design_studio_accessories_walls_notebook.jpg" alt="Walls Notebook" width="428" height="340" /></a></p>
<p>Walls Notebook is a notebook / sketchbook that features 80 pictures of &#8220;clean&#8221; NYC walls instead of blank pages. Write, draw, paste, or doodle on these inspirational backdrops. You&#8217;ll be one step closer to being the street artist you&#8217;ve always wanted to be â€¦ minus the jail time.</p>
<h3><a rel="nofollow" href="http://www.chinavasion.com/mouse-keyboard/cvvck139">All Natural Full Bamboo Keyboard and Mouse Combo</a></h3>
<p><a rel="nofollow" href="http://www.chinavasion.com/mouse-keyboard/cvvck139"><img src="http://www.designwoop.com/uploads/2012/01/14_cool_design_studio_accessories_all_natural_full_bamboo_keyboard_and_mouse_combo.jpg" alt="All Natural Full Bamboo Keyboard and Mouse Combo" width="428" height="340" /></a></p>
<p>This handcrafted All Natural Full Bamboo Keyboard and Mouse Combo not only looks unique and trendy, it also helps you improve productivity. The laser engraved bamboo keys absorb sweat, stay clean and feel comfortable. In addition, the extra four shortcut keys give you easy access to internet, e-mail, mute and calculator.</p>
<h3><a rel="nofollow" href="http://www.suck.uk.com/products/stampler/?category=stationery">Stampler</a></h3>
<p><a rel="nofollow" href="http://www.suck.uk.com/products/stampler/?category=stationery"><img src="http://www.designwoop.com/uploads/2012/01/15_cool_design_studio_accessories_stampler.jpg" alt="Stampler" width="428" height="340" /></a></p>
<p>It looks and works like a normal stapler â€“ but has an added attachment that prints a smiling face design at the same time. Why would you ever buy a normal stapler again?</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2012/01/15-cool-design-studio-accessories/feed/</wfw:commentRss>
		<slash:comments>2</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 724/747 objects using disk: basic

Served from: designwoop.com @ 2012-02-04 13:45:33 -->
