<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Onextrapixel - Web Design &amp; Development Magazine</title>
	
	<link>http://www.onextrapixel.com</link>
	<description>A digital community for web designers and developers by sharing freebies, great tutorials, useful resources and online tips.</description>
	<lastBuildDate>Mon, 06 Feb 2012 11:00:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/onextrapixel" /><feedburner:info uri="onextrapixel" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><meta xmlns="http://pipes.yahoo.com" name="pipes" content="noprocess" /><feedburner:emailServiceId>onextrapixel</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>A Beginner’s Guide to Using AJAX in Your Website</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/1tUPg0N05yc/</link>
		<comments>http://www.onextrapixel.com/2012/02/06/a-beginners-guide-to-using-ajax-in-your-website/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 11:00:45 +0000</pubDate>
		<dc:creator>Kayla Knight</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[guidelines]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=14521</guid>
		<description><![CDATA[AJAX is a method that has been around for a while, yet in the past was not something that was used by many developers. Only recently has it been gaining more attention, especially with the rise in web... <a href="http://www.onextrapixel.com/2012/02/06/a-beginners-guide-to-using-ajax-in-your-website/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/bcDQ8nSCczjIn7Nbv8e7kteBAC0/0/da"><img src="http://feedads.g.doubleclick.net/~a/bcDQ8nSCczjIn7Nbv8e7kteBAC0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bcDQ8nSCczjIn7Nbv8e7kteBAC0/1/da"><img src="http://feedads.g.doubleclick.net/~a/bcDQ8nSCczjIn7Nbv8e7kteBAC0/1/di" border="0" ismap="true"></img></a></p><p><strong>AJAX</strong> is a method that has been around for a while, yet in the past was not something that was used by many developers. Only recently has it been gaining more attention, especially with the rise in <strong>web applications</strong> that demand a better user experience. AJAX is not a programming language in itself, but rather a new way to use JavaScript in relation to a web page, and it's this new technology that can make webpages faster, more user-friendly, and the overall function more efficiently.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2011/12/ajax.jpg" alt="A Beginner&#039;s Guide to Using AJAX in Your Website" title="A Beginner&#039;s Guide to Using AJAX in Your Website" width="580" height="360" class="alignnone size-full wp-image-16337" /><br />
<span id="more-14521"></span><br />
AJAX stands for Asynchronous JavaScript and XML, and is used for updating and interacting with a server via JavaScript, therefore allowing far more functionality with the server without having to reload the webpage. In this article, we'll go over the basics for implementing AJAX into your website.</p>
<h2>If You Know JavaScript, AJAX is Easy</h2>
<p>If you understand at least the basics of JavaScript, you'll be able to pick up AJAX quite easily. You can make a page interact with the user with JavaScript alone, and then based on those user interactions you can send, receive, or update page content in relation to the server's response when needed.</p>
<p>Let's say we have a simple button, and we want it to update some data on the page. Imagine we have some input fields before this that the update button will take care of.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;button onclick=&quot;updateProfile()&quot; type=&quot;button&quot;&gt;Update&lt;/button&gt;
</pre>
<p>As seen in the button code above, upon clicking on the button, we can call a JavaScript function <code>updateProfile()</code>. If you know JavaScript, there's nothing new there. The function that is defined between <code>script</code> tags will then be called:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
function updateProfile(){
	// JavaScript code to be executed
}
&lt;/script&gt;
</pre>
<p>As is best practice, these script tags and all code in between can be placed right before the <code>body</code> tag. Alternatively the JavaScript can be placed within the header <em>(depending on the site structure or specific needs for this page, it may be smarter)</em>. Of course, with larger pieces of code, it should be placed within a JavaScript file <code>.js</code> and the file should be included in the header.</p>
<p>From here on, we can place any code we want executed when that button is pressed inside of this function. Again, nothing new here. With traditional JavaScript, we could manipulate any content that is already in the page, as long as it didn't need any more data from the server. A good example of using JavaScript only can be found here: <a href="http://www.kaylaknight.com/resources/freelance-finances-calculator/">Freelance Finances Calculator</a>.</p>
<p>If we needed additional data from the server, we would need to bring in a server-side scripting language and reload the page entirely. That's where AJAX comes in — to solve this problem. Within the <code>updateProfile()</code> function, we can use AJAX code to interact with the server <em>(via JavaScript!)</em>, and we are now able to retrieve, update, and delete information as needed on the server, no reload required.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
function updateProfile(){
	// JavaScript code to be executed
	// AJAX code will go here as well!
}
&lt;/script&gt;
</pre>
<h2>The XMLHttpRequest and ActiveXObject Objects</h2>
<p>In order to begin using AJAX code, you need to tell the browser that it will be interacting with the server. In JavaScript there are two objects that help AJAX work: the <code>XMLHttpRequest</code> and <code>ActiveXObject</code> objects. While these are the basis for object-oriented programming with JavaScript, you don't need to understand or implement object-oriented concepts to an extent to use AJAX. In fact, we'll walk you through it right here.</p>
<p>Both objects do the same thing, but they are just meant to support different browsers. The objects are meant to exchange and handle data with the server behind the scenes of the webpage; simple as that.</p>
<p>To tell the browser you will be using AJAX, use the following code (Credit to <a href="http://www.w3schools.com/Ajax/ajax_xmlhttprequest_create.asp">W3Schools</a>):</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
function updateProfile(){
	// Create a variable to refer to our request object:
	var xmlhttp;

	if (window.XMLHttpRequest){
		// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}else{
		// code for IE6, IE5
		xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;);
	}
}
&lt;/script&gt;
</pre>
<p>The code above is pretty simple. First, we create a variable that will hold our object; whether it is a <code>XMLHttpRequest</code> or <code>ActiveXObject</code> will be dependent on what browser the user is in. <em>(Remember, they both do the same thing.)</em> If we can detect that our browser can handled the <code>XMLHttpRequest</code> object via <code>window.XMLHttpRequest</code>, then we can set our variable to this object. Otherwise, we should set it to the <code>ActiveXObject</code>.</p>
<p>This will be the start of any AJAX code you place into a website. Note that if you are using multiple functions, it may not be the most efficient solution to declare this code at the beginning of every function. If used within several functions, it would be more efficient to set this variable on page load.</p>
<h2>Receiving Requests from the Server</h2>
<p>Now that AJAX is "all set up" for use in our browser, we can begin the fun part - interacting with our server. Whichever request object is used (based on the browser), there are a set of pre-defined functions we can use to get information from a server via AJAX, send information, or manipulate information.</p>
<p>The first pre-defined property we'll look into is the <code>onreadystatechange</code> property. The does just what it says, it calls the function it holds (see below) when the <code>readyState</code> is changed. The <code>readyState</code> is just the state our server tells us it's in: processing, downloading, or completed.</p>
<pre class="brush: jscript; title: ; notranslate">
xmlhttp.onreadystatechange = function(){
	// This code will be executed each time the readyState changes
}
</pre>
<p>Each <code>readyState</code> is defined by a number, and we can check to see if our current readyState equals that number to process our code dependent on what the server's doing:</p>
<ul>
<li>ajaxRequest.readyState == 0 // request not initialized</li>
<li>ajaxRequest.readyState == 1 // server connection established</li>
<li>ajaxRequest.readyState == 2 // request received</li>
<li>ajaxRequest.readyState == 3 // processing</li>
<li>ajaxRequest.readyState == 4 // completed and response is ready</li>
</ul>
<p>For example, if we wanted to execute some code only after the data or actions we've requested and ready and have our feedback for us, we'd check to make sure our <code>readyState</code> was at 4:</p>
<pre class="brush: jscript; title: ; notranslate">
xmlhttp.onreadystatechange = function(){
	// This code will be executed each time the readyState changes
	if(ajaxRequest.readyState == 4){
		// This code will be executed if our request
		// is completed
	}
}
</pre>
<p>We can access the data we're requesting by using either the <code>responseText</code> or <code>responseXML</code> properties respectively. responseText is for retrieving text-based data, while responseXML can be used for retrieving XML based data. Then, using basic JavaScript again, we can use these properties to assign our feedback from the server in a div, or do whatever else we like with it:</p>
<pre class="brush: jscript; title: ; notranslate">
xmlhttp.onreadystatechange = function(){
  // This code will be executed each time the readyState changes
  if(ajaxRequest.readyState == 4){
     document.getElementById(&quot;myData&quot;).innerHTML=xmlhttp.responseText;
  }
}
</pre>
<p>Hopefully you can understand the logic behind all this, but of course none of the above will do us any good as long as we don't tell our code what we want to request in the first place. We needed to create a function to handle our request first, and the above code simply explains how we'll show our data from the server after we've requested it.</p>
<h2>Sending Requests to the Server</h2>
<p>Like with receiving responses from the server, our request object also has pre-defined properties and functions for dealing with sending requests to the server. Anytime we need to send new information, manipulate information, or send instructions of any type to work with our web application, we'll be sending a request to the server. After we've sent the request, we can turn around and use the function we created above (using <code>onreadystatechange</code>) to see our results.</p>
<p>There are two parts to sending a request to the server via AJAX, as seen in the example below:</p>
<pre class="brush: jscript; title: ; notranslate">
xmlhttp.open(&quot;GET&quot;,&quot;ourPHPCode.php&quot;,true);
xmlhttp.send();
</pre>
<p>The first prebuilt function, <code>open()</code>, let's us define what server-side script we'll be using to communicate with the server. We include our server-side script as the second parameter and it will be processed without refreshing the page. This function also holds a few other arguments that we'll look into more detail soon.</p>
<p>Included in our server side script <code>ourPHPcode.php</code>, we'll include the more in-depth instructions that will work with our server. After AJAX opens the server-side script file via the <code>open()</code> method, we can send those instructions out via the <code>send()</code> method.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
function updateProfile(){
	// Let's first create our request object:
	var xmlhttp;

	if (window.XMLHttpRequest){
		xmlhttp=new XMLHttpRequest();
	}else{
		xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;);
	}

	// This code will be executed each time the readyState changes
	xmlhttp.onreadystatechange = function(){
		if(ajaxRequest.readyState == 4){
			document.getElementById(&quot;myData&quot;).innerHTML=xmlhttp.responseText;
		}
	}

	// We'll send any data to the server through our request object
	xmlhttp.open(&quot;GET&quot;,&quot;ourPHPCode.php&quot;,true);
	xmlhttp.send();
}
&lt;/script&gt;
</pre>
<h4>A Closer Look at Open()</h4>
<p>When we are opening a file to send to the server via AJAX, the most important portion item is the link to our server-side file. Beyond this though, we have two more: the method for sending the request and async.</p>
<pre class="brush: jscript; title: ; notranslate">
open(method,file,async);
Example: open(&quot;POST&quot;, &quot;myFile.aspx&quot;, false);
</pre>
<p>The method for the <code>open()</code> function can either be <code>GET</code> or <code>POST</code>. If you are familiar with PHP <em>(and many other similar languages)</em> and sending data via HTML forms, the concept is much the same. <code>GET</code> can be used in most situations, and you can even send values through an URL like with HTML forms:</p>
<pre class="brush: jscript; title: ; notranslate">
open(&quot;GET&quot;, &quot;ourPHPCode.php?email=test@test.com&amp;firsname=Johnny&amp;lastname=Smith&quot;, false);
</pre>
<p><code>GET</code> will often times get you a cached result, which you may not always want. If you still would like to use the <code>GET</code> method, you can simply create a <em>"new, fresh URL"</em> for the browser to go to by appending a unique ID, so it will send you an uncached result:</p>
<pre class="brush: jscript; title: ; notranslate">
open(&quot;GET&quot;, &quot;ourPHPCode.php?x=&quot;, false);
</pre>
<p><code>POST</code> can be more secure than <code>GET</code>, and also has no size limitations. If you're ever working with data sensitive information <em>(like passwords)</em>, then use "POST".</p>
<p><strong>Async, the last parameter,</strong> can either be set to <code>true</code> or <code>false</code>. You'll want to use true the majority of the time, and false can sometimes be used for smaller requests. Setting asynchronous to true simply means you'll be able to do other functions while your AJAX request is waiting for the server response. <em>(It's recommended.)</em> </p>
<h2>Working with a Server-Side Language</h2>
<p>After we've set up our AJAX to request information from a server-side script and also to handle its response, there's really nothing new or magical about our server-side script. The code is the same, and whatever you do with it will follow the same syntax as always. All AJAX does is help to be the middleman while this script executes and handles all the dirty work, allowing us to eliminate or cut down on the need for page refreshes, and allowing us to execute other functionality on a page while our server-side script is working with the server.</p>
<p>Let's say we simply want to echo out a string <em>(via PHP)</em> when we change some form input. We'll use our function that we created above, which defines our AJAX request object, tells the browser what to request, and where to put the response.</p>
<p>Our HTML file <em>(with our AJAX/JavaScript)</em>:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function updateProfile(){
	// Let's first create our request object:
	var xmlhttp;

	if (window.XMLHttpRequest){
		xmlhttp=new XMLHttpRequest();
	}else{
		xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;);
	}

	// This code will be executed each time the readyState changes
	xmlhttp.onreadystatechange = function(){
		if(ajaxRequest.readyState == 4){
			document.getElementById(&quot;myData&quot;).innerHTML=xmlhttp.responseText;
		}
	}

	// We'll send any data to the server through our request object
	xmlhttp.open(&quot;GET&quot;,&quot;ourPHPCode.php&quot;,true);
	xmlhttp.send();
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;input name='firstName' onChange='updateProfile()' /&gt;

	&lt;div id=&quot;myDate&quot;&gt;&lt;/div&gt;
	&lt;!-- Our response will be placed into the div above,
	thanks to JavaScript's &quot;innerHTML&quot; property. --&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Our PHP file <code>ourPHPCode.php</code>.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
	echo &quot;The input field was changed.&quot;;
?&gt;
</pre>
<p>Using JavaScript's <code>onChange</code> event, we trigger our JavaScript function, <code>updateProfile()</code>. Within this function we've done all our AJAX set up, and sent a request to our PHP file, <code>ourPHPCode.php</code>, which simply echos back our string. Therefore, we use the power of AJAX to echo out this string when our input field is changed. There is no need for refreshing or waiting on a slow response for a server.</p>
<p>Obviously, this example is incredibly simple and very pointless. This is just, at the most basic level, how we can connect a server-side script with an HTML page using the power of AJAX. Within the PHP script, you can take in data from a form (for example if we used the <code>POST</code> method in our <code>open()</code> function, we could just use PHP's <code>$_POST</code> variable to obtain that information), manipulate it, send it to a server, update information in a database, and return a response via PHP's <code>echo</code> statement.</p>
<p>Let's say we have a simple HTML form that asks for a name and email. Below is an example of something more elaborate:</p>
<p>Our HTML/JavaScript page:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function updateProfile(){
	// Let's first create our request object:
	var xmlhttp;

	if (window.XMLHttpRequest){
		xmlhttp=new XMLHttpRequest();
	}else{
		xmlhttp=new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;);
	}

	// This code will be executed each time the readyState changes
	xmlhttp.onreadystatechange = function(){
		if(ajaxRequest.readyState == 4){
			document.getElementById(&quot;myData&quot;).innerHTML=xmlhttp.responseText;
		}
	}

	// We'll send any data to the server through our request object
	xmlhttp.open(&quot;GET&quot;,&quot;ourPHPCode.php&quot;,true);
	xmlhttp.send();
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;

	&lt;form&gt;
	&lt;label&gt;First Name;&lt;/label&gt;&lt;br /&gt;
	&lt;input type='text' name='firstName' /&gt;

	&lt;label&gt;First Name;&lt;/label&gt;&lt;br /&gt;
	&lt;input type='text' name='lastName' /&gt;

	&lt;label&gt;First Name;&lt;/label&gt;&lt;br /&gt;
	&lt;input type='text' name='email' /&gt;

	&lt;input type=submit' onClick='updateProfile()' /&gt;

	&lt;/form&gt;

	&lt;div id=&quot;myDate&quot;&gt;&lt;/div&gt;
	&lt;!-- Our response will be placed into the div above,
		thanks to JavaScript's &quot;innerHTML&quot; property. --&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Our PHP Script:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
	$firstName = $_POST['firstName'];
	$lastName = $_POST['lastName'];
	$email = $_POST['email'];

	$response = '';

	// Now you have variables from the form, and you can do whatever with them:
	// validate them, update a database, insert them into a database, or whatever.
	// You can do whatever you'd normally do with regular PHP here.

	// You can then create a response variable, set it to whatever value you'd
	// like to send back to the user, and AJAX will update it automatically.

	// Examples:

	if(// Email isn't valid){
		$response = &quot;The email address you entered isn't valid.&quot;;
	}

	if(// Everything checks out ok and was submitted properly){
		$response = &quot;Your profile has been updated!&quot;;
	}

	echo $response;
?&gt;
</pre>
<p>The above shows how we can manipulate form data, and one can see that there's no difference in how we use our PHP code to work with a server. We could also include a link to a database connection and work with a database with the information we grabbed from the same page. Just like an HTML form or otherwise can use <code>POST</code> to send data, so can AJAX. From a server-side script's perspective, it's all the same.</p>
<h2>Conclusion</h2>
<p>AJAX is a revolution to web technology, allowing our client-side scripting to reach server data as needed, yet still allowing us to code with the faster and often times more user-friendly benefits of client-side. It's been around for a while, but it's great to see now how AJAX is really taking off as common practice.</p>
<p>While there are endless tutorials on the web for doing specific things with AJAX, such as creating chat boxes, live feeds, updating info on the fly, and so much more, it's more important than ever to understand the basis of how AJAX works. Having a true understanding of AJAX can help any developer to use the technology to the fullest and in a wide variety of siutations most efficiently.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/01/16/web-design-say-no-to-spec/" title="Web Design: Say No to Spec">Web Design: Say No to Spec</a></li><li><a href="http://www.onextrapixel.com/2011/12/12/building-web-apps-file-and-directory-structures/" title="Building Web Apps: File and Directory Structures">Building Web Apps: File and Directory Structures</a></li><li><a href="http://www.onextrapixel.com/2011/12/01/creating-a-groupon-like-count-down-timer/" title="Creating a Groupon-Like Count Down Timer">Creating a Groupon-Like Count Down Timer</a></li><li><a href="http://www.onextrapixel.com/2011/11/14/design-research-methods-and-perspectives/" title="Design Research: Methods and Perspectives">Design Research: Methods and Perspectives</a></li></ul><hr />
<p>Written by: Kayla Knight for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/02/06/a-beginners-guide-to-using-ajax-in-your-website/#comments">No comment</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/development/" title="View all posts in Development" rel="category tag">Development</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=1tUPg0N05yc:zJXEN-nwN3Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=1tUPg0N05yc:zJXEN-nwN3Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=1tUPg0N05yc:zJXEN-nwN3Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=1tUPg0N05yc:zJXEN-nwN3Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=1tUPg0N05yc:zJXEN-nwN3Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=1tUPg0N05yc:zJXEN-nwN3Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=1tUPg0N05yc:zJXEN-nwN3Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=1tUPg0N05yc:zJXEN-nwN3Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=1tUPg0N05yc:zJXEN-nwN3Y:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/1tUPg0N05yc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/02/06/a-beginners-guide-to-using-ajax-in-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/02/06/a-beginners-guide-to-using-ajax-in-your-website/</feedburner:origLink></item>
		<item>
		<title>40 Examples of Forced Perspective Photography</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/pmPynvZNVj0/</link>
		<comments>http://www.onextrapixel.com/2012/02/03/40-examples-of-forced-perspective-photography/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 11:30:57 +0000</pubDate>
		<dc:creator>Jameel Khan</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=15947</guid>
		<description><![CDATA[In this round up, we have compiled a collection of some wonderful forced perspective photographs that you will definitely love to browse. Forced perspective photography basically is a special technique in which human perception is manipulated with the... <a href="http://www.onextrapixel.com/2012/02/03/40-examples-of-forced-perspective-photography/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/_7kK_3CVL-xjN2J18-R_42jnTVg/0/da"><img src="http://feedads.g.doubleclick.net/~a/_7kK_3CVL-xjN2J18-R_42jnTVg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_7kK_3CVL-xjN2J18-R_42jnTVg/1/da"><img src="http://feedads.g.doubleclick.net/~a/_7kK_3CVL-xjN2J18-R_42jnTVg/1/di" border="0" ismap="true"></img></a></p><p>In this round up, we have compiled a collection of some wonderful <strong>forced perspective</strong> photographs that you will definitely love to browse. Forced perspective photography basically is a special technique in which human perception is manipulated with the help of <strong>optical illusion</strong>. You can make things appear smaller or larger than they actually are.</p>
<p>Here we have showcased some really incredible examples of forced perspective photography. All the photographs in this compilation are hand-picked for your inspiration. These photographs demonstrate how you can create a visual interest that grasps the attention of the viewers.</p>
<p><img class="alignnone size-full wp-image-15948" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-cover.jpg" alt="Forced Perspective Photography" width="580" height="360" /></p>
<p><span id="more-15947"></span></p>
<h2>Forced Perspective Photography</h2>
<p><a title="David und Goliat" href="http://www.flickr.com/photos/lucidlab/4942370541/">David und Goliat<br />
</a><a href="http://www.flickr.com/photos/lucidlab/4942370541/"><img class="alignnone size-full wp-image-15949" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-1.jpg" alt="David und Goliat" width="580" height="388" /></a><a title="David und Goliat" href="http://www.flickr.com/photos/lucidlab/4942370541/"><br />
</a></p>
<p><a title="Kiss On The Forehead" href="http://www.flickr.com/photos/29346078@N07/3506056305/">Kiss On The Forehead</a><br />
<a href="http://www.flickr.com/photos/29346078@N07/3506056305/"><img class="alignnone size-full wp-image-15950" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-2.jpg" alt="Kiss On The Forehead" width="580" height="387" /></a></p>
<p><a title="Perspective gourmande" href="http://www.flickr.com/photos/twiga_269/3560041515/">Perspective gourmande ~ Greedy Perspective</a><br />
<a href="http://www.flickr.com/photos/twiga_269/3560041515/"><img class="alignnone size-full wp-image-15951" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-3.jpg" alt="Perspective gourmande" width="580" height="435" /></a></p>
<p><a title="Suzi holding the Leaning Tower of Pisa" href="http://www.flickr.com/photos/martyportier/3222349165/">Suzi holding the Leaning Tower of Pisa, Italy '08<br />
</a><a href="http://www.flickr.com/photos/martyportier/3222349165/"><img class="alignnone size-full wp-image-15952" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-4.jpg" alt="Suzi holding the Leaning Tower of Pisa" width="580" height="773" /></a><a title="Suzi holding the Leaning Tower of Pisa" href="http://www.flickr.com/photos/martyportier/3222349165/"><br />
</a></p>
<p><a title="SKYraker" href="http://www.flickr.com/photos/h19/3416747566/">SKYraker</a><br />
<a href="http://www.flickr.com/photos/h19/3416747566/"><img class="alignnone size-full wp-image-15953" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-5.jpg" alt="SKYraker" width="580" height="435" /></a></p>
<p><a title="Nooooooo, por favoooooooooor!!" href="http://www.flickr.com/photos/marinacast/2235316998/">Nooooooo, por favoooooooooor!!<br />
</a><a href="http://www.flickr.com/photos/marinacast/2235316998/"><img class="alignnone size-full wp-image-15954" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-6.jpg" alt="Nooooooo, por favoooooooooor!!" width="580" height="435" /></a><a title="Nooooooo, por favoooooooooor!!" href="http://www.flickr.com/photos/marinacast/2235316998/"><br />
</a></p>
<p><a title="Touch my sun" href="http://1x.com/photo/40892/category/creative-edit/latest-additions/touch-my-sun">Touch my sun</a><br />
<a href="http://1x.com/photo/40892/category/creative-edit/latest-additions/touch-my-sun"><img class="alignnone size-full wp-image-15955" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-7.jpg" alt="Touch my sun" width="580" height="664" /></a></p>
<p><a title="Hey, Let go...." href="http://www.flickr.com/photos/fokket/160560928/">Hey, Let go....</a><br />
<a href="http://www.flickr.com/photos/fokket/160560928/"><img class="alignnone size-full wp-image-15956" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-8.jpg" alt="Hey, Let go...." width="580" height="435" /></a></p>
<p><a title="Bonfire" href="http://www.flickr.com/photos/28767344@N07/2856379041/">Bonfire</a><br />
<a href="http://www.flickr.com/photos/28767344@N07/2856379041/"><img class="alignnone size-full wp-image-15957" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-9.jpg" alt="Bonfire" width="580" height="435" /></a></p>
<p><a title="Blowing in the Wind" href="http://www.flickr.com/photos/45520190@N06/4802301439/">Blowing in the Wind</a><br />
<a href="http://www.flickr.com/photos/45520190@N06/4802301439/"><img class="alignnone size-full wp-image-15958" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-10.jpg" alt="Blowing in the Wind" width="580" height="387" /></a></p>
<p><a title="Bolivia, Salar de Uvuni-74" href="http://www.flickr.com/photos/tr1stan27/4019178056">Bolivia, Salar de Uyuni-74</a><br />
<a href="http://www.flickr.com/photos/tr1stan27/4019178056"><img class="alignnone size-full wp-image-15959" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-11.jpg" alt="Bolivia, Salar de Uvuni-74" width="580" height="656" /></a></p>
<p><a title="Are You A Little Woodland Pixie?" href="http://www.flickr.com/photos/danielsdoyon/3004104877/">Are You A Little Woodland Pixie?</a><br />
<a href="http://www.flickr.com/photos/danielsdoyon/3004104877/"><img class="alignnone size-full wp-image-15960" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-12.jpg" alt="Are You A Little Woodland Pixie?" width="580" height="766" /></a></p>
<p><a title="Clearing the Waters" href="http://www.flickr.com/photos/diffused/3741853202/">Clearing the Waters</a><br />
<a href="http://www.flickr.com/photos/diffused/3741853202/"><img class="alignnone size-full wp-image-15961" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-13.jpg" alt="Clearing the Waters" width="580" height="387" /></a></p>
<p><a title="I need TIME" href="http://www.flickr.com/photos/h19/3552720079/">I need TIME</a><br />
<a href="http://www.flickr.com/photos/h19/3552720079/"><img class="alignnone size-full wp-image-15962" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-14.jpg" alt="I need TIME" width="580" height="493" /></a></p>
<p><a title="Balancing Act" href="http://www.flickr.com/photos/ericmccune/4691266996/">Balancing Act</a><br />
<a href="http://www.flickr.com/photos/ericmccune/4691266996/"><img class="alignnone size-full wp-image-15963" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-15.jpg" alt="Balancing Act" width="580" height="388" /></a></p>
<p><a title="Tim tastes the rainbow" href="http://www.flickr.com/photos/clickclickclickclick/4979533476/">Tim tastes the rainbow</a><br />
<a href="http://www.flickr.com/photos/clickclickclickclick/4979533476/"><img class="alignnone size-full wp-image-15964" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-16.jpg" alt="Tim tastes the rainbow" width="580" height="872" /></a></p>
<p><a title="Jirrupin eats the moon" href="http://www.flickr.com/photos/29114895@N00/671932246/">Jirrupin eats the moon</a><br />
<a href="http://www.flickr.com/photos/29114895@N00/671932246/"><img class="alignnone size-full wp-image-15965" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-17.jpg" alt="Jirrupin eats the moon" width="580" height="385" /></a></p>
<p><a title="Coffee Break...." href="http://www.flickr.com/photos/johnhurson/247424429">Coffee Break....</a><br />
<a href="http://www.flickr.com/photos/johnhurson/247424429"><img class="alignnone size-full wp-image-15966" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-18.jpg" alt="Coffee Break...." width="580" height="435" /></a></p>
<p><a title="Lulu sunfingers" href="http://www.flickr.com/photos/rse75/2427292398">Lulu sunfingers</a><br />
<a href="http://www.flickr.com/photos/rse75/2427292398"><img class="alignnone size-full wp-image-15967" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-19.jpg" alt="Lulu sunfingers" width="580" height="445" /></a></p>
<p><a title="Patrick 1" href="http://www.flickr.com/photos/36342107@N04/3359722182/">Patrick 1</a><br />
<a href="http://www.flickr.com/photos/36342107@N04/3359722182/"><img class="alignnone size-full wp-image-15968" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-20.jpg" alt="Patrick 1" width="580" height="771" /></a></p>
<p><a title="Forced Perspective" href="http://www.flickr.com/photos/luizadriano/2847557105/">Forced Perspective</a><br />
<a href="http://www.flickr.com/photos/luizadriano/2847557105/"><img class="alignnone size-full wp-image-15969" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-21.jpg" alt="Forced Perspective" width="580" height="385" /></a></p>
<p><a title="Pisa, I love you!" href="http://www.flickr.com/photos/margarita_v/5660956818/">Pisa, I love you!</a><br />
<a href="http://www.flickr.com/photos/margarita_v/5660956818/"><img class="alignnone size-full wp-image-15970" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-22.jpg" alt="Pisa, I love you!" width="580" height="773" /></a></p>
<p><a title="366-317" href="http://www.flickr.com/photos/10649739@N00/3024953945/">366-317</a><br />
<a href="http://www.flickr.com/photos/10649739@N00/3024953945/"><img class="alignnone size-full wp-image-15971" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-23.jpg" alt="366-317" width="580" height="387" /></a></p>
<p><a title="I Guess I Overpacked" href="http://www.flickr.com/photos/alan-travels/3760200063/">I Guess I Overpacked</a><br />
<a href="http://www.flickr.com/photos/alan-travels/3760200063/"><img class="alignnone size-full wp-image-15972" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-24.jpg" alt="I Guess I Overpacked" width="580" height="435" /></a></p>
<p><a title="Must have stepped in some manure" href="http://www.flickr.com/photos/flibble/4991178634/">Must have stepped in some manure</a><br />
<a href="http://www.flickr.com/photos/flibble/4991178634/"><img class="alignnone size-full wp-image-15973" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-25.jpg" alt="Must have stepped in some manure" width="580" height="390" /></a></p>
<p><a title="Brincando com a perpectiva" href="http://www.flickr.com/photos/alexandrend/3702387938/">Brincando com a perpectiva</a><br />
<a href="http://www.flickr.com/photos/alexandrend/3702387938/"><img class="alignnone size-full wp-image-15974" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-27.jpg" alt="Brincando com a perpectiva" width="580" height="668" /></a></p>
<p><a title="Roadtrip North of Salta" href="http://www.flickr.com/photos/mansszat/3736037927/">Roadtrip North of Salta: kaartje voor mn neefje</a><br />
<a href="http://www.flickr.com/photos/mansszat/3736037927/"><img class="alignnone size-full wp-image-15975" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-28.jpg" alt="Roadtrip North of Salta" width="580" height="435" /></a></p>
<p><a title="Please don't fall, cloud" href="http://p0rg.deviantart.com/art/please-don-t-fall-cloud-82369686">Please don't fall, cloud</a><br />
<a href="http://p0rg.deviantart.com/art/please-don-t-fall-cloud-82369686"><img class="alignnone size-full wp-image-15976" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-29.jpg" alt="Please don't fall, cloud" width="580" height="580" /></a></p>
<p><a title="Camel Kisser" href="http://www.flickr.com/photos/sebr/423875652/">Camel Kisser</a><br />
<a href="http://www.flickr.com/photos/sebr/423875652/"><img class="alignnone size-full wp-image-15977" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-30.jpg" alt="Camel Kisser" width="580" height="435" /></a></p>
<p><a title="Being Crushed" href="http://www.flickr.com/photos/danoxlade/3330768897/">Being Crushed</a><br />
<a href="http://www.flickr.com/photos/danoxlade/3330768897/"><img class="alignnone size-full wp-image-15978" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-31.jpg" alt="Being Crushed" width="580" height="386" /></a></p>
<p><a title="Fixing the WA Monument" href="http://www.flickr.com/photos/mjsmith01/4677252480/">Fixing the WA Monument</a><br />
<a href="http://www.flickr.com/photos/mjsmith01/4677252480/"><img class="alignnone size-full wp-image-15979" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-32.jpg" alt="Fixing the WA Monument" width="580" height="435" /></a></p>
<p><a title="Shyness" href="http://1x.com/photo/32452/">Shyness</a><br />
<a href="http://1x.com/photo/32452/"><img class="alignnone size-full wp-image-15980" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-33.jpg" alt="Shyness" width="580" height="405" /></a></p>
<p><a title="Photography" href="http://www.photoforum.ru/photo/409209/index.en.html">Photography</a><br />
<a href="http://www.photoforum.ru/photo/409209/index.en.html"><img class="alignnone size-full wp-image-15981" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-34.jpg" alt="Photography" width="580" height="532" /></a></p>
<p><a title="Scara perfecta (a perfect stairway)" href="http://1x.com/photo/14303/portfolio/6249/">Scara perfecta (a perfect stairway)</a><br />
<a href="http://1x.com/photo/14303/portfolio/6249/"><img class="alignnone size-full wp-image-15982" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-35.jpg" alt="Scara perfecta (a perfect stairway)" width="580" height="402" /></a></p>
<p><a title="Saad" href="http://www.flickr.com/photos/saadlibya/2558736210/">Saad</a><br />
<a href="http://www.flickr.com/photos/saadlibya/2558736210/"><img class="alignnone size-full wp-image-15983" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-36.jpg" alt="Saad" width="580" height="388" /></a></p>
<p><a title="The kontraptionist" href="http://www.flickr.com/photos/sgoralnick/4484690260/">The kontraptionist</a><br />
<a href="http://www.flickr.com/photos/sgoralnick/4484690260/"><img class="alignnone size-full wp-image-15984" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-37.jpg" alt="The kontraptionist" width="580" height="386" /></a></p>
<p><a title="Flying on the Rooftops" href="http://1x.com/photo/34230/">Flying on the Rooftops</a><br />
<a href="http://1x.com/photo/34230/"><img class="alignnone size-full wp-image-15985" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-38.jpg" alt="Flying on the Rooftops" width="580" height="576" /></a></p>
<p><a title="The Kafkaesque Metamorphosis of my Wife" href="http://1x.com/?viewpic=12915">The Kafkaesque Metamorphosis of my Wife</a><br />
<a href="http://1x.com/?viewpic=12915"><img class="alignnone size-full wp-image-15986" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-39.jpg" alt="The Kafkaesque Metamorphosis of my Wife" width="580" height="390" /></a></p>
<p><a title="The orange balloon" href="http://1x.com/photo/36455/">The orange balloon</a><br />
<a href="http://1x.com/photo/36455/"><img class="alignnone size-full wp-image-15987" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-40.jpg" alt="The orange balloon" width="580" height="388" /></a></p>
<p><a title="Baskeeeeett" href="http://1x.com/photo/40902/">Baskeeeeett</a><br />
<a href="http://1x.com/photo/40902/"><img class="alignnone size-full wp-image-15988" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-41.jpg" alt="Baskeeeeett" width="580" height="474" /></a></p>
<p><a title="The Balcony (Tribute to P. Ramette)" href="http://1x.com/photo/34537/">The Balcony (Tribute to P. Ramette)</a><br />
<a href="http://1x.com/photo/34537/"><img class="alignnone size-full wp-image-15989" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/forced-perspective-42.jpg" alt="The Balcony (Tribute to P. Ramette)" width="580" height="696" /></a></p>
<h2>Conclusion</h2>
<p>In this round up, you have seen some of the best and truly unbelievable examples of forced perspective photography. Feel free to share your opinion with us via the comments section below.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2011/12/20/stock-photo-giveaway-5x-50-credit-from-depositphotos/" title="Stock Photo Giveaway: 5x $50 Credit from Depositphotos">Stock Photo Giveaway: 5x $50 Credit from Depositphotos</a></li><li><a href="http://www.onextrapixel.com/2011/12/19/architecture-photography-appreciation-of-man-made-structures/" title="Architecture Photography: Appreciation of Man-made Structures">Architecture Photography: Appreciation of Man-made Structures</a></li><li><a href="http://www.onextrapixel.com/2011/12/05/30-examples-of-shallow-depth-of-field-photography/" title="30+ Examples of Shallow Depth of Field Photography">30+ Examples of Shallow Depth of Field Photography</a></li><li><a href="http://www.onextrapixel.com/2011/06/23/47-stunning-and-creative-examples-of-silhouette-photography/" title="47 Stunning and Creative Examples of Silhouette Photography">47 Stunning and Creative Examples of Silhouette Photography</a></li></ul><hr />
<p>Written by: Jameel Khan for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/02/03/40-examples-of-forced-perspective-photography/#comments">4 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/inspiration/" title="View all posts in Inspiration" rel="category tag">Inspiration</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=pmPynvZNVj0:E9yvR0Qb7Xo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=pmPynvZNVj0:E9yvR0Qb7Xo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=pmPynvZNVj0:E9yvR0Qb7Xo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=pmPynvZNVj0:E9yvR0Qb7Xo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=pmPynvZNVj0:E9yvR0Qb7Xo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=pmPynvZNVj0:E9yvR0Qb7Xo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=pmPynvZNVj0:E9yvR0Qb7Xo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=pmPynvZNVj0:E9yvR0Qb7Xo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=pmPynvZNVj0:E9yvR0Qb7Xo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/pmPynvZNVj0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/02/03/40-examples-of-forced-perspective-photography/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/02/03/40-examples-of-forced-perspective-photography/</feedburner:origLink></item>
		<item>
		<title>Showcase of Rainbow Elements in Web Design</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/ntXpkZaA69g/</link>
		<comments>http://www.onextrapixel.com/2012/02/02/showcase-of-rainbow-elements-in-web-design/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 11:00:07 +0000</pubDate>
		<dc:creator>Tomas Laurinavicius</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[colour]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=16133</guid>
		<description><![CDATA[One of the best sources of inspiration for artists and designers is nature. You can see lots of artwork inspired by nature, artists and designers use colors, textures, objects and photos of nature in their work. The rainbow... <a href="http://www.onextrapixel.com/2012/02/02/showcase-of-rainbow-elements-in-web-design/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/_xoE9fkhWXuD9AJPqAmFzSEHTBc/0/da"><img src="http://feedads.g.doubleclick.net/~a/_xoE9fkhWXuD9AJPqAmFzSEHTBc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_xoE9fkhWXuD9AJPqAmFzSEHTBc/1/da"><img src="http://feedads.g.doubleclick.net/~a/_xoE9fkhWXuD9AJPqAmFzSEHTBc/1/di" border="0" ismap="true"></img></a></p><p>One of the best sources of <em>inspiration</em> for artists and designers is nature. You can see lots of artwork inspired by nature, artists and designers use <strong>colors, textures, objects</strong> and <strong>photos</strong> of nature in their work. The rainbow is definitely one of the most colorful nature objects which inspires everyone. In this showcase I have collected some colorful websites with <strong>rainbow elements</strong>. Some of these use lots of colors, others use colorful lines similar to those of the rainbow while others use actual rainbow images.</p>
<p><img class="alignnone size-full wp-image-16134" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/rainbow-elements-cover.jpg" alt="Rainbow Elements in Web Design" width="580" height="360" /><br />
<span id="more-16133"></span></p>
<h2>Showcase of Rainbow Elements in Web Design</h2>
<p>In this web design showcase you will find 25 impressive examples of rainbow inspired websites with short descriptions.</p>
<p><a title="Designfabrika" href="http://designfabrika.com/">Designfabrika</a><br />
Designfabrika uses a beautiful combination of a wood texture and a rainbow inspired background.</p>
<p><a href="http://designfabrika.com/"><img class="alignnone size-full wp-image-16135" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/01-rainbow-elements-designfabrika.jpg" alt="Designfabrika" width="580" height="400" /></a></p>
<p><a title="Instagallery" href="http://instagalleryapp.com/">Instagallery</a><br />
A small accent of rainbow on the left side of the website adds some identity and makes it stand out.</p>
<p><a href="http://instagalleryapp.com/"><img class="alignnone size-full wp-image-16136" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/02-rainbow-elements-instagalleryapp.jpg" alt="Instagallery" width="580" height="400" /></a></p>
<p><a title="Nybble Designs" href="http://www.nybbledesigns.com/">Nybble Designs</a><br />
On this website you can see rainbow inspired elements in the background.</p>
<p><a href="http://www.nybbledesigns.com/"><img class="alignnone size-full wp-image-16137" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/03-rainbow-elements-nybbledesigns.jpg" alt="Nybble Designs" width="580" height="400" /></a></p>
<p><a title="AdaptD" href="http://adaptd.com/">AdaptD</a><br />
Another website using rainbow inspired lines to add some personality to the website.</p>
<p><a href="http://adaptd.com/"><img class="alignnone size-full wp-image-16138" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/04-rainbow-elements-adaptd.jpg" alt="AdaptD" width="580" height="400" /></a></p>
<p><a title="MULTIWAYS" href="http://www.multiways.com/">MULTIWAYS</a><br />
Only 3 colors but you can see that it was influenced by the rainbow, on the right side you can see a simple 3-color rainbow.</p>
<p><a href="http://www.multiways.com/"><img class="alignnone size-full wp-image-16139" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/05-rainbow-elements-multiways.jpg" alt="MULTIWAYS" width="580" height="400" /></a></p>
<p><a title="FeedStitch" href="http://feedstitch.com/">FeedStitch</a><br />
Lots of different color lines have some similarities to an ordinary rainbow.</p>
<p><a href="http://feedstitch.com/"><img class="alignnone size-full wp-image-16140" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/06-rainbow-elements-feedstitch.jpg" alt="FeedStitch" width="580" height="400" /></a></p>
<p><a title="Alexander Zhestkov" href="http://azhestkov.ru/">Alexander Zhestkov</a><br />
Why is this website in this showcase, you'll ask. It's here because it's based on different color lines and that's one of the signs that it's inspired by the rainbow.</p>
<p><a href="http://azhestkov.ru/"><img class="alignnone size-full wp-image-16141" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/07-rainbow-elements-azhestkov.jpg" alt="Alexander Zhestkov" width="580" height="400" /></a></p>
<p><a title="Eating in Sydney" href="http://www.eatinginsydney.com/">Eating in Sydney</a><br />
Beautiful and subtle colors used to create a top menu on the right side of the website. Looks really nice and refreshing.</p>
<p><a href="http://www.eatinginsydney.com/"><img class="alignnone size-full wp-image-16142" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/08-rainbow-elements-eatinginsydney.jpg" alt="Eating in Sydney" width="580" height="400" /></a></p>
<p><a title="For The Record" href="http://fortherecord.simonfosterdesign.com/">For The Record</a><br />
Retro website with plain grey background and a colorful rainbow inspired block.</p>
<p><a href="http://fortherecord.simonfosterdesign.com/"><img class="alignnone size-full wp-image-16143" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/09-rainbow-elements-fortherecord.jpg" alt="For The Record" width="580" height="400" /></a></p>
<p><a title="LOLWUT" href="http://flashtml5.com/labs/lolwut/">LOLWUT</a><br />
Nice HTML5-based game with vivid colors and a non-traditional rainbow in the background.</p>
<p><a href="http://flashtml5.com/labs/lolwut/"><img class="alignnone size-full wp-image-16144" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/10-rainbow-elements-lolwut.jpg" alt="LOLWUT" width="580" height="400" /></a></p>
<p><a title="Truly Design" href="http://www.truly-design.com/">Truly Design</a><br />
Truly Design website uses four colors to imitate a straight rainbow on their website.</p>
<p><a href="http://www.truly-design.com/"><img class="alignnone size-full wp-image-16145" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/11-rainbow-elements-trulydesign.jpg" alt="Truly Design" width="580" height="400" /></a></p>
<p><a title="OrangeYouGlad" href="http://www.orangeyouglad.com/">OrangeYouGlad</a><br />
Another non-traditional rainbow used on this website creates some identity for the brand.</p>
<p><a href="http://www.orangeyouglad.com/"><img class="alignnone size-full wp-image-16146" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/12-rainbow-elements-orangeyouglad.jpg" alt="OrangeYouGlad" width="580" height="400" /></a></p>
<p><a title="Elliot Lepers" href="http://viteungraphiste.com/">Elliot Lepers</a><br />
Lots of colors used in one shape definitely inspired by the rainbow.</p>
<p><a href="http://viteungraphiste.com/"><img class="alignnone size-full wp-image-16147" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/13-rainbow-elements-viteungraphiste.jpg" alt="Elliot Lepers" width="580" height="400" /></a></p>
<p><a title="Manchester Craft Mania" href="http://www.manchestercraftmafia.co.uk/">Manchester Craft Mafia</a><br />
Another website with visible contrast. A gray background and colorful elements inspired by the colors of the rainbow.</p>
<p><a href="http://www.manchestercraftmafia.co.uk/"><img class="alignnone size-full wp-image-16148" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/14-rainbow-elements-manchestercraftmafia.jpg" alt="Manchester Craft Mafia" width="580" height="400" /></a></p>
<p><a title="Hughes" href="http://wearehughes.com/">Hughes</a><br />
The big block of colors is reminiscent of the color combination of the rainbow</p>
<p><a href="http://wearehughes.com/"><img class="alignnone size-full wp-image-16149" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/15-rainbow-elements-wearehughes.jpg" alt="Hughes" width="580" height="400" /></a>.</p>
<p><a title="Pretty Production" href="http://www.prettyproduction.com/">Pretty Production</a><br />
Stylized dog in different colors creates the impression of the rainbow.</p>
<p><a href="http://www.prettyproduction.com/"><img class="alignnone size-full wp-image-16150" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/16-rainbow-elements-prettyproduction.jpg" alt="Pretty Production" width="580" height="400" /></a></p>
<p><a title="Epic" href="http://epic.net/">Epic</a><br />
Epic creative agency logo is definitely influenced by the rainbow and you will notice a few different colored lines on the main agency page.</p>
<p><a href="http://epic.net/"><img class="alignnone size-full wp-image-16151" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/17-rainbow-elements-epic.jpg" alt="Epic" width="580" height="400" /></a></p>
<p><a title="The Flood Plain" href="http://www.thefloodplain.com/">The Flood Plain</a><br />
A piano in rainbow colors gives an energetic and fresh look for the website.</p>
<p><a href="http://www.thefloodplain.com/"><img class="alignnone size-full wp-image-16152" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/18-rainbow-elements-thefloodplain.jpg" alt="The Flood Plain" width="580" height="400" /></a></p>
<p><a title="Aspanovas Bizkaia" href="http://www.aspanovasbizkaia.org/">Aspanovas Bizkaia</a><br />
Aspanovas Bizkaia website is decorated with nice colorful socks and rainbow inspired background graphics.</p>
<p><a href="http://www.aspanovasbizkaia.org/"><img class="alignnone size-full wp-image-16153" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/19-rainbow-elements-aspanovasbizkaia.jpg" alt="Aspanovas Bizkaia" width="580" height="400" /></a></p>
<p><a title="Showtime Designer" href="http://www.showtimedesigner.com/">ShowtimeDesigner</a><br />
Another example of non-traditional rainbow colors. ShowtimeDesigner uses orange, pink, green and purple to create a rainbow-like background element.</p>
<p><a href="http://www.showtimedesigner.com/"><img class="alignnone size-full wp-image-16154" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/20-rainbow-elements-showtimedesigner.jpg" alt="ShowtimeDesigner" width="580" height="400" /></a></p>
<p><a title="Colourpixel" href="http://www.colourpixel.com/">Colourpixel</a><br />
Small rainbows are highly visible on the pixelated orange background.</p>
<p><a href="http://www.colourpixel.com/"><img class="alignnone size-full wp-image-16155" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/21-rainbow-elements-colourpixel.jpg" alt="Colourpixel" width="580" height="400" /></a></p>
<p><a title="F5" href="http://ffive.com.au/">F5</a><br />
You can see a nice rainbow behind the mountains on the right side of the website.</p>
<p><a href="http://ffive.com.au/"><img class="alignnone size-full wp-image-16156" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/22-rainbow-elements-ffive.jpg" alt="F5" width="580" height="400" /></a></p>
<p><a title="Beautiful 2.0" href="http://www.beautiful2.com/">Beautiful 2.0</a><br />
Grunge style website which uses rainbow inspired colors for the background.</p>
<p><a href="http://www.beautiful2.com/"><img class="alignnone size-full wp-image-16157" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/23-rainbow-elements-beautiful2.jpg" alt="Beautiful 2.0" width="580" height="400" /></a></p>
<p><a title="WebTek" href="http://webtek.cz/">WebTek</a><br />
The WebTek background is very colorful and quite modern. You can easily notice the influence of rainbow colors.</p>
<p><a href="http://webtek.cz/"><img class="alignnone size-full wp-image-16158" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/24-rainbow-elements-webtek.jpg" alt="WebTek" width="580" height="400" /></a></p>
<p><a title="Elastic Media" href="http://www.elastic-media.com/">Elastic Media</a><br />
A small detail which looks like a straight rainbow is used on the header of the website. Simple and beautiful.</p>
<p><a href="http://www.elastic-media.com/"><img class="alignnone size-full wp-image-16159" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/25-rainbow-elements-elasticmedia.jpg" alt="Elastic Media" width="580" height="400" /></a></p>
<h2>Conclusion</h2>
<p>As you probably noticed, rainbow inspired websites use lots of colors and various combinations to stand out from the crowd. The most common techniques used are visible contrast when colorful lines are being used on dark backgrounds, rainbow elements placed on one side or corner of the website, and actual rainbows used on the background.</p>
<p>Which website looks most attractive for you? Would you use a rainbow in your projects? Let's discuss these questions in the comments section below.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2011/01/13/the-art-of-coordinating-colours-in-web-design/" title="The Art of Coordinating Colours in Web Design">The Art of Coordinating Colours in Web Design</a></li><li><a href="http://www.onextrapixel.com/2011/01/06/the-designers-republic-guide-to-catchy-color-combinations/" title="The Designers Republic Guide to Catchy Color Combinations">The Designers Republic Guide to Catchy Color Combinations</a></li><li><a href="http://www.onextrapixel.com/2010/12/30/golden-wonder-using-gold-colour-to-design-websites/" title="Golden Wonder: Using Gold Colour to Design Websites">Golden Wonder: Using Gold Colour to Design Websites</a></li><li><a href="http://www.onextrapixel.com/2010/11/25/what-does-your-websites-color-scheme-reveal-about-you/" title="What Does Your Website’s Color Scheme Reveal About You?">What Does Your Website’s Color Scheme Reveal About You?</a></li></ul><hr />
<p>Written by: Tomas Laurinavicius for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/02/02/showcase-of-rainbow-elements-in-web-design/#comments">8 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/design/" title="View all posts in Design" rel="category tag">Design</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ntXpkZaA69g:4u55KC_i1Ao:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ntXpkZaA69g:4u55KC_i1Ao:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ntXpkZaA69g:4u55KC_i1Ao:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ntXpkZaA69g:4u55KC_i1Ao:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ntXpkZaA69g:4u55KC_i1Ao:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ntXpkZaA69g:4u55KC_i1Ao:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ntXpkZaA69g:4u55KC_i1Ao:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ntXpkZaA69g:4u55KC_i1Ao:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ntXpkZaA69g:4u55KC_i1Ao:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/ntXpkZaA69g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/02/02/showcase-of-rainbow-elements-in-web-design/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/02/02/showcase-of-rainbow-elements-in-web-design/</feedburner:origLink></item>
		<item>
		<title>HTML5 Ads—the Burgeoning Power in the Ad Industry</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/TnMcKoyR994/</link>
		<comments>http://www.onextrapixel.com/2012/02/01/html5-ads-the-burgeoning-power-in-the-ad-industry/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 11:00:49 +0000</pubDate>
		<dc:creator>Viki Hoo</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=16000</guid>
		<description><![CDATA[Online advertisements, whether you like it or not, have existed since the internet came into being. Traditionally in the internet industry, ads were mainly created with Flash animation or video; however, as HTML5 rises like a shining star,... <a href="http://www.onextrapixel.com/2012/02/01/html5-ads-the-burgeoning-power-in-the-ad-industry/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/7fpdCLAisi4tpWuktyypxGJUDz4/0/da"><img src="http://feedads.g.doubleclick.net/~a/7fpdCLAisi4tpWuktyypxGJUDz4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7fpdCLAisi4tpWuktyypxGJUDz4/1/da"><img src="http://feedads.g.doubleclick.net/~a/7fpdCLAisi4tpWuktyypxGJUDz4/1/di" border="0" ismap="true"></img></a></p><p>Online advertisements, whether you like it or not, have existed since the internet came into being. Traditionally in the internet industry, ads were mainly created with Flash animation or video; however, as HTML5 rises like a shining star, HTML5 ads are becoming a burgeoning market. So in 2012, we are going to see more ads transform from <a href="http://www.flash-to-html5.net/">Flash to HTML5</a>, especially in mobile platforms.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/html5ads.jpg" alt="HTML5 Ads—the Burgeoning Power in the Ad Industry" title="HTML5 Ads—the Burgeoning Power in the Ad Industry" width="580" height="360" class="alignnone size-full wp-image-16208" /><br />
<span id="more-16000"></span></p>
<h2>Why HTML5 Ads?</h2>
<p>Choosing the right tools for a project means using the simplest tool with the lowest cost that meets all your needs--something HTML5 is capable of doing. Ads, whether animation or video, can be played by HTML5 <code>canvas</code> and <code>video</code> tags; theoretically, it means ads could be created for the web without plug-ins (like Flash or Silverlight), which is the simplest way.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/html5-ad-1.jpg" alt="HTML5 Ads" title="HTML5 Ads" width="580" height="331" class="alignnone size-full wp-image-16209" /></p>
<p>HTML5 ads will not be just animated banners (GIF) or static, but totally interactive pages including advanced functions such as games, quizzes, simulations and etc. The trans-platform capability enables HTML5 ads to be compatible with PC, mobile, tablet as long as the browser supports HTML5. It saves on the cost of development.</p>
<h2>The Current Situation:</h2>
<p>On PC platform, most of ads are Flash animation or Flash video; according to <a href="http://www.adobe.com/products/player_census/flashplayer/tech_breakdown.html">Adobe’s statistics</a>, 99% of internet-based PCs have installed Adobe Flash Player.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/html5-ad-2.jpg" alt="The Current Situation" title="The Current Situation" width="580" height="415" class="alignnone size-full wp-image-16210" /></p>
<p>Meanwhile, a change also happened. With more HTML5 support by browsers, more than 60% of web users are ready for HTML5. We have witnessed the huge growth of HTML5 apps in the last year, the HTML5 ad will also flourish along with the growth. Although IE is not compatible with HTML5 before version 9, we will see great changes in IE10.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/html5-ad-3.jpg" alt="Statistics" title="Statistics" width="580" height="151" class="alignnone size-full wp-image-16211" /></p>
<p>While Flash is still the dominant tool for ads on PC, HTML5 ads are undergoing a rapid growth.</p>
<p>The situation is totally different on mobile platforms; ads are experiencing a Flash-to-HTML5 conversion. Because of the poor performance, Adobe has abandoned Flash Player on mobile platforms, which leaves no competition for HTML5. Apple and Google are the two titans on mobile platforms; the former one, as we all know, closed the door to Flash on their products; the latter one supports both on Android. So HTML5 is quickly popularizing on mobile and tablet platforms, and becoming the important factor that changes the mobile ad rule.</p>
<p>In terms of cross-browser compatible animation, video technology and ad patterns, HTML5 is the No.1 choice. Previously, in the case of published ad campaigns on mobile apps or websites; there was the major issue of device technology fragmentation to overcome. </p>
<p>Even when limiting the campaign to the latest smart phones, there are various screen sizes, a handful of operating systems, dozens of browser versions, and hundreds of device models that the ad units will have to be displayed on; now, HTML5 enables ad publishers to create richer ads that can be served on different mobile sites and apps regardless of iOS or Android. According to the statistics from Google Doubleclick, the click rate of rich media is 5 times higher than other ad forms.</p>
<p>More importantly, HTML5 makes track impressions possible on mobile platforms; this method is called client side counting. Ask any mobile ad publisher, he will tell you how important it is. It helps agencies to plan, create and track mobile ad campaigns through user’s interactive time, interest degree and etc; those statistics are helpful to know the brand preference and purchase motivation. </p>
<p>For a rapidly growing category of media tablets and app phones, developers have turned to HTML5 for its easy distribution, great graphical abilities and flexible audio/video features.</p>
<h2>Challenges and Restrictions:</h2>
<p>Let us take a look at some of the possible challenges and restrictions that need to be worked on before HTML5 ads can be possible.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/challenges.jpg" alt="Challenges and Restrictions" title="Challenges and Restrictions" width="580" height="360" class="alignnone size-full wp-image-16207" /></p>
<h4>Ad networks don't fully support HTML5 yet</h4>
<p>Google IMA for HTML5 allows developers to request and track VAST (Video Ad Serving Template) ads in an HTML5 video environment with certain limitations based on device compatibility. YuMe HTML5 support is in progress. It is supported in the JW Player’s HTML5 mode through the YuMe plugin. The other networks are implementing HTML5 support with different degrees of progress.</p>
<h4>WebM or H.264</h4>
<p>HTML5 video ads must be encoded into 2 formats: WebM for Firefox and H.264 for other browsers. An appropriate format should be selected to display. This is difficult to implement in an ad scenario, especially if ad networks don’t account for the user’s browser when generating an ad response.</p>
<h4>Crossdomain issues</h4>
<p>An additional technical concern is that loading external assets (a VAST XML response from an ad server, for example) brings with it certain restrictions in JavaScript. These restrictions need to be worked around on the server hosting those assets.</p>
<h2>Future Guess</h2>
<p>HTML5 ads are a new and rising submarket; we are going to see a rapid growth of HTML5 ads in the upcoming years; meanwhile, more ad publishers will transform from Flash ads to HTML5 ads, or take care of the both; with the help of modern tools like <a href="http://www.sothink.com/product/flashdecompiler/?utm_source=html5flash&#038;utm_medium=article&#038;utm_campaign=0110">SWF Decompiler</a> or SWF convertor, it is not difficult to adapt the changes. Although most of the discussions have been about apps and websites in the last year, we can predict HTML5 will also bring remarkable changes to advertisements in the next year.</p>
<p><strong>What are your thoughts on HTML5 Ads? Share your views with us.</strong></p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2010/08/04/a-closer-look-at-choosing-between-flash-and-jquery/" title="A Closer Look at Choosing Between Flash and jQuery">A Closer Look at Choosing Between Flash and jQuery</a></li><li><a href="http://www.onextrapixel.com/2012/01/23/full-css3-html5-contact-form-with-no-images/" title="Full CSS3 HTML5 Contact Form with No Images">Full CSS3 HTML5 Contact Form with No Images</a></li><li><a href="http://www.onextrapixel.com/2011/12/16/20-inspirational-html5-websites-with-3d-flavor-added/" title="20 Inspirational HTML5 Websites with 3D Flavor Added">20 Inspirational HTML5 Websites with 3D Flavor Added</a></li><li><a href="http://www.onextrapixel.com/2011/11/23/top-10-practical-websites-for-html5-design/" title="Top 10 Practical Websites for HTML5 Design">Top 10 Practical Websites for HTML5 Design</a></li></ul><hr />
<p>Written by: Viki Hoo for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/02/01/html5-ads-the-burgeoning-power-in-the-ad-industry/#comments">4 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/articles/" title="View all posts in Articles" rel="category tag">Articles</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=TnMcKoyR994:Xvnj4EzctYw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=TnMcKoyR994:Xvnj4EzctYw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=TnMcKoyR994:Xvnj4EzctYw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=TnMcKoyR994:Xvnj4EzctYw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=TnMcKoyR994:Xvnj4EzctYw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=TnMcKoyR994:Xvnj4EzctYw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=TnMcKoyR994:Xvnj4EzctYw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=TnMcKoyR994:Xvnj4EzctYw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=TnMcKoyR994:Xvnj4EzctYw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/TnMcKoyR994" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/02/01/html5-ads-the-burgeoning-power-in-the-ad-industry/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/02/01/html5-ads-the-burgeoning-power-in-the-ad-industry/</feedburner:origLink></item>
		<item>
		<title>Business Cards Giveaway: Free Business Cards from 1800Postcards</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/fl0980IZypI/</link>
		<comments>http://www.onextrapixel.com/2012/01/31/business-cards-giveaway-free-business-cards-from-1800postcards/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 11:00:05 +0000</pubDate>
		<dc:creator>Onextrapixel Team</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[business card]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=15996</guid>
		<description><![CDATA[Business cards are a vital contact point for potential clients so why not refresh your image for the New Year...for free? Today we are delighted to collaborate with 1800Postcards.com to offer our readers the opportunity to win 500... <a href="http://www.onextrapixel.com/2012/01/31/business-cards-giveaway-free-business-cards-from-1800postcards/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/BJIcXpSm2ySrguKruVscCc8wno0/0/da"><img src="http://feedads.g.doubleclick.net/~a/BJIcXpSm2ySrguKruVscCc8wno0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BJIcXpSm2ySrguKruVscCc8wno0/1/da"><img src="http://feedads.g.doubleclick.net/~a/BJIcXpSm2ySrguKruVscCc8wno0/1/di" border="0" ismap="true"></img></a></p><p><strong>Business cards</strong> are a vital contact point for potential clients so why not refresh your image for the New Year...for free? Today we are delighted to collaborate with 1800Postcards.com to offer our readers the opportunity to win 500 business cards!</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/1800postcards.jpg" alt="Business cards Giveaway: Free Business Cards from 1800Postcards" title="Business cards Giveaway: Free Business Cards from 1800Postcards" width="580" height="360" class="alignnone size-full wp-image-15999" /><br />
<span id="more-15996"></span></p>
<h2>Who is 1800Postcards.com?</h2>
<p>So why trust <a href="http://www.1800postcards.com/">1800Postcards.com</a> with your design work? 1800Postcards.com is the retail branch of Circle Press, a high-end commercial printing firm with a roster of Fortune 100 clients that include Dior, Tiffany, Disney, American Express, Broadway Shows and most of the world’s leading brands. These companies demand nothing but the best in quality. </p>
<p>To be specific, a quality standard called “G7”, which is only granted to printing firms that meet a very strict set of best practices and production quality. These clients sit with pre-press, have color proofs printed for spot color matching, they come in when the job is printed to make color adjustments and watch it run on the press to see the final results, the whole nine yards. They also pay tens of thousands of dollars for this type of service level.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/printingproducts.jpg" alt="About 1800postcards" title="About 1800postcards" width="580" height="541" class="alignnone size-full wp-image-15997" /></p>
<p>1800Postcards produces your print work in the same facilities, with the same press-men and production staff, and adheres to the same quality standards as high-end commercial jobs. The only difference is that your job is “gang printed” or run together with other 1800Postcard clients, which is the secret of every online printing company and why they can be so cheap in pricing. However, 1800Postcards.com just brought it up to an almost unreasonable level of quality.</p>
<p>But what if you don’t need <a href="http://www.1800postcards.com/PostCards?size=6x4">postcards</a>? Well they’re capable of more than just <a href="http://www.1800postcards.com/Default.aspx">postcard printing</a>. They offer brochures, business cards, flyers, posters, banners, stickers and pretty much any custom work your creative mind can imagine.</p>
<p>Bottom line, the print results are unbelievable... no one in the online printing space comes even close to this quality and attention to detail. You can see it yourself by requesting <a href="http://www.1800postcards.com/brochure_request.aspx">free samples</a>.</p>
<h4>The Prizes</h4>
<p>3 winners of 500 free business cards each with free shipping costs. For US entrants only.</p>
<h2>How to Enter</h2>
<p>To enter the giveaway is easy. Leave a comment in this article below to tell us why you should win. Follow us <a href="https://twitter.com/#!/onextrapixel">@onextrapixel</a> and <a href="https://twitter.com/#!/1800postcards">@1800Postcards</a> on Twitter. Tweet or like this giveaway to double your chance of winning.</p>
<p>This giveaway ends on <strong>5th February 2012</strong>. Please use a valid email address when filling out the comment form. Please comment only once.</p>
<p>The winners will be selected at random, contacted by email after the contest is over and announced in this article.</p>
<p>Good luck, everyone!</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2011/09/13/uprinting-giveaway-print-your-own-custom-business-cards/" title="UPrinting Giveaway: Print Your Own Custom Business Cards">UPrinting Giveaway: Print Your Own Custom Business Cards</a></li><li><a href="http://www.onextrapixel.com/2011/02/15/business-card-giveaway-500-moo-business-cards-to-be-won/" title="Business Card Giveaway: 500 MOO Business Cards to be Won">Business Card Giveaway: 500 MOO Business Cards to be Won</a></li><li><a href="http://www.onextrapixel.com/2010/07/02/38-awe-inspiring-business-cards-of-designers-in-the-community/" title="38 Awe-Inspiring Business Cards of Designers In The Community">38 Awe-Inspiring Business Cards of Designers In The Community</a></li><li><a href="http://www.onextrapixel.com/2010/03/17/30-business-card-design-ideas-that-will-get-everyone-talking/" title="30+ Business Card Design Ideas That Will Get Everyone Talking">30+ Business Card Design Ideas That Will Get Everyone Talking</a></li></ul><hr />
<p>Written by: Onextrapixel Team for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/01/31/business-cards-giveaway-free-business-cards-from-1800postcards/#comments">23 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/giveaways/" title="View all posts in Giveaways" rel="category tag">Giveaways</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=fl0980IZypI:W0K6W3eF-jQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=fl0980IZypI:W0K6W3eF-jQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=fl0980IZypI:W0K6W3eF-jQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=fl0980IZypI:W0K6W3eF-jQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=fl0980IZypI:W0K6W3eF-jQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=fl0980IZypI:W0K6W3eF-jQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=fl0980IZypI:W0K6W3eF-jQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=fl0980IZypI:W0K6W3eF-jQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=fl0980IZypI:W0K6W3eF-jQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/fl0980IZypI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/01/31/business-cards-giveaway-free-business-cards-from-1800postcards/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/01/31/business-cards-giveaway-free-business-cards-from-1800postcards/</feedburner:origLink></item>
		<item>
		<title>Understanding Domain Names: Why and When?</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/OHQ8_gKl8BI/</link>
		<comments>http://www.onextrapixel.com/2012/01/30/understanding-domain-names-why-and-when/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 11:00:50 +0000</pubDate>
		<dc:creator>Alexander Dawson</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[business management]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=15607</guid>
		<description><![CDATA[As a web professional, there are things we have to deal with outside the realms of development and design. Sometimes it’s a matter of business, sometimes it’s keeping our finances in order, and every now and again, the... <a href="http://www.onextrapixel.com/2012/01/30/understanding-domain-names-why-and-when/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/8N1JRS_Q2QznuSkiqMEGMquKv14/0/da"><img src="http://feedads.g.doubleclick.net/~a/8N1JRS_Q2QznuSkiqMEGMquKv14/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8N1JRS_Q2QznuSkiqMEGMquKv14/1/da"><img src="http://feedads.g.doubleclick.net/~a/8N1JRS_Q2QznuSkiqMEGMquKv14/1/di" border="0" ismap="true"></img></a></p><p>As a <em>web professional</em>, there are things we have to deal with outside the realms of <strong>development and design</strong>. Sometimes it’s a matter of business, sometimes it’s keeping our finances in order, and every now and again, the subject of branding, re-branding or protecting our brand hits our to-do list. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/domains.jpg" alt="Understanding Domain Names: Why and When?" title="Understanding Domain Names: Why and When?" width="580" height="360" class="alignnone size-full wp-image-15619" /><br />
<span id="more-15607"></span></p>
<p>When you begin your journey into starting up your first freelance portfolio, this information will play a vital role in how you represent yourself, however, that’s not to say that this subject won’t recur later on. </p>
<h2>Online Brand Availability</h2>
<p>If you ever want to launch that start-up idea you have, or if you want to build a new business, a <strong>basic knowledge of domain names</strong> is critically important. After all, it represents your office’s address.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-01.jpg" alt="Website Address" title="Website Address" width="580" height="137" class="alignnone size-full wp-image-15608" /><br />
<strong>Figure 1:</strong> <em>The website address is critically important, thought should go into its branding.</em></p>
<p>Within this article, we’re going to explore your options, once you’ve got yourself an idea for what (if anything) your new project should be called, and critically, what your project actually does. Because it’s not a sexy chore, and somewhat frustrating to find that perfect domain (with lots being sucked up and left unused), it’s one of the hardest challenges you’ll likely encounter. </p>
<p>With the advice below, you’ll at least have an idea of which domain types matter, and thereby, which you should focus on attaining (and if you can’t get it, when you should reconsider your brand due to unavailability).</p>
<h2>Prioritize: The Trendy Three</h2>
<p>Domain names in truth are a little biased to whether the audience can remember the extension. It might seem ideal to snag yourself a free .TK domain in preference to buying a more easily recognised extension, but that will work against you when your visitors begin trying to locate you for the first time. While increasing numbers of TLD’s are becoming available on the Web, the truth is that visitors will automatically assume your site uses one of three extensions: dot COM, NET or ORG. </p>
<p>Perhaps this feels a bit unfair due to the lack of good available names in the system, but if you can get one of the top three (or all three if the brand is named really creatively), you’ll put yourself in an ideal position.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-02.jpg" alt="Most widely recognised extensions" title="Most widely recognised extensions" width="580" height="147" class="alignnone size-full wp-image-15609" /><br />
<strong>Figure 2:</strong> <em>Dot COM, NET and ORG and the most widely recognised extensions. Get them if you can!</em></p>
<p>When you’re working with the top three domains, the great thing is that they’re often among the cheapest to register, and even more critically, all domain and hosting providers will likely support them (in terms of offering the ability to register and renew ownership). While I would say it’s not as essential to own one of the big three as it used to be (due to more people becoming web aware), there are still a huge number of people who don’t understand the web, and won’t likely realize that extensions exists outside of .com, .net and .org exist, so they do still hold sway over consumers.</p>
<h2>Localize: Geo and IDN</h2>
<p>While the big three are pretty important and useful assets to have, there is a major exception where the need for a globally recognised identity may be second in the priority list. If you’re an individual or group that only operates locally to a country, then the registration of internationalized (specific to a language) or geographic country domains (like dot CO.UK, EU or US) will become equally worthwhile as the big three. </p>
<p>If you’re based in the USA, the .us extension will be easily recognized and worthy of purchase, elsewhere around the world, you’ll have that country’s own regional domain to register if you serve people in those areas (even if you just use it for offering localized specific site translations).</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-03.jpg" alt="Countries native ccTLD" title="Countries native ccTLD" width="550" height="374" class="alignnone size-full wp-image-15610" /><br />
<strong>Figure 3:</strong> <em>If you live in Europe, it makes sense to get the dot EU as well as countries native ccTLD.</em></p>
<p>Choosing whether to use .com or .us can be tricky if you only serve a small audience from a specific nation, however generally speaking, I’d prefer to edge on the side of caution and get them both to avoid unnecessary mistakes based on user expectations (it also gives you room for expansion). Also worthy of mention are the fairly new Internationalized domain names that potentially will be useful if you serve an audience who don’t natively use the standardized English alphabet (like China, Japan and Russia). </p>
<p>When it comes to IDN’s, however, my advice is to just use them to supplement a ccTLD or .com address, as visitors whose primarily language is English will find entering those URL’s tricky.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-04.jpg" alt="International domain names" title="International domain names" width="579" height="338" class="alignnone size-full wp-image-15611" /><br />
<strong>Figure 4:</strong> <em>International domain names are useful, but don’t force English users to try to enter them.</em></p>
<h2>Customize: Hacks and ICANN</h2>
<p>Sometimes, no matter how hard you try (or how much thought you put into the brand), the domain name you’d really like to register just isn’t available. In times of trouble, and if you’re really stuck for getting something close to an ideal URL, many choose to cheat slightly and use a technique called domain hacks. The idea behind the technique is pretty simple, as either subdomains or the extension itself forms part of the brand name. </p>
<p>Ideally it would likely cause less confusion if you could get the name you wanted without the need for hacks (as users don’t need to try to remember where the dots need to appear), but it’s certainly a favourable and highly utilized alternative to get a good url.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-05.jpg" alt="Identify potential domain hacks" title="Identify potential domain hacks" width="580" height="233" class="alignnone size-full wp-image-15612" /><br />
<strong>Figure 5:</strong> <em>There are some cool sites out there that will help you identify potential domain hacks.</em></p>
<p>Beyond using hacks, some users like to customize even further by using services like new.net. These services essentially offer an alternative system (aTLD) by providing extensions that aren’t endorsed by ICANN or other registrars. However, because these extensions aren’t natively supported and thereby require a plug-in, the potential for conflicts and the invisibility of domains for those without the required extension exist. </p>
<p>As it’s obviously not an ideal solution, I’d recommend that such services be avoided (they’re not worth the cost). It’s also worth mentioning at this stage that </p>
<p>ICANN accept applications for new TLD’s, and even though they’re out of the average person’s budget, the benefits of all of these new domains will be passed onto us as those fresh domains go global in the future.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-06.jpg" alt="Alternative domain extension supplier" title="Alternative domain extension supplier" width="580" height="367" class="alignnone size-full wp-image-15613" /><br />
<strong>Figure 6:</strong> <em>New.net is an alternative domain extension supplier but it’s poorly supported worldwide.</em></p>
<h2>Accessorize: Protect and Redirect</h2>
<p>Let’s say you’ve found your domain (the top three, applicable ccTLD’s, IDN’s and maybe a hack). The focus now needs to go onto ensuring that you don’t fall foul of the various issues that exist when it comes to domain names. The first thing you need to ensure is that you’re actually legally able to use the domain you’re thinking of purchasing.</p>
<p>Keeping it simple, trademark law can complicate matters if there is a chance that your brand might be mistaken for the property of someone else. For your own safety, ensure that you don’t register a name that’s similar to anyone else’s who does the same thing as you. Such misappropriations might result in you losing the domain and a hefty legal bill.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-07.jpg" alt="“Mike Rowe Soft” site" title="“Mike Rowe Soft” site" width="580" height="390" class="alignnone size-full wp-image-15614" /><br />
<strong>Figure 7:</strong> <em>One classic example of this in action was the highly publicised “Mike Rowe Soft” site.</em></p>
<p>If you’re sure that you’re entitled to own a domain and you aren’t just swiping someone else’s brand identity to try to catch their visitors, you want to ensure that your own digital property is going to be as protected as other major brands. While applying for a trademark can be useful if the site is likely to become really successful, it’s pretty expensive to purchase. </p>
<p>As such, many simply choose to register as many applicable TLD’s as they can, using them as redirects to the central .com domain. Bulk purchases can be cheaper if your registrar offers bulk discounts or domain credits; however, it’s definitely something you should consider, as misspellings or fake sites often catch people out online.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-08.jpg" alt="Redirect" title="Redirect" width="580" height="217" class="alignnone size-full wp-image-15615" /><br />
<strong>Figure 8:</strong> <em>Take the most popular TLD with users (like .com) and have all others redirect to it.</em></p>
<h2>Authorize: WHOIS and Registrars</h2>
<p>Finally, I’m going to mention a couple of tips when it comes to the registration process itself. While the picking of a domain name is fraught with a lack of choices, and protecting your domain can be a hard task, there are two things that occur commonly in the registration process itself, which can lead to problems. </p>
<p>My first piece of advice when registering domains is to ensure your domain registrar and host aren’t the same company. I realize that not all hosts are bad registrars and not all registrars are bad hosts, however, I’ve noticed correlations between businesses that branch out into too many directions having their core (or complementary) services suffer (in quality or stability) as a result.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-09.jpg" alt="Reputations" title="Reputations" width="580" height="333" class="alignnone size-full wp-image-15616" /><br />
<strong>Figure 9:</strong> <em>Reputations are made and broken on the quality of service, and bigger isn’t always better.</em></p>
<p>As a final tip in relation to domain registration, never ever use WHOIS privacy services! While valuing your privacy is a good thing, the issue is that these tools use the registrar’s own contact details to fill in the blanks, and this becomes a critical issue if your domain is hacked or if you want to leave your registrar. </p>
<p>According to ICANN policies, it’s the person in the WHOIS details who owns that domain, so if your domain is hacked and transferred away, you’ve got little to prove prior ownership. Trickier still is the problem that if you want to move registrars and your provider doesn’t want to let you, as their name is in the records, they technically own it and can take it away, whenever they feel like it.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/OXP20-10.jpg" alt="WHOIS records" title="WHOIS records" width="580" height="231" class="alignnone size-full wp-image-15617" /><br />
<strong>Figure 10:</strong> <em>Keep your name in the WHOIS records, if you don’t you put your domains at risk.</em></p>
<h2>Branding and the Internet</h2>
<p>Sites are wonderful, and having that perfect domain name can really make a difference, even in this age of being redirected by search engines and social networks. Easy to remember names are likely to reduce the burdens upon users who hand type a URL. </p>
<p>Top-level and the right secondary domains can help search engines ensure that you reach a good global and local audience. With all of this in mind, moving forward with your various projects, spending the time to get to grips with your options and how they may affect you is worthwhile. </p>
<p>Ultimately, a weak brand (such as one which could easily be confused with another) may damage opportunities for success, or risk becoming forgettable.</p>
<p>Do you have a particular technique for finding a brand name? Are you a fan of auction services like SEDO? Do you even believe that domain names still matter with the likes of Google?</p>
<p><strong>Let us know your pro tips in the comments for ensuring you’ve snagged the best domain in the universe!</strong></p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/01/16/web-design-say-no-to-spec/" title="Web Design: Say No to Spec">Web Design: Say No to Spec</a></li><li><a href="http://www.onextrapixel.com/2011/10/14/why-designers-and-developers-shouldnt-hate-each-other/" title="Why Designers and Developers Shouldn&#8217;t Hate Each Other">Why Designers and Developers Shouldn&#8217;t Hate Each Other</a></li><li><a href="http://www.onextrapixel.com/2011/07/18/uncover-the-competition-before-stepping-into-the-ring/" title="Uncover the Competition Before Stepping into the Ring">Uncover the Competition Before Stepping into the Ring</a></li><li><a href="http://www.onextrapixel.com/2011/06/30/tips-for-choosing-a-graphic-designer/" title="Tips For Choosing A Graphic Designer">Tips For Choosing A Graphic Designer</a></li></ul><hr />
<p>Written by: Alexander Dawson for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/01/30/understanding-domain-names-why-and-when/#comments">6 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/articles/" title="View all posts in Articles" rel="category tag">Articles</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=OHQ8_gKl8BI:XT0P9U39pyw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=OHQ8_gKl8BI:XT0P9U39pyw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=OHQ8_gKl8BI:XT0P9U39pyw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=OHQ8_gKl8BI:XT0P9U39pyw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=OHQ8_gKl8BI:XT0P9U39pyw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=OHQ8_gKl8BI:XT0P9U39pyw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=OHQ8_gKl8BI:XT0P9U39pyw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=OHQ8_gKl8BI:XT0P9U39pyw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=OHQ8_gKl8BI:XT0P9U39pyw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/OHQ8_gKl8BI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/01/30/understanding-domain-names-why-and-when/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/01/30/understanding-domain-names-why-and-when/</feedburner:origLink></item>
		<item>
		<title>Best of WordPress Anti-Spam Plugins and Why You Need None to Fight Spam</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/13Z7s8hdVWI/</link>
		<comments>http://www.onextrapixel.com/2012/01/27/best-of-wordpress-anti-spam-plugins-and-why-you-need-none-to-fight-spam/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 11:00:08 +0000</pubDate>
		<dc:creator>Salman Siddiqui</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=14734</guid>
		<description><![CDATA[Today, while skipping rope I was pondering (my level of concentration increases when I skip rope) the reason behind the availability of innumerable anti-spam WordPress plugins. Did the creators of WordPress not think about spam issues and don’t... <a href="http://www.onextrapixel.com/2012/01/27/best-of-wordpress-anti-spam-plugins-and-why-you-need-none-to-fight-spam/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/AiSXbQymxoChp_KothAASho5-ao/0/da"><img src="http://feedads.g.doubleclick.net/~a/AiSXbQymxoChp_KothAASho5-ao/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AiSXbQymxoChp_KothAASho5-ao/1/da"><img src="http://feedads.g.doubleclick.net/~a/AiSXbQymxoChp_KothAASho5-ao/1/di" border="0" ismap="true"></img></a></p><p>Today, while skipping rope I was pondering <em>(my level of concentration increases when I skip rope)</em> the reason behind the availability of innumerable <strong>anti-spam WordPress plugins</strong>. Did the creators of WordPress not think about spam issues and don’t they do so now when WordPress has gone viral? Actually, that isn’t the case. WordPress, as a Content Management System, comes loaded with basic features to tackle spam. It is just that we have been spoon fed the idea that a plugin is a must for any WordPress feature other than writing articles and uploading images. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/spam.jpg" alt="Best of WordPress Anti-Spam Plugins and Why You Need None to Fight Spam" title="Best of WordPress Anti-Spam Plugins and Why You Need None to Fight Spam" width="580" height="360" class="alignnone size-full wp-image-15885" /><br />
<span id="more-14734"></span><br />
Plugins are required for extra features. Believe me, basics are always packed with WordPress. This discussion will go through some of the best WordPress plugins to fight spam and later on excogitate the WordPress dashboards to find out if we really need such plugins.</p>
<p><em>P.S. Don’t ask me why I was thinking about WordPress spam while skipping rope. I tend to think weird things at weird times.</em></p>
<h2>The Showcase of WordPress Anti-Spam Plugins</h2>
<p>The upcoming list of Anti-Spam WordPress Plugins will help you run a <em>(literally)</em> spam free WordPress blog. It will be your call when it comes to using the best out these bests. Remember, plugins tend to slow down your blog <em>(even when the time period is fractions of seconds)</em> so think before you install such plugins.</p>
<p><a href="http://wordpress.org/extend/plugins/akismet/">Akismet</a><br />
Akismet happens to be one of the first WordPress Anti-Spam Plugins which actually started the trend of Anti-Spam plugins. As of now Akismet comes packed with default WordPress plugins which in itself explains the importance of this plugin. Akismet requires a registration key but once you are through the setup then you can literally forget the plugin. It will continue to perform its job without requiring any interference from your end. Although, the occasional plugin updates at your discretion will be required.</p>
<p><a href="http://wordpress.org/extend/plugins/akismet/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/akismet.jpg" alt="Akismet" title="Akismet" width="580" height="360" class="alignnone size-full wp-image-15874" /></a></p>
<p><a href="http://wordpress.org/extend/plugins/wp-recaptcha/">WP-reCAPTCHA</a><br />
This is another famous WordPress Anti-Spam Plugin which has received plenty of downloads and positive critic ratings. The unique feature of this plugin is the collection of words from old books that it uses for CAPTCHA verification. The <a href="http://www.google.com/recaptcha/learnmore">functionality</a> used for this plugin was acquired by Google which helped the plugin reach the heights of fame. The plugin has a lot of content for you to read if you have time to do so.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-recaptcha/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/reCaptcha.jpg" alt="reCaptcha" title="reCaptcha" width="580" height="360" class="alignnone size-full wp-image-15884" /></a></p>
<p><a href="http://wordpress.org/extend/plugins/wp-hashcash/">WP Hash Cash</a><br />
Users are required to submit a proof-of-work in order to confirm that the website was opened in a Web Browser and not by some bot. WP Hash Cash provides admin with three options for comments that fail the JavaScript test. Firstly, you have the option to push the comment into a moderation queue. Secondly, you can push the comment into the default Akismet queue. Thirdly, you have the option of deleting the comment without a second thought. </p>
<p>Additionally, the plugin protects sign-up pages from dummy bots. The plugin is 100% standards complaint with XHTML 1.1 which is hardly the case with other plugins.</p>
<p><a href="http://wordpress.org/extend/plugins/bcspamblock/">bcSpamBlock</a><br />
bcSpamBlock is a JavaScript based Anti-Spam WordPress Plugin that uses JavaScript and the crypt () functionality of PHP in order to smartly fight spam. Users that block JavaScript are switched to a CAPTCHA based legitimacy check exercise. This helps bcSpamBlock control spam from all fronts. The plugin hasn’t yet received the amount of recognition that other plugins have but it has left its mark pretty neatly.</p>
<p>The above plugin uses a part of the code from JS Spam Block which will be discussed next.</p>
<p><a href="http://wordpress.org/extend/plugins/jsspamblock/">JS Spam Block</a><br />
Like its child plugin, bcSpamBlock, JS Spam Block uses JavaScript to tackle unwanted spam in WordPress blogs. Legitimate users are asked to enter a given number which proves the authenticity of a real user over a spam bot. JS Spam Block comes loaded with backward compatibility for non-JavaScript users therefore this plugin too covers all sorts of spam. The plugin has received enough positive critic ratings which prove that it is good at what it does.</p>
<p><a href="http://wordpress.org/extend/plugins/spam-stopper/">Spam Stopper</a><br />
Much like other anti-spam plugins, Spam Stopper WordPress Anti-Spam Plugin uses CAPTCHA features to validate the originality of a comment. It uses JavaScript to validate if the required fields in the WordPress comment form have been filled with correct data. The plugin skips the CAPTCHA validation if the user is logged into the WordPress dashboard. It simply assumes that the author won’t leave spam comments in his own blog. </p>
<p><a href="http://wordpress.org/extend/plugins/peters-custom-anti-spam-image/">Peter’s Custom Anti-Spam</a><br />
Peter’s Custom Anti-Spam WordPress Plugin uses CAPTCHA based validation functionality to gauge if the comment is from an authentic human or a spam bot. It will ask commenters to enter a random word (as per the CAPTCHA image) before the comment goes into the blog. Some of the exciting features of this plugin are the customization of words displayed in CAPTACHA image, random font display, no JavaScript required, audio feature for the visually impaired and a lot more.<br />
The downside of this plugin is the unavailability of an auto-upgrade feature. To update the plugin you will have to perform manual tasks. Although updating a plugin manually isn’t a herculean task, some hearts do start pumping blood very quickly when they read the word – manual.</p>
<p><a href="http://wordpress.org/extend/plugins/spam-free-wordpress/">Spam Free WordPress</a><br />
This plugin claims 100% spam blocking rate and the amount of downloads (almost) confirms the same. The plugin uses multiple features like IP address block list in case of manual spam. The plugin proudly boasts of its 100% spam blocking rate and boasts about even Akismet not promising the perfect blocking rate. I guess such comments take the Anti-Spam war to another level but at the end of the day it is the user who benefits from such war of anti-spam plugins so it is good!</p>
<h2>And, Why You Don’t Need the Above Plugins!</h2>
<p>I have no intentions of disrespecting the hard work done by programmers in order to launch the plethora of Anti-Spam WordPress Plugins. Really. But, I am a WordPress user and my life revolves around WordPress. I won’t be doing justice to the best Content Management System if I do not introduce my readers to some of its amazing features. </p>
<p>You (the WordPress user) might have already been through every page on your WordPress dashboard and assumed that without a plugin spam will kill your WordPress blog. Actually, Plugins must be used when webmasters want to utilize extended features that WordPress does not support. Otherwise, the basic WordPress features might just do well!</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/no-spam.jpg" alt="No Spam" title="No Spam" width="580" height="360" class="alignnone size-full wp-image-15881" /></p>
<p>Ignorance will stall your own blog. How? Well, when you ignore the basic WordPress features and use plugins instead then you give away memory for those plugins to run smoothly. That is when your blog starts to lag. Let us quickly look into different WordPress features that can fight spam without using plugins. The <em>Settings > Discussion</em> section from your WordPress Dashboard will now be our point of discussion.</p>
<h4>Default Article Settings</h4>
<p>I am assuming that you dream about people leaving gazillions of comments on your posts so the comments cannot be blocked. From this section we can cut down pingback and trackback notifications. These are the silly heads up that keep popping up when some article from your blog is linked by some other article. This step eliminates the requirement of those plugins that fight pingback and trackback notifications. Trust me, you don’t need them.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/default-article-settings.jpg" alt="Default Article Settings" title="Default Article Settings" width="580" height="126" class="alignnone size-full wp-image-15878" /></p>
<h4>Other Comment Settings</h4>
<p>Fields like Name and E-Mail in the comments form must be marked as mandatory fields. As this is turned on by default in WordPress installations most WordPress blogs have this setting enabled already.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/other-comments-settings-1.jpg" alt="Other Comments Settings 1" title="Other Comments Settings 1" width="580" height="48" class="alignnone size-full wp-image-15882" /></p>
<p>If you require users to log in before leaving comments then this will cut down on a significant amount of spam comments. This step might be a turn off for few legit readers who want to leave a comment but don’t want to sign in. So, analyze before you enable this feature.</p>
<p>Usually old posts are the target of spammers instead of legit readers. So, it is suggested that you close comments on post that are pretty old. Say 3 months? If you are writing articles that are evergreen for discussion then you might want to skip this suggestion.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/other-comments-settings-2.jpg" alt="Other Comments Settings 2" title="Other Comments Settings 2" width="580" height="52" class="alignnone size-full wp-image-15883" /></p>
<h4>E-mail Me Whenever</h4>
<p>You can use this feature if you don’t get thousands of comments on your posts. You will get email notifications for every comment that pops up and you can mark it spam right away cutting down on a section of spam comments.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/email-me-whenever.jpg" alt="Email Me Whenever" title="Email Me Whenever" width="580" height="64" class="alignnone size-full wp-image-15879" /></p>
<h4>Before a Comment Appears</h4>
<p>Allowing readers who have previously left a comment to leave a comment again without requiring any approval will help you cut down the legit comments in the moderation queue while you can mark the rest of the spam comments as – spam!</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/before-a-comment-appears.jpg" alt="Before a Comment Appears" title="Before a Comment Appears" width="580" height="60" class="alignnone size-full wp-image-15875" /></p>
<h4>Comment Moderation</h4>
<p>Usually, spam comments have plenty of outgoing links. Pushing such comments into a moderation queue will give you the time to approve the legit comments and spam off the useless ones.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/hold-comment-in-queue.jpg" alt="Hold Comment in Queue" title="Hold Comment in Queue" width="580" height="60" class="alignnone size-full wp-image-15880" /></p>
<h4>Comment Moderation Blacklist</h4>
<p>If you smartly tune your Comment Moderation Blacklist and regularly update it with words that you think are often part of spam comments then you will eradicate the need for plugins that do the same task. It might take some patience to build such a list but the hard work will surely pay off. This will remove the need for any third party blacklists and plugins that use such lists to fight spam.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/comment-moderation-blacklist.jpg" alt="Comment Moderation Blacklist" title="Comment Moderation Blacklist" width="580" height="256" class="alignnone size-full wp-image-15877" /></p>
<h4>Comment Blacklist</h4>
<p>Comment Blacklist is more or less similar to above list. The only difference is that comments blacklisted through this list will be directly marked as spam and they won’t be pushed into the moderation queue for re-consideration. Use this list very carefully otherwise some legit comments will be marked as spam.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/01/comment-blacklist.jpg" alt="Comment Blacklist" title="Comment Blacklist" width="580" height="260" class="alignnone size-full wp-image-15876" /></p>
<h4>Life Without Akismet</h4>
<p>Akismet anti-spam WordPress plugin comes loaded with default WordPress installation so it must be important? Well, not really if you are using the above features smartly and updating them regularly. Please understand that every plugin will eat up a section of your useful memory which might <em>(as pointed out before)</em> slow down your blog. Use the aforementioned features and you might not even feel the need for Akismet!</p>
<h2>Conclusions</h2>
<p>Let me know if you will take the extra step of disabling Akismet and start fighting spam without any WordPress plugins. I am ready to take this step. Joining me? </p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2011/11/15/wordpress-giveaway-the-events-calendar-2-0-for-wordpress/" title="WordPress Giveaway: The Events Calendar 2.0 for WordPress">WordPress Giveaway: The Events Calendar 2.0 for WordPress</a></li><li><a href="http://www.onextrapixel.com/2011/11/01/wordpress-week-giveaway-3-x-premium-wp-plugins-from-tribulant/" title="WordPress Week Giveaway: 3 X Premium WP Plugins from Tribulant ">WordPress Week Giveaway: 3 X Premium WP Plugins from Tribulant </a></li><li><a href="http://www.onextrapixel.com/2011/07/19/wordpress-plugins-giveaway-gd-custom-posts-and-taxonomies-tools-pro/" title="WordPress Plugins Giveaway: GD Custom Posts And Taxonomies Tools Pro">WordPress Plugins Giveaway: GD Custom Posts And Taxonomies Tools Pro</a></li><li><a href="http://www.onextrapixel.com/2011/05/31/wordpress-giveaway-ultimate-wordpress-administration-plugin/" title="WordPress Giveaway: Ultimate WordPress Administration Plugin">WordPress Giveaway: Ultimate WordPress Administration Plugin</a></li></ul><hr />
<p>Written by: Salman Siddiqui for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/01/27/best-of-wordpress-anti-spam-plugins-and-why-you-need-none-to-fight-spam/#comments">9 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/wordpress/" title="View all posts in WordPress" rel="category tag">WordPress</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=13Z7s8hdVWI:YvLPOqHzAtg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=13Z7s8hdVWI:YvLPOqHzAtg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=13Z7s8hdVWI:YvLPOqHzAtg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=13Z7s8hdVWI:YvLPOqHzAtg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=13Z7s8hdVWI:YvLPOqHzAtg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=13Z7s8hdVWI:YvLPOqHzAtg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=13Z7s8hdVWI:YvLPOqHzAtg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=13Z7s8hdVWI:YvLPOqHzAtg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=13Z7s8hdVWI:YvLPOqHzAtg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/13Z7s8hdVWI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/01/27/best-of-wordpress-anti-spam-plugins-and-why-you-need-none-to-fight-spam/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/01/27/best-of-wordpress-anti-spam-plugins-and-why-you-need-none-to-fight-spam/</feedburner:origLink></item>
		<item>
		<title>Top Ten Offline Design Resources</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/x3ghLSKhbH4/</link>
		<comments>http://www.onextrapixel.com/2012/01/26/top-ten-offline-design-resources/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 11:00:44 +0000</pubDate>
		<dc:creator>Chloe Lloyd</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=15887</guid>
		<description><![CDATA[There are hordes of online graphic design tutorials, resources and lists however we thought that to make a change, a list of top ten offline resources would be great for those who spend far too much time in... <a href="http://www.onextrapixel.com/2012/01/26/top-ten-offline-design-resources/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/oiRkAfvGgxifAqUCZE4uUwXoMk4/0/da"><img src="http://feedads.g.doubleclick.net/~a/oiRkAfvGgxifAqUCZE4uUwXoMk4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oiRkAfvGgxifAqUCZE4uUwXoMk4/1/da"><img src="http://feedads.g.doubleclick.net/~a/oiRkAfvGgxifAqUCZE4uUwXoMk4/1/di" border="0" ismap="true"></img></a></p><p>There are hordes of online graphic design tutorials, resources and lists however we thought that to make a change, a list of top ten <strong>offline resources</strong> would be great for those who spend far too much time in front of a computer screen or for those times when, God forbid, your internet connection isn't working!</p>
<p>While blogs and magazines are great for quick reference and news, they don't offer the depth that a good old read can. Whether you are a professional and looking for a book that can give you the edge and offer the best service to your clients or a novice designer looking for guidance, these reference books can help you become a more well-rounded designer.</p>
<p><img class="alignnone size-full wp-image-15888" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-cover.jpg" alt="Offline Design Resources" width="580" height="360" /></p>
<p><span id="more-15887"></span></p>
<h2>Top Ten Offline Design Resources</h2>
<h4>Participate; Designing with User-Generated Content – Helen Armstrong and Zvezdana Stojmirovic</h4>
<p>What can you do when creativity is no longer the sole territory of the creative professional? The web is overrun with amateurs using websites such as Flickr, Threadless, WordPress, and YouTube. User-driven design has never been so easy for the amateur to generate and distribute. Rather than admit defeat the author here discusses how designers can lead this new breed of amateur creatives rather than be overrun by them.</p>
<p><a href="Participate; Designing with User-Generated Content"><img class="alignnone size-full wp-image-15890" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-2.jpg" alt="Participate; Designing with User-Generated Content" width="580" height="322" /></a></p>
<h4>PANTONE The 20th Century in Color - Leatrice Eiseman and Keith Recker</h4>
<p>Pantone, the worldwide authority on colour gives you a tour of 100 years of colour in the 20<sup>th</sup> century. From the Pale Gold (15-0927 TPX) and Almost Mauve (12-2103 TPX) of the 1900 Universal Exposition in Paris to the Rust (18-1248 TPX) and Midnight Navy (19-4110 TPX) of the countdown to the Millennium, the 20th century brimmed with color. This book reveals the colour trends, shifts, and resurgences of different hues. Helping you to identify colour schemes and trends for your work.</p>
<p><img class="alignnone size-full wp-image-15892" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-4.jpg" alt="PANTONE The 20th Century in Color" width="580" height="386" /></p>
<h4>Grid Systems in Graphic Design - Josef Muller-Brockmann</h4>
<p>This is one strictly for the professionals. This is THE book to turn to when using grid systems in graphic design. Though Muller-Brockman first presented his interpretation of grid in 1961, this text is still useful today for anyone working in the latest computer-assisted design. With examples on how to work correctly at a conceptual level and exact instructions for using all of the systems (8 to 32 fields), this guidebook provides a crystal-clear framework for problem-solving.</p>
<p><img class="alignnone size-full wp-image-15894" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-6.jpg" alt="Grid Systems in Graphic Design" width="580" height="317" /></p>
<h4>Idea Index: Graphic Effects and Typographic Treatments - Jim Krause</h4>
<p>This little reference book lists hundreds of great ideas for creatives -- whether you're a graphic designer, font designer, or web designer, or even just an amateur artist. The book is divided into two sections, Graphic Effects and Typographic Treatments. The Idea Index offers new ways of looking at shading, spacing and much more.</p>
<p><img class="alignnone size-full wp-image-15895" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-7.jpg" alt="Idea Index" width="520" height="675" /></p>
<h4>Make it Bigger – Paula Scher</h4>
<p>Named after the familiar 'make it bigger' that graphic designers are used to hearing from clients, it is an appropriate title for a book that examines the graphic design industry through the eyes of the business community that it serves. Drawing on over three decades of experience, Scher provides readers with a first-hand account of the graphic design process in relation to the corporate cultures and organisational dynamics that are often resistant to creativity and change. What makes this book stand out from the others is that it focusses on the collaboration element that is absolutely vital to bring ideas to life.</p>
<p><a href="Make it Bigger"><img class="alignnone size-full wp-image-15889" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-1.jpg" alt="Make it Bigger" width="520" height="370" /></a></p>
<h4>Layout Index: Brochure, Web Design, Poster, Flyer, Advertising, Page Layout, Newsletter, Stationery Index - Jim Krause</h4>
<p>It‘s little sister, Idea Index Idea started a revolution in graphic design books. Layout Index is the next step, holding a whole host of layout idea-generators that will help designers explore a wealth of possibilities for visual treatments each time they turn the page. The visual and textual suggestions are divided into eight major areas, including newsletters, flyers, posters, brochures, advertising, stationery, page layout, and Web pages. Designers will learn to solve their design problems, produce fantastic work and become better, more creative thinkers.</p>
<p><img class="alignnone size-full wp-image-15896" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-8.jpg" alt="Layout Index" width="520" height="697" /></p>
<h4>Patterns and Palette Sourcebook: A Complete Guide to Choosing the Perfect Color and Pattern in Design - Anvil Graphic Design Inc</h4>
<p>This reference book is invaluable for art directors, designers, and students working in the fashion, product, and graphic design fields, as well as anyone in the business of visual communication.</p>
<p>The Pattern and Palette Sourcebook is a desktop source of colors and patterns that addresses the professional's real-world needs when working with harmonies and contrasts. The book is divided into six sections and provides users with 15 appropriate colors for each section, which are then incorporated into 25 different patterns shown in six or eight color variations each. This allows readers to see the impact colours have in design and helps them better understand how to use color effectively. The book also demonstrates ways of creating designs that are distinctly unique from one another yet hold together in a group.</p>
<p><img class="alignnone size-full wp-image-15897" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-9.jpg" alt="Patterns and Palette Sourcebook" width="520" height="341" /></p>
<h4>Identity Crisis: 50 Redesigns That Transformed Stale Identities into Successful Brands - Jeff Fisher</h4>
<p>Everyone loves to see the before and after in any transformations, but this book is also a great resource for getting new fresh ideas for your own and to show your clients the potential in any redesign. While graphic design books are extremely popular, this book is unique in the fact that it looks at redesigning existing brand identities to achieve success.</p>
<p><img class="alignnone size-full wp-image-15898" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-10.jpg" alt="Identity Crisis" width="520" height="520" /></p>
<h4>Logo Design Workbook; A Hands-On Guide to Creating Logos - Sean Adamsn and Noreen Morioka</h4>
<p>This handy guide focusses on what makes a logo work. In the first half of the book, readers get a step-by-step guide to the logo development process. Topics in the book involve developing a concept that communicates the right message and is appropriate for both the client and the market; defining how the long term goals of the client may affect the look and needs of a logo; choosing colours and typefaces; how to avoid common mistakes and analysing why some logos are successful and others not. The second half of the book focuses on logo case studies throughout various industries.</p>
<p><img class="alignnone size-full wp-image-15891" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-3.jpg" alt="Logo Design Workbook" width="520" height="347" /></p>
<h4>Thinking With Type - Ellen Lupton</h4>
<p>One of the most basic challeneges facing any graphic designer today is what type of font to use and how big? How should those letters be aligned? How much spacing should be used? In this useful guide, design educator and historian, Ellen Lupton provides a clear and concise reference for anyone learning or brushing up on their typographic skills.</p>
<p><img class="alignnone size-full wp-image-15893" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/offline-resources-5.jpg" alt="Thinking With Type" width="458" height="304" /></p>
<h2>Conclusion</h2>
<p>Each of the above books offers a unique method for mastering the subject at hand, quickly and easily, and many are filled to the brim with the experience and guidance of experts that is bound to give you the advantage over your competitors who haven´t taken the time out to seek this depth of knowledge.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/01/10/showcase-of-awesome-catalog-designs-for-your-inspiration/" title="Showcase of Awesome Catalog Designs for Your Inspiration">Showcase of Awesome Catalog Designs for Your Inspiration</a></li><li><a href="http://www.onextrapixel.com/2011/10/25/win-a-macbook-pro-by-participating-in-the-2011-graphic-designer-survey/" title="Win a Macbook Pro by Participating in the 2011 Graphic Designer Survey">Win a Macbook Pro by Participating in the 2011 Graphic Designer Survey</a></li><li><a href="http://www.onextrapixel.com/2011/10/24/from-print-to-web-creating-print-quality-typography-in-the-browser/" title="From Print to Web: Creating Print-Quality Typography in the Browser">From Print to Web: Creating Print-Quality Typography in the Browser</a></li><li><a href="http://www.onextrapixel.com/2011/05/04/30-stunning-creative-uses-of-typography-in-print-ads/" title="30 Stunning &#038; Creative Uses of Typography in Print Ads">30 Stunning &#038; Creative Uses of Typography in Print Ads</a></li></ul><hr />
<p>Written by: Chloe Lloyd for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/01/26/top-ten-offline-design-resources/#comments">6 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/resources/" title="View all posts in Resources" rel="category tag">Resources</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=x3ghLSKhbH4:zE1ghzTB2hQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=x3ghLSKhbH4:zE1ghzTB2hQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=x3ghLSKhbH4:zE1ghzTB2hQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=x3ghLSKhbH4:zE1ghzTB2hQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=x3ghLSKhbH4:zE1ghzTB2hQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=x3ghLSKhbH4:zE1ghzTB2hQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=x3ghLSKhbH4:zE1ghzTB2hQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=x3ghLSKhbH4:zE1ghzTB2hQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=x3ghLSKhbH4:zE1ghzTB2hQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/x3ghLSKhbH4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/01/26/top-ten-offline-design-resources/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/01/26/top-ten-offline-design-resources/</feedburner:origLink></item>
		<item>
		<title>Year of the Dragon – Outstanding Dragon Digital Art</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/X0maLrpGLzQ/</link>
		<comments>http://www.onextrapixel.com/2012/01/25/year-of-the-dragon-outstanding-dragon-digital-art/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 11:00:07 +0000</pubDate>
		<dc:creator>Carol Francis</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[art]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=15621</guid>
		<description><![CDATA[This year, Chinese New Year is on 23rd January, and 2012 is the year of the Dragon. The Chinese zodiac is also divided into 5 elements, and the element for this year is water – so this year... <a href="http://www.onextrapixel.com/2012/01/25/year-of-the-dragon-outstanding-dragon-digital-art/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/-TPGzS5C296Bee3CyZN266AWyUI/0/da"><img src="http://feedads.g.doubleclick.net/~a/-TPGzS5C296Bee3CyZN266AWyUI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-TPGzS5C296Bee3CyZN266AWyUI/1/da"><img src="http://feedads.g.doubleclick.net/~a/-TPGzS5C296Bee3CyZN266AWyUI/1/di" border="0" ismap="true"></img></a></p><p>This year, <strong>Chinese New Year</strong> is on 23<sup>rd</sup> January, and 2012 is the year of the Dragon. The Chinese zodiac is also divided into 5 elements, and the element for this year is water – so this year celebrates the <strong>Water Dragon</strong>.</p>
<p>The other elements are wood, fire, earth and metal, and previous dragon years have been: 2000: Metal Dragon, 1988: Earth Dragon, 1976: Fire Dragon, 1964: Wood Dragon, 1952: Water Dragon.</p>
<p>In general, the characteristics of those born in the year of the Dragon are: resourceful, adaptable, original, arrogant, irritable. Dragons are most compatible with rats and monkeys.</p>
<p>In the world of digital art, dragons are a popular subject. Here, to celebrate the new year, we have compiled a selection of Year of the Dragon greetings and wallpapers, followed by some general dragon art.</p>
<p><img class="alignnone size-full wp-image-15622" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/year-of-the-dragon.jpg" alt="Year of the Dragon" width="580" height="360" /></p>
<p><span id="more-15621"></span></p>
<h2>Year of the Dragon Art</h2>
<p><a title="Year of the Dragon" href="http://dawnfrost.deviantart.com/art/Year-of-the-Dragon-141872202">Year of the Dragon</a><br />
<a href="http://dawnfrost.deviantart.com/art/Year-of-the-Dragon-141872202" target="_blank"><img class="alignnone size-full wp-image-15623" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-01.jpg" alt="Year of the Dragon" width="580" height="387" /></a></p>
<p><a title="Dragon Year 2012" href="http://beckitach.deviantart.com/art/Dragon-Year-2012-277013901">Dragon Year 2012</a><br />
<a href="http://beckitach.deviantart.com/art/Dragon-Year-2012-277013901" target="_blank"><img class="alignnone size-full wp-image-15624" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-02.jpg" alt="Dragon Year 2012" width="580" height="669" /></a></p>
<p><a title="Year of the Dragon" href="http://buninou.deviantart.com/art/Year-of-the-dragon-276802541">Year of the Dragon</a><br />
<a href="http://buninou.deviantart.com/art/Year-of-the-dragon-276802541" target="_blank"><img class="alignnone size-full wp-image-15625" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-03.jpg" alt="Year of the Dragon" width="580" height="618" /></a></p>
<p><a title="Year of the Dragon" href="http://kitchiki.deviantart.com/art/Year-of-the-Dragon-280674107">Year of the Dragon</a><br />
<a href="http://kitchiki.deviantart.com/art/Year-of-the-Dragon-280674107" target="_blank"><img class="alignnone size-full wp-image-15626" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-04.jpg" alt="Year of the Dragon" width="580" height="371" /></a></p>
<p><a title="Year of the Dragon" href="http://newbee-work.deviantart.com/art/YEAR-OF-THE-DRAGON-277628248">Year of the Dragon</a><br />
<a href="http://newbee-work.deviantart.com/art/YEAR-OF-THE-DRAGON-277628248" target="_blank"><img class="alignnone size-full wp-image-15627" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-05.jpg" alt="Year of the Dragon" width="580" height="461" /></a></p>
<p><a title="Happy New Year" href="http://dracomin.deviantart.com/art/Happy-New-Year-276933720">Happy New Year</a><br />
<a href="http://dracomin.deviantart.com/art/Happy-New-Year-276933720" target="_blank"><img class="alignnone size-full wp-image-15628" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-06.jpg" alt="Happy New Year" width="580" height="364" /></a></p>
<p><a title="Dragon Year 2012" href="http://ileranerak.deviantart.com/art/dragon-year-2012-277820178">Dragon Year 2012</a><br />
<a href="http://ileranerak.deviantart.com/art/dragon-year-2012-277820178" target="_blank"><img class="alignnone size-full wp-image-15629" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-07.jpg" alt="Dragon Year 2012" width="580" height="498" /></a></p>
<p><a title="Year of the Dragon" href="http://urnam7.deviantart.com/art/Year-of-the-Dragon-279646668">Year of the Dragon</a><br />
<a href="http://urnam7.deviantart.com/art/Year-of-the-Dragon-279646668" target="_blank"><img class="alignnone size-full wp-image-15630" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-08.jpg" alt="Year of the Dragon" width="580" height="751" /></a></p>
<p><a title="Year of the Dragon" href="http://emerald-depths.deviantart.com/art/Year-of-the-Dragon-280228880">Year of the Dragon</a><br />
<a href="http://emerald-depths.deviantart.com/art/Year-of-the-Dragon-280228880" target="_blank"><img class="alignnone size-full wp-image-15631" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-09.jpg" alt="Year of the Dragon" width="580" height="750" /></a></p>
<p><a title="The Year of the Dragon" href="http://cghub.com/images/view/195290/">The Year of the Dragon</a><br />
<a href="http://cghub.com/images/view/195290/" target="_blank"><img class="alignnone size-full wp-image-15632" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-10.jpg" alt="The Year of the Dragon" width="580" height="856" /></a></p>
<p><a title="Year of the Dragon" href="http://cghub.com/images/view/174840/">Year of the Dragon</a><br />
<a href="http://cghub.com/images/view/174840/" target="_blank"><img class="alignnone size-full wp-image-15633" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-11.jpg" alt="Year of the Dragon" width="580" height="523" /></a></p>
<p><a title="Year of the Dragon" href="http://kittensoft.deviantart.com/art/Year-of-the-Dragon-279923715">Year of the Dragon</a><br />
<a href="http://kittensoft.deviantart.com/art/Year-of-the-Dragon-279923715" target="_blank"><img class="alignnone size-full wp-image-15634" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-12.jpg" alt="Year of the Dragon" width="580" height="748" /></a></p>
<p><a title="Year of the Dragon 2012 Calendar" href="http://t-tiger.deviantart.com/art/Year-of-the-Dragon-2012-Calendar-272769237" target="_blank">Year of the Dragon 2012 Calendar</a></p>
<p><a href="http://t-tiger.deviantart.com/art/Year-of-the-Dragon-2012-Calendar-272769237"><img class="alignnone size-full wp-image-15635" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-13.jpg" alt="Year of the Dragon 2012 Calendar" width="580" height="757" /></a><br />
<a title="Japanese New Year's Card 2012" href="http://piyo119.deviantart.com/art/Japanese-New-Year-s-card-2012-276833690" target="_blank">Japanese New Year’s Card 2012</a></p>
<p><a href="http://piyo119.deviantart.com/art/Japanese-New-Year-s-card-2012-276833690"><img class="alignnone size-full wp-image-15636" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-14.jpg" alt="Japanese New Year's Card 2012" width="580" height="381" /></a><br />
<a title="Dragon Year" href="http://sparrow-chan.deviantart.com/art/Dragon-year-278606769" target="_blank">Dragon Year</a></p>
<p><a href="http://sparrow-chan.deviantart.com/art/Dragon-year-278606769"><img class="alignnone size-full wp-image-15637" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-15.jpg" alt="Dragon Year" width="580" height="596" /></a><br />
<a title="Chinese Dragon Slifer Wallpaper" href="http://slifertheskydragon.deviantart.com/art/Chinese-Dragon-Slifer-Wallpaper-280538023" target="_blank">Chinese Dragon Slifer Wallpaper</a></p>
<p><a href="http://slifertheskydragon.deviantart.com/art/Chinese-Dragon-Slifer-Wallpaper-280538023"><img class="alignnone size-full wp-image-15638" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-16.jpg" alt="Chinese Dragon Slifer Wallpaper" width="580" height="326" /></a><br />
<a title="Year of the Dragon 2012" href="http://sugakusha.deviantart.com/art/Year-of-the-Dragon-2012-280259236" target="_blank">Year of the Dragon 2012</a></p>
<p><a href="http://sugakusha.deviantart.com/art/Year-of-the-Dragon-2012-280259236"><img class="alignnone size-full wp-image-15639" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-17.jpg" alt="Year of the Dragon 2012" width="580" height="363" /></a><br />
<a title="Year of the Dragon 2012 Red" href="http://kybrdgal.deviantart.com/art/Year-of-the-Dragon-2012-Red-279468574" target="_blank">Year of the Dragon 2012 Red</a></p>
<p><a href="http://kybrdgal.deviantart.com/art/Year-of-the-Dragon-2012-Red-279468574"><img class="alignnone size-full wp-image-15640" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-18.jpg" alt="Year of the Dragon 2012 Red" width="580" height="363" /></a><br />
<a title="Chinese New Year/2012 Year of the Dragon" href="http://www.behance.net/gallery/Chinese-New-Year-2012-The-Year-of-the-Dragon/2655021" target="_blank">Chinese New Year/2012 Year of the Dragon</a></p>
<p><a href="http://www.behance.net/gallery/Chinese-New-Year-2012-The-Year-of-the-Dragon/2655021"><img class="alignnone size-full wp-image-15641" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-19.jpg" alt="Chinese New Year/2012 Year of the Dragon" width="580" height="381" /></a><br />
<a title="Happy Year of the Dragon" href="http://www.behance.net/gallery/Happy-Year-of-the-Dragon/2787427" target="_blank">Happy Year of the Dragon</a></p>
<p><a href="http://www.behance.net/gallery/Happy-Year-of-the-Dragon/2787427" target="_blank"><img class="alignnone size-full wp-image-15642" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-20.jpg" alt="Happy Year of the Dragon" width="580" height="396" /></a></p>
<p><a title="Happy Year of the Dragon" href="http://www.behance.net/gallery/Happy-Chinese-New-Year-2012-Year-of-the-dragon/2941423">Happy Year of the Dragon</a><br />
<a href="http://www.behance.net/gallery/Happy-Chinese-New-Year-2012-Year-of-the-dragon/2941423" target="_blank"><img class="alignnone size-full wp-image-15643" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-21.jpg" alt="Happy Year of the Dragon" width="580" height="435" /></a></p>
<h2>General Dragon Art</h2>
<p><a title="Dragon Mage" href="http://kerembeyit.deviantart.com/art/Dragon-Mage-112874880">Dragon Mage</a><br />
<a href="http://kerembeyit.deviantart.com/art/Dragon-Mage-112874880" target="_blank"><img class="alignnone size-full wp-image-15644" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-22.jpg" alt="Dragon Mage" width="580" height="789" /></a></p>
<p><a title="Ice Dragon" href="http://tarjcia.deviantart.com/art/Ice-Dragon-32271806">Ice Dragon</a><br />
<a href="http://tarjcia.deviantart.com/art/Ice-Dragon-32271806" target="_blank"><img class="alignnone size-full wp-image-15645" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-23.jpg" alt="Ice Dragon" width="580" height="828" /></a></p>
<p><a title="Dragon Fury" href="http://ironshod.deviantart.com/art/Dragon-Fury-145952780">Dragon Fury</a><br />
<a href="http://ironshod.deviantart.com/art/Dragon-Fury-145952780" target="_blank"><img class="alignnone size-full wp-image-15646" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-24.jpg" alt="Dragon Fury" width="580" height="839" /></a></p>
<p><a title="Victorious Dragon" href="http://ironshod.deviantart.com/art/Victorious-dragon-93671686">Victorious Dragon</a><br />
<a href="http://ironshod.deviantart.com/art/Victorious-dragon-93671686" target="_blank"><img class="alignnone size-full wp-image-15647" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-25.jpg" alt="Victorious Dragon" width="580" height="668" /></a></p>
<p><a title="The Green Dragon" href="http://amisgaudi.deviantart.com/art/The-green-dragon-131419430">The Green Dragon</a><br />
<a href="http://amisgaudi.deviantart.com/art/The-green-dragon-131419430" target="_blank"><img class="alignnone size-full wp-image-15648" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-26.jpg" alt="The Green Dragon" width="580" height="430" /></a></p>
<p><a title="Chinese Dragon" href="http://orgastic.deviantart.com/art/Chinese-Dragon-75598334">Chinese Dragon</a><br />
<a href="http://orgastic.deviantart.com/art/Chinese-Dragon-75598334" target="_blank"><img class="alignnone size-full wp-image-15649" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-27.jpg" alt="Chinese Dragon" width="580" height="293" /></a></p>
<p><a title="Flight of the Dragon Kyn" href="http://kerembeyit.deviantart.com/art/Flight-of-the-Dragon-Kyn-182049205">Flight of the Dragon Kyn</a><br />
<a href="http://kerembeyit.deviantart.com/art/Flight-of-the-Dragon-Kyn-182049205" target="_blank"><img class="alignnone size-full wp-image-15650" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-28.jpg" alt="Flight of the Dragon Kyn" width="580" height="869" /></a></p>
<p><a title="Dragon" href="http://genzoman.deviantart.com/art/Dragon-79449817">Dragon</a><br />
<a href="http://genzoman.deviantart.com/art/Dragon-79449817" target="_blank"><img class="alignnone size-full wp-image-15651" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-29.jpg" alt="Dragon" width="580" height="808" /></a></p>
<p><a title="Dragon Hurlant" href="http://rinpoo-chuang.deviantart.com/art/dragon-hurlant-24245064">Dragon Hurlant</a><br />
<a href="http://rinpoo-chuang.deviantart.com/art/dragon-hurlant-24245064" target="_blank"><img class="alignnone size-full wp-image-15652" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-30.jpg" alt="Dragon Hurlant" width="580" height="721" /></a></p>
<p><a title="Dragon and Knight" href="http://www.behance.net/gallery/Dragon-and-Knight/2862821">Dragon and Knight</a><br />
<a href="http://www.behance.net/gallery/Dragon-and-Knight/2862821" target="_blank"><img class="alignnone size-full wp-image-15653" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-31.jpg" alt="Dragon and Knight" width="580" height="562" /></a></p>
<p><a title="East Dragon Love Attack" href="http://www.behance.net/gallery/2012-East-Love-Attack-Dragon-love-attack-cecc/2406466">East Dragon Love Attack</a><br />
<a href="http://www.behance.net/gallery/2012-East-Love-Attack-Dragon-love-attack-cecc/2406466" target="_blank"><img class="alignnone size-full wp-image-15654" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-32.jpg" alt="East Dragon Love Attack" width="580" height="617" /></a></p>
<p><a title="Dragon" href="http://www.behance.net/gallery/Dragon/2801927">Dragon</a><br />
<a href="http://www.behance.net/gallery/Dragon/2801927" target="_blank"><img class="alignnone size-full wp-image-15655" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-33.jpg" alt="Dragon" width="580" height="829" /></a></p>
<p><a title="Fire Dragon" href="http://www.behance.net/gallery/CNY-Ecard-2012/2861693">Fire Dragon</a><br />
<a href="http://www.behance.net/gallery/CNY-Ecard-2012/2861693" target="_blank"><img class="alignnone size-full wp-image-15656" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-34.jpg" alt="Fire Dragon" width="580" height="474" /></a></p>
<p><a title="Confrontation" href="http://www.behance.net/gallery/Confrontation/2928755">Confrontation</a><br />
<a href="http://www.behance.net/gallery/Confrontation/2928755" target="_blank"><img class="alignnone size-full wp-image-15657" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-35.jpg" alt="Confrontation" width="580" height="748" /></a></p>
<p><a title="Dragon Ball" href="http://www.behance.net/gallery/Dragon-Ball/1112401">Dragon Ball</a><br />
<a href="http://www.behance.net/gallery/Dragon-Ball/1112401" target="_blank"><img class="alignnone size-full wp-image-15658" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-36.jpg" alt="Dragon Ball" width="580" height="657" /></a></p>
<p><a title="The Dragon Wallpaper" href="http://theoutcast1821.deviantart.com/art/The-Dragon-wallpaper-135503495">The Dragon Wallpaper</a><br />
<a href="http://theoutcast1821.deviantart.com/art/The-Dragon-wallpaper-135503495" target="_blank"><img class="alignnone size-full wp-image-15659" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/dragon-37.jpg" alt="The Dragon Wallpaper" width="580" height="423" /></a></p>
<h2>Conclusion</h2>
<p>We hope you have enjoyed viewing this selection of outstanding dragon art. If you celebrate Chinese New Year, we wish you a very happy, healthy and prosperous New Year.</p>
<p>Please leave any comment or acknowledgments for the art/artists below.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2011/03/04/35-beautiful-examples-of-nature-friendly-art-for-tree-huggers/" title="35 Beautiful Examples of Nature-Friendly Art for Tree-Huggers">35 Beautiful Examples of Nature-Friendly Art for Tree-Huggers</a></li><li><a href="http://www.onextrapixel.com/2011/02/11/showcase-of-fractal-artwork-from-deviantart/" title="Showcase of Fractal Artwork from deviantART">Showcase of Fractal Artwork from deviantART</a></li><li><a href="http://www.onextrapixel.com/2010/10/25/typography-as-design-advanced-technology-and-art/" title="Typography as Design: Advanced Technology and Art">Typography as Design: Advanced Technology and Art</a></li><li><a href="http://www.onextrapixel.com/2010/10/15/inspiring-drinks-labels-positive-reasons-for-turning-to-the-bottle/" title="Inspiring Drinks Labels: Positive Reasons for Turning to The Bottle">Inspiring Drinks Labels: Positive Reasons for Turning to The Bottle</a></li></ul><hr />
<p>Written by: Carol Francis for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/01/25/year-of-the-dragon-outstanding-dragon-digital-art/#comments">One comment</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/inspiration/" title="View all posts in Inspiration" rel="category tag">Inspiration</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=X0maLrpGLzQ:v4Xq7vEP50M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=X0maLrpGLzQ:v4Xq7vEP50M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=X0maLrpGLzQ:v4Xq7vEP50M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=X0maLrpGLzQ:v4Xq7vEP50M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=X0maLrpGLzQ:v4Xq7vEP50M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=X0maLrpGLzQ:v4Xq7vEP50M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=X0maLrpGLzQ:v4Xq7vEP50M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=X0maLrpGLzQ:v4Xq7vEP50M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=X0maLrpGLzQ:v4Xq7vEP50M:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/X0maLrpGLzQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/01/25/year-of-the-dragon-outstanding-dragon-digital-art/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/01/25/year-of-the-dragon-outstanding-dragon-digital-art/</feedburner:origLink></item>
		<item>
		<title>Showcase of Creative Booklet Designs</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/KHZh7vf7mgU/</link>
		<comments>http://www.onextrapixel.com/2012/01/24/showcase-of-creative-booklet-designs/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 11:00:27 +0000</pubDate>
		<dc:creator>Jameel Khan</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[inspirational]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=15403</guid>
		<description><![CDATA[In the world of corporate design, booklets are one of the standard tools that you can use for promotion and advertising. Booklets are like the tiny books or magazines yet are very powerful. Booklets usually lay around in... <a href="http://www.onextrapixel.com/2012/01/24/showcase-of-creative-booklet-designs/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/W4WRU9sH7lfVCbm0iGdc89cpisI/0/da"><img src="http://feedads.g.doubleclick.net/~a/W4WRU9sH7lfVCbm0iGdc89cpisI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/W4WRU9sH7lfVCbm0iGdc89cpisI/1/da"><img src="http://feedads.g.doubleclick.net/~a/W4WRU9sH7lfVCbm0iGdc89cpisI/1/di" border="0" ismap="true"></img></a></p><p>In the world of corporate design, <strong>booklets</strong> are one of the standard tools that you can use for <strong>promotion and advertising</strong>. Booklets are like the tiny books or magazines yet are very powerful. Booklets usually lay around in conference halls, offices and waiting rooms and on occasion they include an annual report of the company or showcase the portfolio of an artist.</p>
<p>Apart from being easy to carry, booklets are less likely to bore the reader as their content is shorter and enticing. Therefore, such printed materials can be utilized essentially as manuals, guides, as well as flyers to furnish readers a concise but succinct idea regarding a certain topic.</p>
<p><img class="alignnone size-full wp-image-15404" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-cover.jpg" alt="Creative Booklet Designs" width="580" height="360" /><br />
<span id="more-15403"></span></p>
<p>Booklet designs have to relay messages to the readers through images and few words, usually presented as key points that get the aims, ideals, products and/or services of the company across. A good booklet design is of paramount importance to all companies, and the designer must be skilled in this field.</p>
<h2>Showcase of Creative Booklet Designs</h2>
<p>Here is a selection of effective booklet designs produced by creative designers for your inspiration and viewing pleasure.</p>
<p><a title="Portfolio" href="http://www.behance.net/gallery/portfolio/439926">Portfolio</a><br />
<a href="http://www.behance.net/gallery/portfolio/439926"><img class="alignnone size-full wp-image-15405" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-1.jpg" alt="Portfolio" width="580" height="478" /></a></p>
<p><a title="ALPHA_TXT" href="http://www.behance.net/Gallery/ALPHA_TXT/88749">ALPHA_TXT</a><br />
<a href="http://www.behance.net/Gallery/ALPHA_TXT/88749"><img class="alignnone size-full wp-image-15406" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-2.jpg" alt="ALPHA TXT" width="580" height="318" /></a></p>
<p><a title="Capital Jets Booklet" href="http://www.behance.net/Gallery/New-style-to-fly/94005">Capital Jets Booklet</a><br />
<a href="http://www.behance.net/Gallery/New-style-to-fly/94005"><img class="alignnone size-full wp-image-15407" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-3.jpg" alt="Capital Jets Booklet" width="580" height="363" /></a></p>
<p><a title="Avant Garde Gothic Typeface Booklet" href="http://www.behance.net/Gallery/Avant-Garde-Gothic-Typeface-Booklet/95659">Avant Garde Gothic Typeface Booklet</a><br />
<a href="http://www.behance.net/Gallery/Avant-Garde-Gothic-Typeface-Booklet/95659"><img class="alignnone size-full wp-image-15408" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-4.jpg" alt="Avant Garde Gothic Typeface Booklet" width="580" height="435" /></a></p>
<p><a title="Kiosk 37" href="http://www.behance.net/Gallery/Kiosk-37/57777">Kiosk 37</a><br />
<a href="http://www.behance.net/Gallery/Kiosk-37/57777"><img class="alignnone size-full wp-image-15410" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-6.jpg" alt="Kiosk 37" width="580" height="377" /></a></p>
<p><a title="Restaurants Identity book" href="http://www.graphic-exchange.com/archives/03identity_04.htm">Restaurants Identity book</a><br />
<a href="http://www.graphic-exchange.com/archives/03identity_04.htm"><img class="alignnone size-full wp-image-15411" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-7.jpg" alt="Restaurants Identity book" width="580" height="385" /></a></p>
<p><a title="Silkroad" href="http://www.behance.net/Gallery/SILKOAD/81140">Silkroad</a><br />
<a href="http://www.behance.net/Gallery/SILKOAD/81140"><img class="alignnone size-full wp-image-15413" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-9.jpg" alt="Silkroad" width="580" height="398" /></a></p>
<p><a title="De Facto" href="http://www.de-facto.com/print/">De Facto</a><br />
<a href="http://www.de-facto.com/print/"><img class="alignnone size-full wp-image-15417" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-13.jpg" alt="De Facto" width="580" height="310" /></a></p>
<p><a title="Caledonian" href="http://www.behance.net/gallery/Caledonian-Creates-2008/93306">Caledonian</a><br />
<a href="http://www.behance.net/gallery/Caledonian-Creates-2008/93306"><img class="alignnone size-full wp-image-15418" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-14.jpg" alt="Caledonian" width="580" height="410" /></a></p>
<p><a title="Frankmusik 3 Little Words EP" href="http://www.behance.net/gallery/Frankmusik-3-Little-Words-EP/139241">Frankmusik 3 Little Words EP</a><br />
<a href="http://www.behance.net/gallery/Frankmusik-3-Little-Words-EP/139241"><img class="alignnone size-full wp-image-15420" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-16.jpg" alt="Frankmusik 3 Little Words EP" width="580" height="449" /></a></p>
<p><a title="Recycle Yourself Booklet" href="http://www.flickr.com/photos/38646673@N05/3554541198/">Recycle Yourself Booklet</a><br />
<a href="http://www.flickr.com/photos/38646673@N05/3554541198/"><img class="alignnone size-full wp-image-15421" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-17.jpg" alt="Recycle Yourself Booklet" width="580" height="314" /></a></p>
<p><a title="Booklet and Badge" href="http://vi.sualize.us/view/acb12d7ccc727018114950cbaf6c156c/">Booklet and Badge</a><br />
<a href="http://vi.sualize.us/view/acb12d7ccc727018114950cbaf6c156c/"><img class="alignnone size-full wp-image-15422" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-18.jpg" alt="Booklet and Badge" width="580" height="465" /></a></p>
<p><a title="Verbo na Escola Mailing" href="http://www.behance.net/Gallery/Verbo-na-Escola-mailing/80072">Verbo na Escola Mailing</a><br />
<a href="http://www.behance.net/Gallery/Verbo-na-Escola-mailing/80072"><img class="alignnone size-full wp-image-15423" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-19.jpg" alt="Verbo na Escola Mailing" width="580" height="363" /></a></p>
<p><a title="Type Specimine Booklet" href="http://www.behance.net/gallery/Type-Specimine-Booklet/318636">Type Specimine Booklet</a><br />
<a href="http://www.behance.net/gallery/Type-Specimine-Booklet/318636"><img class="alignnone size-full wp-image-15424" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-20.jpg" alt="Type Specimine Booklet" width="580" height="378" /></a></p>
<p><a title="HIKE Design Ravensbourne" href="http://www.hikedesign.co.uk/work.php?works_id=33&amp;expanddiv=all">HIKE Design Ravensbourne</a><br />
<a href="http://www.hikedesign.co.uk/work.php?works_id=33&amp;expanddiv=all"><img class="alignnone size-full wp-image-15425" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-21.jpg" alt="HIKE Design Ravensbourne" width="580" height="392" /></a></p>
<p><a title="Beautiful Trash" href="http://www.behance.net/gallery/BEAUTIFUL-TRASH/195907">Beautiful Trash</a><br />
<a href="http://www.behance.net/gallery/BEAUTIFUL-TRASH/195907"><img class="alignnone size-full wp-image-15426" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-22.jpg" alt="Beautiful Trash" width="580" height="333" /></a></p>
<p><a title="Cute Booklet" href="http://vi.sualize.us/view/8808f1021e5fda4d0945f02b1648b64d/">Cute Booklet</a><br />
<a href="http://vi.sualize.us/view/8808f1021e5fda4d0945f02b1648b64d/"><img class="alignnone size-full wp-image-15428" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-24.jpg" alt="Cute Booklet" width="580" height="326" /></a></p>
<p><a title="Waterstones Murder Mystery Book Month" href="http://www.behance.net/gallery/Waterstones-Murder-Mystery-Book-Month/374067">Waterstones Murder Mystery Book Month</a><br />
<a href="http://www.behance.net/gallery/Waterstones-Murder-Mystery-Book-Month/374067"><img class="alignnone size-full wp-image-15429" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-25.jpg" alt="Waterstones Murder Mystery Book Month" width="580" height="413" /></a></p>
<p><a title="University of Lincoln: Science Dept Prospectus" href="http://www.behance.net/Gallery/University-of-Lincoln-Science-Dept-Prospectus/282099">University of Lincoln: Science Dept Prospectus</a><br />
<a href="http://www.behance.net/Gallery/University-of-Lincoln-Science-Dept-Prospectus/282099"><img class="alignnone size-full wp-image-15430" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-26.jpg" alt="University of Lincoln: Science Dept Prospectus" width="580" height="410" /></a></p>
<p><a title="Effektive CV Poster Mailer" href="http://www.behance.net/gallery/Effektive-CVPoster-Mailer/107375">Effektive CV Poster Mailer</a><br />
<a href="http://www.behance.net/gallery/Effektive-CVPoster-Mailer/107375"><img class="alignnone size-full wp-image-15431" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-27.jpg" alt="Effektive CV Poster Mailer" width="580" height="418" /></a></p>
<p><a title="Portland has been Busy with Beautiful Design" href="http://designdust.tumblr.com/post/728153907/portland-has-been-busy-with-beautiful-design">Portland has been Busy with Beautiful Design</a><br />
<a href="http://designdust.tumblr.com/post/728153907/portland-has-been-busy-with-beautiful-design"><img class="alignnone size-full wp-image-15432" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-28.jpg" alt="Portland has been Busy with Beautiful Design" width="580" height="332" /></a></p>
<p><a title="SHN Mood Booklet" href="http://www.behance.net/gallery/SHN-Mood-Booklet/142520">SHN Mood Booklet</a><br />
<a href="http://www.behance.net/gallery/SHN-Mood-Booklet/142520"><img class="alignnone size-full wp-image-15433" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-29.jpg" alt="SHN Mood Booklet" width="580" height="368" /></a></p>
<p><a title="Retrospective 08 Aiga Senior BFA Catalog" href="http://www.behance.net/Gallery/RETROSPECTIVE08-AIGA-Senior-BFA-Catalog/193738">Retrospective 08 Aiga Senior BFA Catalog</a><br />
<a href="http://www.behance.net/Gallery/RETROSPECTIVE08-AIGA-Senior-BFA-Catalog/193738"><img class="alignnone size-full wp-image-15434" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-30.jpg" alt="Retrospective 08 Aiga Senior BFA Catalog" width="580" height="375" /></a></p>
<p><a title="Orzamento 08" href="http://www.flickr.com/photos/marcosdopico/2438409821/">Orzamento 08</a><br />
<a href="http://www.flickr.com/photos/marcosdopico/2438409821/"><img class="alignnone size-full wp-image-15435" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-31.jpg" alt="Orzamento 08" width="580" height="386" /></a></p>
<p><a title="All is full of..." href="http://www.behance.net/gallery/All-is-full-of___/172061">All is full of...</a><br />
<a href="http://www.behance.net/gallery/All-is-full-of___/172061"><img class="alignnone size-full wp-image-15436" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-32.jpg" alt="All is full of..." width="580" height="357" /></a></p>
<p><a title="Design Methodologies Booklet Photo" href="http://www.flickr.com/photos/shawnamoyers/3634159521/">Design Methodologies Booklet Photo</a><br />
<a href="http://www.flickr.com/photos/shawnamoyers/3634159521/"><img class="alignnone size-full wp-image-15437" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-33.jpg" alt="Design Methodologies Booklet Photo" width="580" height="462" /></a></p>
<p><a title="Some Thoughts on Design" href="http://www.flickr.com/photos/andreasmb/2451461830/">Some Thoughts on Design</a><br />
<a href="http://www.flickr.com/photos/andreasmb/2451461830/"><img class="alignnone size-full wp-image-15438" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-34.jpg" alt="Some Thoughts on Design" width="580" height="386" /></a></p>
<p><a title="Lago Estate" href="http://www.behance.net/Gallery/lago-estate/175126">Lago Estate</a><br />
<a href="http://www.behance.net/Gallery/lago-estate/175126"><img class="alignnone size-full wp-image-15439" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-35.jpg" alt="Lago Estate" width="580" height="410" /></a></p>
<p><a title="Le guide des admiscibles" href="http://www.flickr.com/photos/rumberodesign/544146356/">Le guide des admiscibles</a><br />
<a href="http://www.flickr.com/photos/rumberodesign/544146356/"><img class="alignnone size-full wp-image-15441" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-37.jpg" alt="Le guide des admiscibles" width="580" height="422" /></a></p>
<p><a title="Booklet Design" href="http://www.rgbstudio.co.uk/">Booklet Design</a><br />
<a href="http://www.rgbstudio.co.uk/"><img class="alignnone size-full wp-image-15442" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-38.jpg" alt="Booklet Design" width="580" height="349" /></a></p>
<p><a title="Altus" href="http://www.behance.net/Gallery/Altus/52980">Altus</a><br />
<a href="http://www.behance.net/Gallery/Altus/52980"><img class="alignnone size-full wp-image-15444" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/booklet-design-40.jpg" alt="Altus" width="580" height="344" /></a></p>
<h2>Conclusion</h2>
<p>In this roundup, we have shared some excellent examples of creative booklet designs that you can get ideas from when creating your own. With this collection, we tried to include innovative, visually appealing and attention-grabbing design solutions. We hope that everybody will find something interesting and unusual.</p>
<p>Let us know which are your favorites in the comments section below.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2011/10/07/all-about-steve-the-amazing-steve-jobs-1955-2011/" title="All About Steve: The Amazing Steve Jobs (1955 &#8211; 2011)">All About Steve: The Amazing Steve Jobs (1955 &#8211; 2011)</a></li><li><a href="http://www.onextrapixel.com/2011/10/03/waking-the-sleeping-genius-within-a-designer/" title="Waking the Sleeping Genius Within a Designer">Waking the Sleeping Genius Within a Designer</a></li><li><a href="http://www.onextrapixel.com/2011/09/27/beautiful-food-and-drink-packaging-design/" title="Beautiful Food and Drink Packaging Design">Beautiful Food and Drink Packaging Design</a></li><li><a href="http://www.onextrapixel.com/2011/09/22/24-fabulous-one-page-web-layouts/" title="24 Fabulous One Page Web Layouts">24 Fabulous One Page Web Layouts</a></li></ul><hr />
<p>Written by: Jameel Khan for <a href="http://www.onextrapixel.com">Onextrapixel - Web Design &amp; Development Magazine</a> | <a href="http://www.onextrapixel.com/2012/01/24/showcase-of-creative-booklet-designs/#comments">3 comments</a>
<br/>
Post Topic(s): <a href="http://www.onextrapixel.com/category/inspiration/" title="View all posts in Inspiration" rel="category tag">Inspiration</a><br/>
</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=KHZh7vf7mgU:AXNA-gl3Oxg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=KHZh7vf7mgU:AXNA-gl3Oxg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=KHZh7vf7mgU:AXNA-gl3Oxg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=KHZh7vf7mgU:AXNA-gl3Oxg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=KHZh7vf7mgU:AXNA-gl3Oxg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=KHZh7vf7mgU:AXNA-gl3Oxg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=KHZh7vf7mgU:AXNA-gl3Oxg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=KHZh7vf7mgU:AXNA-gl3Oxg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=KHZh7vf7mgU:AXNA-gl3Oxg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/KHZh7vf7mgU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/01/24/showcase-of-creative-booklet-designs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/01/24/showcase-of-creative-booklet-designs/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 46/83 queries in 0.273 seconds using apc
Object Caching 1757/1802 objects using apc
Content Delivery Network via net.onextrapixel.com

Served from: onextrapixel.com @ 2012-02-06 22:21:43 -->

