<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Powerusers &#187; Tutorials</title>
	<atom:link href="http://nikhilmisal.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://nikhilmisal.com</link>
	<description>The Design Blog for Web Design Resources and Inspiration</description>
	<lastBuildDate>Tue, 15 May 2012 20:53:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Learning JSP (Part 1) &#8211; Introduction</title>
		<link>http://nikhilmisal.com/learning-jsp-part1/</link>
		<comments>http://nikhilmisal.com/learning-jsp-part1/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 12:14:50 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jsp]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=2808</guid>
		<description><![CDATA[Hello everyone! We are starting a new series for exploring well popular server side technology called &#8216;JSP&#8217; (Java Server Pages). We will focus on learning this technology from very basic. Today we will be covering following topics: What is JSP? How does it looks like? Where can we use it? Things required to get started. [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone! We are starting a new series for exploring well popular server side technology called &#8216;JSP&#8217; (Java Server Pages). We will focus on learning this technology from very basic.<br />
Today we will be covering following topics:</p>
<ol>
<li>What is JSP?</li>
<li>How does it looks like?</li>
<li>Where can we use it?</li>
<li>Things required to get started.</li>
</ol>
<div><span id="more-2808"></span></div>
<h3 style="background: url('http://icdn.nikhilmisal.com/wp-content/uploads/2012/02/heading.jpg') no-repeat top center; color: #fff; padding: 5px 10px;">1. What is JSP?</h3>
<p><img class="alignright  wp-image-2819" style="margin: 10px;" title="JSP Introduction" src="http://icdn.nikhilmisal.com/wp-content/uploads/2012/02/jsp-intro.jpg" alt="JSP Introduction image" width="183" height="183" />JSP is a server side technology like ASP and PHP. This technology allows us to use Java code with static markup language. It is useful for development of web based application independent of server and platform. JSP page is compiled and executed on the server and the resulting HTML or XML page is delivered to the client side. The compiled pages on server uses Java bytecode and this bytecode can be executed by Java Virtual Machine (JVM).</p>
<blockquote><p><strong>Java bytecode – It is a form of instruction that Java Virtual Machines executes. Having knowledge of java bytecode is same as having knowledge of assembler for C or C++ programmer.</strong></p></blockquote>
<h3 style="background: url('http://icdn.nikhilmisal.com/wp-content/uploads/2012/02/heading.jpg') no-repeat top center; color: #fff; padding: 5px 10px;">2. How does it look like?</h3>
<p>The use of jsp is same as that of php. We can use jsp tags along with the regular HTML tags. See the following example for getting clear idea.</p>
<pre>&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;JSP Demo Page&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;% out.println("This Line is in JSP tag."); %&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>As you can see, I have used jsp tag along with html tags. We can use jsp tags wherever we want to show the dynamically generated content.</p>
<h3 style="background: url('http://icdn.nikhilmisal.com/wp-content/uploads/2012/02/heading.jpg') no-repeat top center; color: #fff; padding: 5px 10px;">3. Where can we use it?</h3>
<p><a href="http://upload.wikimedia.org/wikipedia/commons/4/4a/Webservices.png"><img class="alignleft" style="margin: 10px;" title="Web Service Architecture" src="http://upload.wikimedia.org/wikipedia/commons/4/4a/Webservices.png" alt="" width="240" height="218" /></a>JSP can be used anywhere where dynamic nature is required for your application or website. If you want to show data from database, jsp is the best choice. It is secured technology since every jsp page is compiled into the bytecode on the server and no human being can read it. You can separate design view and business logic of your application to make it more defensive. As jsp requires JVM for execution and JVM is available for all platforms so it becomes platform independent too. It can be used for creating Web Sites, Web Services, Online Shops, Content Management Systems and much more.</p>
<h3 style="background: url('http://icdn.nikhilmisal.com/wp-content/uploads/2012/02/heading.jpg') no-repeat top center; color: #fff; padding: 5px 10px;">4. Things required to get started!</h3>
<p><img class="alignright size-full wp-image-2824" title="Things Required" src="http://icdn.nikhilmisal.com/wp-content/uploads/2012/02/things-req.jpg" alt="Things required" width="250" height="250" />For getting started with jsp you will require following tools/application.<br />
<strong>a. Java Runtime Environment (JRE) depending upon your OS.</strong><br />
<strong> b. Apache Tomcat Server</strong><br />
<strong> c. Any text editing software you love.</strong></p>
<p>For today, this will be enough. In next post we will setup environment for running jsp and write first jsp page.</p>
<p>If you like this article and want to continue learning more about jsp then please give your feedback and comments.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/create-simple-random-color-generator-using-javascript/' title='Create Simple Random Color Generator using JavaScript'>Create Simple Random Color Generator using JavaScript</a></li>
<li><a href='http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/' title='How to Create Coda Slider in Minutes'>How to Create Coda Slider in Minutes</a></li>
<li><a href='http://nikhilmisal.com/why-these-31-blogs-rock-always/' title='Why these 31 Blogs Rock (Always)?'>Why these 31 Blogs Rock (Always)?</a></li>
<li><a href='http://nikhilmisal.com/create-simple-navigation-using-css3-styling/' title='Create Simple Navigation using CSS3 Styling'>Create Simple Navigation using CSS3 Styling</a></li>
<li><a href='http://nikhilmisal.com/how-to-add-social-sharing-icons-in-your-post/' title='How to Add Social Sharing Icons in Your Post'>How to Add Social Sharing Icons in Your Post</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/learning-jsp-part1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Simple Random Color Generator using JavaScript</title>
		<link>http://nikhilmisal.com/create-simple-random-color-generator-using-javascript/</link>
		<comments>http://nikhilmisal.com/create-simple-random-color-generator-using-javascript/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 12:00:40 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=2469</guid>
		<description><![CDATA[Hello everyone! I am writing a post after long time since I was busy in 12 hours a day tight schedule for almost Six months. Although the experience was very awesome. So today, we are going to create a very simple Random Color Generator using JavaScript. Some of you guys might think it as very [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone! I am writing a post after long time since I was busy in 12 hours a day tight schedule for almost Six months. Although the experience was very awesome.</p>
<p>So today, we are going to create a very simple Random Color Generator using JavaScript. Some of you guys might think it as very very simple but it&#8217;s really fun to create. If you haven&#8217;t created yet by yourself then I would suggest trying it. It actually takes 2-3 minutes for creating.</p>
<p><a title="Download" href="http://demo.nikhilmisal.com/random-color/color.zip"><img class="alignnone size-full wp-image-2283" style="margin-left: 90px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px;" title="Download Source Code" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/download-sc.jpg" alt="" width="150" height="100" /></a><a title="Preview" href="http://demo.nikhilmisal.com/random-color" target="_blank"><img class="alignnone size-full wp-image-2284" style="margin-top: 10px; margin-bottom: 10px; margin-left: 20px; margin-right: 80px;" title="Preview Demo" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/preview-d.jpg" alt="" width="150" height="100" /></a></p>
<p><span id="more-2469"></span></p>
<p>Here we are going to generate Hex Number. For this we will create an Array which will contain numbers ‘0’ to ‘9’ and characters ‘a’ to ‘f’ as the range of the Hex Number is from <em>0&#215;000000</em> to <em>0xFFFFFF</em>. Then we will pick an element from an array randomly and place it in the Hex Number.<img class="aligncenter size-full wp-image-2477" title="Generating Random Number" src="http://icdn.nikhilmisal.com/wp-content/uploads/2011/03/random_color.jpg" alt="" width="530" height="400" /></p>
<h3>Step1:</h3>
<p>Create an Array</p>
<pre class="brush: javascript">

var hexno=new String;
arr=new Array(&quot;0&quot;,&quot;1&quot;,&quot;2&quot;,&quot;3&quot;,&quot;4&quot;,&quot;5&quot;,&quot;6&quot;,&quot;7&quot;,&quot;8&quot;,&quot;9&quot;,&quot;a&quot;,&quot;b&quot;,&quot;c&quot;,&quot;d&quot;,&quot;e&quot;,&quot;f&quot;);
</pre>
<h3>Step 2:</h3>
<p>We will select an element randomly from array. Math.random() generates random number from 0 to 1 which will be multiplied by 15 (since our array contains 16 elements with base 0). Math.round() will round the number to its nearest natural number.</p>
<pre class="brush: javascript">

var n1=Math.round(Math.random()*15);

var n2=Math.round(Math.random()*15);

var n3=Math.round(Math.random()*15);

var n4=Math.round(Math.random()*15);

var n5=Math.round(Math.random()*15);

var n6=Math.round(Math.random()*15);
</pre>
<h3>Step 3:</h3>
<p>Get a corresponding number for all the six elements and put it in the string.</p>
<pre class="brush: javascript">

hexno=&quot;#&quot;+arr[n1]+&quot;&quot;+arr[n2]+&quot;&quot;+arr[n3]+&quot;&quot;+arr[n4]+&quot;&quot;+arr[n5]+&quot;&quot;+arr[n6];
</pre>
<h3>Step 4:</h3>
<p>Use the string to apply the color.</p>
<pre class="brush: javascript">
window.document.bgColor=hexno;
</pre>
<p>That&#8217;s it. Random Color Generator is ready. Try it out.<br />
Final Code:</p>
<pre class="brush: javascript">
var hexno=new String;
arr=new Array(&quot;0&quot;,&quot;1&quot;,&quot;2&quot;,&quot;3&quot;,&quot;4&quot;,&quot;5&quot;,&quot;6&quot;,&quot;7&quot;,&quot;8&quot;,&quot;9&quot;,&quot;a&quot;,&quot;b&quot;,&quot;c&quot;,&quot;d&quot;,&quot;e&quot;,&quot;f&quot;);

var n1=Math.round(Math.random()*15);
var n2=Math.round(Math.random()*15);
var n3=Math.round(Math.random()*15);
var n4=Math.round(Math.random()*15);
var n5=Math.round(Math.random()*15);
var n6=Math.round(Math.random()*15);

hexno=&quot;#&quot;+arr[n1]+&quot;&quot;+arr[n2]+&quot;&quot;+arr[n3]+&quot;&quot;+arr[n4]+&quot;&quot;+arr[n5]+&quot;&quot;+arr[n6];

document.write(&quot;&amp;lt;div id=&#039;tag&#039;&amp;gt;&quot;);

document.write(&quot;&amp;lt;h2&amp;gt;Hex Color&amp;lt;/h2&amp;gt;&quot;+&quot;&amp;lt;h3&amp;gt;&quot;+hexno+&quot;&amp;lt;/h3&amp;gt;&quot;);

document.write(&quot;&amp;lt;/div&amp;gt;&quot;);

window.document.bgColor=hexno;
</pre>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/how-to-create-simple-tabs-using-yui/' title='How to Create Simple Tabs using YUI'>How to Create Simple Tabs using YUI</a></li>
<li><a href='http://nikhilmisal.com/learning-jsp-part1/' title='Learning JSP (Part 1) &#8211; Introduction'>Learning JSP (Part 1) &#8211; Introduction</a></li>
<li><a href='http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/' title='How to Create Coda Slider in Minutes'>How to Create Coda Slider in Minutes</a></li>
<li><a href='http://nikhilmisal.com/why-these-31-blogs-rock-always/' title='Why these 31 Blogs Rock (Always)?'>Why these 31 Blogs Rock (Always)?</a></li>
<li><a href='http://nikhilmisal.com/create-simple-navigation-using-css3-styling/' title='Create Simple Navigation using CSS3 Styling'>Create Simple Navigation using CSS3 Styling</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/create-simple-random-color-generator-using-javascript/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How to Create Coda Slider in Minutes</title>
		<link>http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/</link>
		<comments>http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 20:29:01 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Coda]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[Slideshow]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=2379</guid>
		<description><![CDATA[Slideshow is great way of displaying contents to your readers. And the use of jQuery in  creating these awesome sliders or slideshows is easy to implement and modify. Today in this tutorial we are going to create very easy Slider using Coda javascript library. So before going to the first step you can view the [...]]]></description>
			<content:encoded><![CDATA[<p>Slideshow is great way of displaying contents to your readers. And the use of jQuery in  creating these awesome sliders or slideshows is easy to implement and modify.</p>
<p>Today in this tutorial we are going to create very easy Slider using Coda javascript library.</p>
<p>So before going to the first step you can view the working demo of tutorial and download the source code below.</p>
<p><a title="Download" href="http://demo.nikhilmisal.com/coda-slider/coda-slider-demo.zip"><img class="alignnone size-full wp-image-2283" style="margin-left: 90px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px;" title="Download Source Code" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/download-sc.jpg" alt="" width="150" height="100" /></a><a title="Preview" href="http://demo.nikhilmisal.com/coda-slider/demo.html" target="_blank"><img class="alignnone size-full wp-image-2284" style="margin-top: 10px; margin-bottom: 10px; margin-left: 20px; margin-right: 80px;" title="Preview Demo" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/preview-d.jpg" alt="" width="150" height="100" /></a></p>
<p><span id="more-2379"></span></p>
<h3>Step 1: XHTML</h3>
<pre class="brush: xml">
&amp;lt;div id=&quot;content&quot;&amp;gt;
&amp;lt;h1&amp;gt;Coda Slider | DEMO
&amp;lt;div class=&quot;wrapper&quot;&amp;gt;
&amp;lt;div id=&quot;coda-slider-1&quot; class=&quot;coda-slider preload&quot;&amp;gt;

&amp;lt;div class=&quot;panel&quot;&amp;gt;
&amp;lt;div class=&quot;panel-wrapper&quot;&amp;gt;
&amp;lt;h2 class=&quot;title&quot;&amp;gt;Welcome!
&amp;lt;p&amp;gt;Hello, welcome to the working demo of Coda Slider. You can see how image, lists or text looks or works on various tabs. I hope you like this tutorial. Enjoy great sliding effect and try out with the above tabs.&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;div class=&quot;panel&quot;&amp;gt;
&amp;lt;div class=&quot;panel-wrapper&quot;&amp;gt;
&amp;lt;h2 class=&quot;title&quot;&amp;gt;Images can go Like this!
&amp;lt;img src=&quot;images/demo.jpg&quot; alt=&quot;demo image&quot; /&amp;gt;
Proin nec turpis eget dolor dictum lacinia. Nullam nunc magna, tincidunt eu porta in, faucibus sed magna. Suspendisse laoreet ornare ullamcorper. Nulla in tortor nibh. Pellentesque sed est vitae odio vestibulum aliquet in nec leo.
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;div class=&quot;panel&quot;&amp;gt;
&amp;lt;div class=&quot;panel-wrapper&quot;&amp;gt;
&amp;lt;h2 class=&quot;title&quot;&amp;gt;Recent Articles
&amp;lt;ul&amp;gt;
&amp;lt;li&amp;gt;&amp;lt;a title=&quot;15 Must Read Articles for Web Developers&quot; href=&quot;http://nikhilmisal.com/15-must-read-articles-for-web-developers/&quot;&amp;gt;15 Must Read Articles for Web Developers&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;&amp;lt;a title=&quot;Why these 31 Blogs Rock (Always)?&quot; href=&quot;http://nikhilmisal.com/why-these-31-blogs-rock-always/&quot;&amp;gt;Why these 31 Blogs Rock (Always)?&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
	&lt;li&gt;&lt;a title=&quot;Create Simple Navigation using &amp;lt;span class=&quot;&gt;CSS3 Styling&quot; href=&quot;http://nikhilmisal.com/create-simple-navigation-using-css3-styling/&quot;&amp;gt;Create Simple Navigation using CSS3 Styling&lt;/a&gt;&lt;/li&gt;
&amp;lt;li&amp;gt;&amp;lt;a title=&quot;30 Superbly Done Creative Ads&quot; href=&quot;http://nikhilmisal.com/30-superbly-done-creative-ads/&quot;&amp;gt;30 Superbly Done Creative Ads&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;div class=&quot;panel&quot;&amp;gt;
&amp;lt;div class=&quot;panel-wrapper&quot;&amp;gt;
&amp;lt;h2 class=&quot;title&quot;&amp;gt;Thank You&amp;lt;/h2&amp;gt;
This tutorial is created by Nikhil Misal for Powerusers.
&amp;lt;p&amp;gt;Thanks for visiting this demo! If you like this tutorial then please share and comment on it.&amp;lt;/p&amp;gt;
&amp;lt;p&amp;gt;You can freely use this slider for your future projects so go ahead and download the &amp;lt;a href=&quot;#&quot;&amp;gt;Source Code&amp;lt;/a&amp;gt;.&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;/div&amp;gt;&amp;lt;!-- .coda-slider --&amp;gt;
&amp;lt;/div&amp;gt;&amp;lt;!-- .coda-slider-wrapper --&amp;gt;
&amp;lt;h3&amp;gt;&amp;lt;a title=&quot;Go Back to Tutorial&quot; href=&quot;#&quot;&amp;gt;Go Back to Tutorial&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;
Created By: &lt;a title=&quot;My Portfolio&quot; href=&quot;http://imnikhil.net&quot;&gt;Nikhil Misal&lt;/a&gt;
&amp;lt;/div&amp;gt;
</pre>
<p>Here the content of each slide is include in <em>panel-wrapper</em> and each panel is included in <em>panel</em>. And all these panels are included in <em>coda-slider</em>.</p>
<h3>Step 2: CSS</h3>
<p>Lets add some styling to the above file.</p>
<pre class="brush: css">
/*Page Styling */
body {
margin: 0;
padding: 0;
background: url(images/back.jpg);
}

#content {
width: 940px;
margin: 0 auto;
padding-bottom: 50px;
font: 1.5em Keffeesatz, Verdana, Geneva, sans-serif;
}

@font-face { font-family: Keffeesatz; src: url(fonts/YanoneKaffeesatz-Light.otf) format(&quot;opentype&quot;) }
@font-face { font-family: KeffeesatzBold; src: url(fonts/YanoneKaffeesatz-Bold.otf) format(&quot;opentype&quot;) }

h1 {
color: #ddd;
text-align: center;
padding-top: 20px;
font: 2.5em KeffeesatzBold, Verdana, Geneva, sans-serif
}

h2 {
font: 2em KeffeesatzBold, Arial, Helvetica, sans-serif;
color: #999;
text-shadow: 1px 1px 2px #000;
}

/* Coda Bar */
.coda-nav {
height: 30px;
background: #eee;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.23, #ddd),
color-stop(0.62, #eee)
);
background: -moz-linear-gradient(
center bottom,
#ddd 23%,
#eee 62%
);
width: 700px !important;
margin: 0 auto;
border: 5px solid #aaa;
border-bottom: none;
}

.coda-nav ul {
clear: both;
display: block;
margin: auto;
overflow: hidden;
}

.coda-nav ul li {
display: inline;
overflow: hidden;
}

.coda-nav ul li a {
background: url(images/button.jpg) top center no-repeat;
color: #fff;
display: block;
float: left;
margin-right: 1px;
text-decoration: none;
width: 30px;
height: 30px;
text-indent: -999px;
}

.coda-nav ul li a.current {
background: url(images/button-active.jpg) top center no-repeat;
}

.coda-nav ul li a:hover {
background: url(images/button-active.jpg) top center no-repeat;
}

/* Slider Styling */
.coda-slider {
display: block;
width: 700px;
overflow: hidden;
margin: 0 auto;
margin-bottom: 50px;
background: #eee;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.23, #ddd),
color-stop(0.62, #eee)
);
background: -moz-linear-gradient(
center bottom,
#ddd 23%,
#eee 62%
);
border: 5px solid #aaa;
border-top: none;
}

.panel-container {
position: relative;
}

.coda-slider .panel {
float: left;
width: 700px;
}

.panel-wrapper {
margin: 0 20px;
overflow: hidden;
padding: 20px 0;
}
.panel-wrapper img {
float: left;
margin: 0 20px 20px 0;
border: 5px solid #999;
}
.panel-wrapper ul li {
margin: 10px 0;
}
</pre>
<p>We are using some CSS3 properties here. Like Gradient background and external fonts embedding @font-face. You can learn more about these properties here:</p>
<p><span style="color: #000000;">1. <a title="Permanent Link to Speed Up with CSS3 Gradients" rel="bookmark" href="http://css-tricks.com/css3-gradients/">Speed Up with CSS3 Gradients</a></span></p>
<p><span style="color: #000000;">2. <a title="Permanent Link to The Essential Guide to @font-face" rel="bookmark" href="http://sixrevisions.com/css/font-face-guide/">The Essential Guide to @font-face</a></span></p>
<h3>Step 3: jQuery</h3>
<pre class="brush: javascript">
&lt;script type=&quot;text/&amp;lt;span class=&quot;&gt;// &lt;![CDATA[javascript&lt;/span&gt;&quot;&gt;]]&gt;&lt;/script&gt;
$().ready(function() {
$(&#039;.coda-slider&#039;).codaSlider({
autoHeightEaseDuration: 2500,
autoHeightEaseFunction: &quot;easeInOutElastic&quot;,
slideEaseDuration: 2500,
slideEaseFunction: &quot;easeInOutElastic&quot;
});

});
&amp;lt;/script&amp;gt;
</pre>
<p>Add the above script in the &lt;head&gt; tag. This will initiate the slider operation. You can change above value and play with some functions.</p>
<p>I hope you like this tutorial. If you enjoyed it then please put your comments below and don&#8217;t forget to download the source code.</p>
<p style="text-align: center;">Enjoy the real success with <a href="http://www.testking.com/70-640.htm">testking 70-640</a> and <a href="http://www.examsheets.com/exam/70-652.htm">70-652</a> online training programs and latest <a href="http://www.certkiller.com/exam-HP2-Z18.htm">HP2-Z18</a>. Also prepare for next level with quality <a href="http://www.actualtests.com/exam-000-115.htm">000-115 dumps</a> questions and answers of <a href="http://www.pass4sure.com/642-654.html">642-654 exam</a>.</p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/create-simple-navigation-using-css3-styling/' title='Create Simple Navigation using CSS3 Styling'>Create Simple Navigation using CSS3 Styling</a></li>
<li><a href='http://nikhilmisal.com/learning-jsp-part1/' title='Learning JSP (Part 1) &#8211; Introduction'>Learning JSP (Part 1) &#8211; Introduction</a></li>
<li><a href='http://nikhilmisal.com/create-simple-random-color-generator-using-javascript/' title='Create Simple Random Color Generator using JavaScript'>Create Simple Random Color Generator using JavaScript</a></li>
<li><a href='http://nikhilmisal.com/why-these-31-blogs-rock-always/' title='Why these 31 Blogs Rock (Always)?'>Why these 31 Blogs Rock (Always)?</a></li>
<li><a href='http://nikhilmisal.com/how-to-add-social-sharing-icons-in-your-post/' title='How to Add Social Sharing Icons in Your Post'>How to Add Social Sharing Icons in Your Post</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Create Simple Navigation using CSS3 Styling</title>
		<link>http://nikhilmisal.com/create-simple-navigation-using-css3-styling/</link>
		<comments>http://nikhilmisal.com/create-simple-navigation-using-css3-styling/#comments</comments>
		<pubDate>Sat, 15 May 2010 21:23:07 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=2256</guid>
		<description><![CDATA[HTML5 and CSS3 are considered as the future of the web. Now you can make your website the way you want using just HTML and CSS. You can use Shadows to text, box, use of gradients, simple animations, embedding Videos and much more. HTML5 and CSS3 have just changed the way; web developers look at [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 and CSS3 are considered as the future of the web. Now you can make your website the way you want using just HTML and CSS. You can use Shadows to text, box, use of gradients, simple animations, embedding Videos and much more. HTML5 and CSS3 have just changed the way; web developers look at coding the site.</p>
<p>In this tutorial we are going to use some of the basic techniques of the CSS3. We are creating simple navigation menu with linear gradient created in CSS3 style sheet. We are also going to use text-shadow effect to give our text a nicer look.</p>
<p><a title="Download" href="http://demo.nikhilmisal.com/css3-style-nav/css3-style-nav.zip"><img class="alignnone size-full wp-image-2283" style="margin-left: 90px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px;" title="Download Source Code" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/download-sc.jpg" alt="" width="150" height="100" /></a><a title="Preview" href="http://demo.nikhilmisal.com/css3-style-nav/demo.html" target="_blank"><img class="alignnone size-full wp-image-2284" style="margin-top: 10px; margin-bottom: 10px; margin-left: 20px; margin-right: 80px;" title="Preview Demo" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/preview-d.jpg" alt="" width="150" height="100" /></a></p>
<p><span id="more-2256"></span></p>
<p>So let’s start with the HTML first.</p>
<h3>STEP 1:</h3>
<p>Create a new HTML file and add an unordered list containing the menu elements.</p>
<div id="nav">&lt;ul&gt;</p>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<div>Save the file and preview it in browser, it should look like this.</div>
<p><a href="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/demo1.jpg"><img class="aligncenter size-full wp-image-2266" title="Preview" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/demo1.jpg" alt="" width="420" height="150" /></a></p>
<h3>STEP 2:</h3>
<p>&nbsp;</p>
<p class="MsoNormal">Now create new Cascaded Style Sheet (CSS) and save it in the same folder as of HTML file.</p>
<p>&nbsp;</p>
<p class="MsoNormal">Attach the CSS file to above HTML file.</p>
<pre>css" type="text/css"/&gt;
DEMO :: Simple Navigation using CSS3 Styling</pre>
<h3>STEP 3:</h3>
<p><span style="font-family: Calibri, sans-serif; line-height: 17px; font-size: 15px;">Add the following style in the CSS file to give your navigation some clean look.</span></p>
<pre>body{
	background: #666;
    font-family: Helvetica, arial, sans-serif;
}

#nav {
	width: 500px;
	margin: 50px auto;
}

#nav ul {
	float: left;
	list-style-type: none;
	width: 450px;
	height: 44px;

	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;

	background: #e3e3e3;
	background: -moz-linear-gradient(top, #ccc, #999);
	background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#999));

	-moz-box-shadow: 1px 1px 3px #333;
	-webkit-box-shadow: 1px 1px 3px #333;
	box-shadow: 1px 1px 3px #333;

	text-shadow: 0 1px 0 white;
}

#nav ul a{
	display: block;
	padding: 10px 20px 10px 20px;
	list-style-type: none;
	float: left;
	color: #454545;
	font-size: 20px;
	text-decoration: none;
}</pre>
<p class="MsoNormal"><strong>Applying Shadow:</strong></p>
<p><em><span style="color: #0000ff;">-moz-box-shadow</span></em> is used for Mozilla. Syntax is<br />
<em><span style="color: #0000ff;"> -moz-box-shadow: x-offset y-offset blur color;</span></em><br />
<em><span style="color: #0000ff;"> -webkit-box-shadow</span></em> is used for Webkit. Syntax is<br />
<em><span style="color: #0000ff;"> -webkit-box-shadow x-offset y-offset blur color;</span></em><br />
<em><span style="color: #0000ff;"> box-shadow</span></em> is used for Standard Browsers. Syntax is<br />
<em><span style="color: #0000ff;"> box-shadow: x-offset y-offset blur color;</span></em></p>
<p>&nbsp;</p>
<p class="MsoNormal"><strong>Applying Gradient:</strong></p>
<p class="MsoNormal">For Mozilla client gradient is applied using the following syntax</p>
<p class="MsoNormal"><em><span style="color: #0000ff;">background: -moz-linear-gradient(position of start, from color, to color);</span></em></p>
<p class="MsoNormal">and for Webkit it is</p>
<p class="MsoNormal"><em><span style="color: #0000ff;">background: -webkit-gradient(type of gradient, position of start, position of stop, from color, to color);</span></em></p>
<p class="MsoNormal"><strong>Creating Rounded Corners:</strong></p>
<p class="MsoNormal">This is one of the most beautiful addition to CSS3. You can create rounded corners with just a two lines of code.</p>
<p class="MsoNormal">Syntax:</p>
<p class="MsoNormal"><em><span style="color: #0000ff;">-moz-border-radius: radius size in px;</span></em></p>
<p class="MsoNormal"><em><span style="color: #0000ff;">-webkit-border-radius: radius size in px;</span></em></p>
<h3>STEP 4:</h3>
<p><em><span style="font-style: normal;"> Let’s add some hover effect. Add the following code in CSS file to get cool hover effect.</span></em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<pre>#nav ul a:hover{
	display: block;
	padding: 10px 20px 10px 20px;
	list-style-type: none;
	float: left;
	color: #ddd;

	text-shadow: 0 1px 0 black;

	background: #555;
	background: -moz-linear-gradient(top, #444, #555);
	background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#555));
}</pre>
<p>Try with different color combination to get exciting results.<br />
You can download my file below for experimenting.<br />
<a title="Download" href="http://demo.nikhilmisal.com/css3-style-nav/css3-style-nav.zip"><img class="alignnone size-full wp-image-2283" style="margin-left: 90px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px;" title="Download Source Code" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/download-sc.jpg" alt="" width="150" height="100" /></a><a title="Preview" href="http://demo.nikhilmisal.com/css3-style-nav/demo.html" target="_blank"><img class="alignnone size-full wp-image-2284" style="margin-top: 10px; margin-bottom: 10px; margin-left: 20px; margin-right: 80px;" title="Preview Demo" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/05/preview-d.jpg" alt="" width="150" height="100" /></a></p>
<p style="text-align: center;">By using our <a href="http://www.testking.com/Network-plus-certification-training.htm">network+ certification</a> and <a href="http://www.examsheets.com/exam/640-864.htm">640-864</a> e-book facility, you can carry your <a href="http://www.certkiller.com/exam-642-681.htm">642-681</a> prep solutions anywhere along with you. The <a href="http://www.actualtests.com/exam-70-681.htm">70-681 dumps</a> and <a href="http://www.pass4sure.com/E20-322.html">E20-322 exam</a> tutorials are also accessible with free downloadable feature.</p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/15-brilliant-css3-based-articles/' title='15 Brilliant CSS3 Based Articles'>15 Brilliant CSS3 Based Articles</a></li>
<li><a href='http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/' title='How to Create Coda Slider in Minutes'>How to Create Coda Slider in Minutes</a></li>
<li><a href='http://nikhilmisal.com/15-must-read-articles-for-web-developers/' title='15 Must Read Articles for Web Developers'>15 Must Read Articles for Web Developers</a></li>
<li><a href='http://nikhilmisal.com/12-creative-peace-of-web-design/' title='12 Creative Peace of Web Design'>12 Creative Peace of Web Design</a></li>
<li><a href='http://nikhilmisal.com/best-links-of-july/' title='Best Links of July'>Best Links of July</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/create-simple-navigation-using-css3-styling/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>How to Add Social Sharing Icons in Your Post</title>
		<link>http://nikhilmisal.com/how-to-add-social-sharing-icons-in-your-post/</link>
		<comments>http://nikhilmisal.com/how-to-add-social-sharing-icons-in-your-post/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 19:24:27 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Sharing]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=2172</guid>
		<description><![CDATA[Social media has become the part of our lives. We find tons of resources, bookshelves containing information and lots of how to guides &#38; tutorials. For bloggers and marketers it is the most important tool for sharing information with friends, clients, readers. To make this sharing thing easier many Sharing Tools are now available for [...]]]></description>
			<content:encoded><![CDATA[<p>Social media has become the part of our lives. We find tons of resources, bookshelves containing information and lots of how to guides &amp; tutorials. For bloggers and marketers it is the most important tool for sharing information with friends, clients, readers. To make this sharing thing easier many Sharing Tools are now available for the publishers. These are the great tools which decide the quality of the article and also help to share it with world.</p>
<p>So in this tutorial we are going to learn how to add these Social Sharing Icons in your post, to make it easy to share for all.</p>
<p><span id="more-2172"></span></p>
<h3>Step 1: Open single.php from your Themes folder</h3>
<p>Head to your Theme installation folder and open the <strong><em>single.php</em></strong> file for editing in your favorite editor. We want to add Icons only in the single post therefore the code should also be added to this file.</p>
<h3>Step 2: Add the Basic Code</h3>
<p>Now add the following code just below the <em><strong>&lt;?php the_content( &#8221; ); ?&gt;</strong></em> line. This line calls the content of the post.</p>
<pre>&lt;!-- Social Buttons --&gt;
&lt;div&gt;
&lt;/div&gt;&lt;!-- so_buttons end --&gt;
&lt;!-- Social Buttons End Here --&gt;</pre>
<h3>Step 3: Get the Required Code for the Icons</h3>
<p>Now lets add the icons. Decide which Social Sharing Icons you want to add and get the appropriate code from following links.</p>
<p><a href="http://designbump.com/content/evb" target="_blank">DesignBump</a></p>
<p><a href="http://www.designfloat.com/tools-en.php" target="_blank">Design Float</a></p>
<p><a href="http://thewebblend.com/tools/vote" target="_blank">The Web Blend</a></p>
<p><a href="http://about.digg.com/button" target="_blank">Digg</a></p>
<p><a href="http://www.facebook.com/facebook-widgets/share.php" target="_blank">Facebook Share</a></p>
<p><a href="http://www.stumbleupon.com/buttons/" target="_blank">Stumble Upon</a></p>
<p><a href="http://help.tweetmeme.com/2009/04/06/tweetmeme-button/" target="_blank">TweetMeme</a></p>
<p><a href="http://www.reddit.com/buttons/" target="_blank">Reddit</a></p>
<p><a href="http://delicious.com/help/savebuttons" target="_blank">Delicious</a></p>
<p>Faqpal Code:</p>
<pre>
<div id="_mcePaste">&lt;a href="http://www.faqpal.com/submit.php?url=&lt;?php the_permalink(); ?&gt;" target="_blank" title="Add it to FaqPal!"&gt;</div>
<div id="_mcePaste">&lt;img src="http://www.faqpal.com/images/buttons/faqpal48x48.png" alt="Add it to FAQPal!" border="0" height="48" width="48"&gt;&lt;/a&gt;</div>
</pre>
<h3>Step 4: Adding Buttons</h3>
<p>Add the code obtained from above links between <strong><em>&lt;div id=&#8221;so_buttons&#8221;&gt;</em></strong> and <strong><em>&lt;/div&gt;</em></strong>.</p>
<p>Put <strong><em>&lt;em&gt;&lt;/em&gt;</em></strong> tag around each code. Your code should look like this.</p>
<pre>&lt;!-- Social Buttons --&gt;
&lt;div&gt;

&lt;em&gt;&lt;script type="text/javascript"&gt;submit_url = '&lt;?php the_permalink() ?&gt;';&lt;/script&gt;
&lt;script src="http://www.designfloat.com/evb2/button.php"&gt;&lt;/script&gt;&lt;/em&gt;

&lt;em&gt;&lt;script type="text/javascript"&gt;url_site='&lt;?php the_permalink(); ?&gt;';&lt;/script&gt;&lt;script src="http://thewebblend.com/sites/all/modules/drigg_external/js/button.js"type="text/javascript"&gt;&lt;/script&gt;&lt;/em&gt;

&lt;em&gt;&lt;script type="text/javascript"&gt;url_site='&lt;?php the_permalink(); ?&gt;'; &lt;/script&gt;&lt;script src="http://designbump.com/sites/all/modules/drigg_external/js/button.js"type="text/javascript"&gt;&lt;/script&gt;&lt;/em&gt;

&lt;em&gt;&lt;a class="DiggThisButton DiggMedium"&gt;&lt;/a&gt;&lt;/em&gt;
&lt;em&gt;&lt;script type="text/javascript"&gt;
tweetmeme_source = 'Powerusers';
tweetmeme_service = 'bit.ly';
&lt;/script&gt;
&lt;script src="http://tweetmeme.com/i/scripts/button.js"&gt;&lt;/script&gt;&lt;/em&gt;
&lt;em&gt;&lt;script src="http://reddit.com/static/button/button2.js"&gt;&lt;/script&gt;&lt;/em&gt;

&lt;em&gt;&lt;script src="http://www.stumbleupon.com/hostedbadge.php?s=5"&gt;&lt;/script&gt;&lt;/em&gt;

&lt;/div&gt;&lt;!-- so_buttons end --&gt;
&lt;!-- Social Buttons End Here --&gt;</pre>
<h3>Step 5: Remember</h3>
<p>For Digg Button you have to add following code either in <strong><em>&lt;head&gt;</em></strong> or in <strong><em>&lt;body&gt;</em></strong></p>
<pre>&lt;script type="text/javascript"&gt;
(function() {
var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];
s.type = 'text/javascript';
s.src = 'http://widgets.digg.com/buttons.js';
s1.parentNode.insertBefore(s, s1);
})();
&lt;/script&gt;</pre>
<p>In TweetMeme, do not forget to change the username in <strong><em>tweetmeme_source = &#8216;Powerusers&#8217;;</em></strong> field.</p>
<p>We are using <strong><em>&lt;em&gt;</em></strong> tag rather than <strong><em>&lt;span&gt;</em></strong> in HTML code because many of the above code itself have <strong><em>&lt;span&gt;</em></strong> tag inbuilt. So when you apply style to our <strong><em>&lt;span&gt;</em></strong> tag it gets applied to all the inbuilt <strong><em>&lt;span&gt;</em></strong> tags.</p>
<h3>Step 6: Let’s add some Style</h3>
<p>Open <strong><em>style.css</em></strong> file from your theme installation folder and add the following code for very simple and basic look.</p>
<pre>/* Social Buttons
/* --------------- */

#so_buttons {
     width: 530px;
     height: 85px;
     background: #ddd;
}

     #so_buttons em{
          margin: 5px 10px 5px 10px;
          float: left;
     }</pre>
<p>Do not forget that you can always change the feel and look by editing CSS file. And here is our final outcome.</p>
<p><img class="aligncenter size-full wp-image-2187" title="Social Sharing Icons" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/04/social-icons.jpg" alt="" width="530" height="221" /></p>
<p>For your inspiration check out the following collection of Sharing Block.</p>
<p>1. <a href="http://www.blog.spoongraphics.co.uk" target="_blank">Blog.Spoongraphics</a></p>
<p><img class="aligncenter size-full wp-image-2188" title="Blog.Spoongraphics" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/04/spoongraphics.jpg" alt="" width="530" height="168" /></p>
<p>2. <a href="http://designinformer.com/" target="_blank">Design Informer</a></p>
<p><img class="aligncenter size-full wp-image-2189" title="Design Informer" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/04/DI.jpg" alt="" width="530" height="148" /></p>
<p>3. <a href="http://buildinternet.com/" target="_blank">Build Internet</a></p>
<p><img class="aligncenter size-full wp-image-2192" title="Build Internet" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/04/build-internet1.jpg" alt="" width="530" height="116" /></p>
<p>4. <a href="http://www.productivedreams.com/" target="_blank">Productive Dreams</a></p>
<p><img class="aligncenter size-full wp-image-2191" title="Productive Dreams" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/04/PD.jpg" alt="" width="530" height="159" /></p>
<p>5. <a href="http://tutorialzine.com/" target="_blank">Tutorialzine</a></p>
<p><img class="aligncenter size-full wp-image-2199" title="Tutorialzine" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/04/tutorialzine.jpg" alt="" width="530" height="179" /><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/how-to-create-beautiful-minimalist-wordpress-theme-in-photoshop/' title='How to Create Beautiful Minimalist WordPress Theme in Photoshop'>How to Create Beautiful Minimalist WordPress Theme in Photoshop</a></li>
<li><a href='http://nikhilmisal.com/9-tutorials-to-get-started-with-custom-post-types-in-wordpress/' title='9 Tutorials to Get Started with Custom Post Types in WordPress'>9 Tutorials to Get Started with Custom Post Types in WordPress</a></li>
<li><a href='http://nikhilmisal.com/learning-jsp-part1/' title='Learning JSP (Part 1) &#8211; Introduction'>Learning JSP (Part 1) &#8211; Introduction</a></li>
<li><a href='http://nikhilmisal.com/create-simple-random-color-generator-using-javascript/' title='Create Simple Random Color Generator using JavaScript'>Create Simple Random Color Generator using JavaScript</a></li>
<li><a href='http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/' title='How to Create Coda Slider in Minutes'>How to Create Coda Slider in Minutes</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/how-to-add-social-sharing-icons-in-your-post/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>15 Brilliant CSS3 Based Articles</title>
		<link>http://nikhilmisal.com/15-brilliant-css3-based-articles/</link>
		<comments>http://nikhilmisal.com/15-brilliant-css3-based-articles/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 19:03:27 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[web deisgn]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=2037</guid>
		<description><![CDATA[Hello everyone, lately I have been busy with my college stuff. Therefore was unable to post new articles. Actually I am having exam from 23rd of this month. I will try to post an article including weekly favorites in between. Now let’s concentrate on this post. CSS3 is becoming more and more popular these days [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, lately I have been busy with my college stuff. Therefore was unable to post new articles. Actually I am having exam from 23<sup>rd</sup> of this month. I will try to post an article including weekly favorites in between.</p>
<p>Now let’s concentrate on this post. CSS3 is becoming more and more popular these days and many developers are using it regardless (this is good) of compatibility issues with some browsers. Today probably everyone knows about CSS3 and its features. But you can extend its use further with following awesome tutorials or resources. So go ahead and try them!</p>
<p><span id="more-2037"></span></p>
<h3><strong>1. <a href="http://tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/" target="_blank">Halftone Navigation Menu With jQuery &amp; CSS3</a></strong></h3>
<p style="text-align: center;"><strong><a href="http://tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/" target="_blank"><img class="aligncenter size-full wp-image-2041" title="Halftone Navigation Menu With jQuery &amp; CSS3" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/Halftone-Navigation-Menu-With-jQuery-CSS3.jpg" alt="" width="530" height="290" /></a><br />
</strong></p>
<h3>2. <a title="Editable CSS3 Image Gallery" href="http://css-tricks.com/video-screencasts/74-editable-css3-image-gallery/" target="_blank">Editable CSS3 Image Gallery</a></h3>
<p style="text-align: center;"><a href="http://css-tricks.com/video-screencasts/74-editable-css3-image-gallery/" target="_blank"><img class="aligncenter size-full wp-image-2042" title="Editable CSS3 Image Gallery" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/Editable-CSS3-Image-Gallery.jpg" alt="" width="530" height="239" /></a></p>
<h3>3. <a title="CSS3 Techniques You Should Know" href="http://sixrevisions.com/css/css3-techniques-you-should-know/" target="_blank">CSS3 Techniques You Should Know</a></h3>
<p style="text-align: center;"><a href="http://sixrevisions.com/css/css3-techniques-you-should-know/" target="_blank"><img class="aligncenter size-full wp-image-2043" title="CSS3 Techniques You Should Know" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/CSS3-Techniques-You-Should-Know.jpg" alt="" width="530" height="193" /></a></p>
<h3>4. <a href="http://tutorialzine.com/2010/02/html5-css3-website-template/" target="_blank">Coding a CSS3 &amp; HTML5 One-Page Website Template</a></h3>
<p style="text-align: center;"><a href="http://tutorialzine.com/2010/02/html5-css3-website-template/" target="_blank"><img class="aligncenter size-full wp-image-2044" title="Coding a CSS3 &amp; HTML5 One-Page Website Template" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/Coding-a-CSS3-HTML5-One-Page-Website-Template.jpg" alt="" width="530" height="288" /></a></p>
<h3>5. <a href="http://blog.creativityden.com/the-hidden-power-of-border-radius-2/" target="_blank">The Hidden Power of border-radius</a></h3>
<p><a href="http://blog.creativityden.com/the-hidden-power-of-border-radius-2/" target="_blank"><img class="aligncenter size-full wp-image-2047" title="The Hidden Power of border-radius" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/The-hidden-power-of-border-radius.jpg" alt="" width="530" height="289" /></a></p>
<h3>6. <a href="http://tutorialzine.com/2009/11/hovering-gallery-css3-jquery/" target="_blank">An Awesome CSS3 Lightbox Gallery With jQuery</a></h3>
<p><a href="http://tutorialzine.com/2009/11/hovering-gallery-css3-jquery/" target="_blank"><img class="aligncenter size-full wp-image-2048" title="An Awesome CSS3 Lightbox Gallery With jQuery" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/An-Awesome-CSS3-Lightbox-Gallery-With-jQuery.jpg" alt="" width="530" height="292" /></a></p>
<h3>7. <a href="http://www.smashingmagazine.com/2010/01/25/the-new-hotness-using-css3-visual-effects/" target="_blank">The New Hotness: Using CSS3 Visual Effects</a></h3>
<p><a href="http://www.smashingmagazine.com/2010/01/25/the-new-hotness-using-css3-visual-effects/" target="_blank"><img class="aligncenter size-full wp-image-2049" title="The New Hotness: Using CSS3 Visual Effects" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/The-New-Hotness-Using-CSS3-Visual-Effects.jpg" alt="" width="530" height="247" /></a></p>
<h3>8. <a href="http://net.tutsplus.com/tutorials/html-css-techniques/design-a-prettier-web-form-with-css-3/" target="_blank">Design a Prettier Web Form with CSS 3 </a></h3>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/design-a-prettier-web-form-with-css-3/" target="_blank"><img class="aligncenter size-full wp-image-2050" title="Design a Prettier Web Form with CSS 3 " src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/Design-a-Prettier-Web-Form-with-CSS-3.jpg" alt="" width="469" height="411" /></a></p>
<h3>9. <a title="5 CSS3 Design Enhancements That You Can Use Today" href="http://www.webdesignerdepot.com/2009/08/5-css3-design-enhancements-that-you-can-use-today/" target="_blank">5 CSS3 Design Enhancements That You Can Use Today</a></h3>
<p><a href="http://www.webdesignerdepot.com/2009/08/5-css3-design-enhancements-that-you-can-use-today/" target="_blank"><img class="aligncenter size-full wp-image-2051" title="5 CSS3 Design Enhancements That You Can Use Today" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/5-CSS3-Design-Enhancements-That-You-Can-Use-Today.jpg" alt="" width="430" height="430" /></a></p>
<h3>10. <a href="http://www.sohtanaka.com/web-design/greyscale-hover-effect-w-css-jquery/" target="_blank">Greyscale Hover Effect w/ CSS &amp; jQuery</a></h3>
<p><a href="http://www.sohtanaka.com/web-design/greyscale-hover-effect-w-css-jquery/" target="_blank"><img class="aligncenter size-full wp-image-2052" title="Greyscale Hover Effect w/ CSS &amp; jQuery" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/Greyscale-Hover-Effect-CSS-jQuery.jpg" alt="" width="530" height="184" /></a></p>
<h3>11. <a href="http://www.smashingmagazine.com/2009/12/16/stronger-better-faster-design-with-css3/" target="_blank">Stronger, Better, Faster Design with CSS3</a></h3>
<p><a href="http://www.smashingmagazine.com/2009/12/16/stronger-better-faster-design-with-css3/" target="_blank"><img class="aligncenter size-full wp-image-2053" title="Stronger, Better, Faster Design with CSS3" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/Stronger-Better-Faster-Design-with-CSS3.jpg" alt="" width="530" height="143" /></a></p>
<h3>12. <a title="50+ Fresh CSS Techniques, Tutorials and Resources" href="http://www.noupe.com/css/50-fresh-css-techniques-tutorials-and-resources.html" target="_blank">50+ Fresh CSS Techniques, Tutorials and Resources</a></h3>
<p><a href="http://www.noupe.com/css/50-fresh-css-techniques-tutorials-and-resources.html" target="_blank"><img class="aligncenter size-full wp-image-2054" title="50+ Fresh CSS Techniques, Tutorials and Resources" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/50+-Fresh-CSS-Techniques-Tutorials-and-Resources.jpg" alt="" width="480" height="200" /></a></p>
<h3>13. <a href="http://www.smashingmagazine.com/2010/03/01/css-and-the-future-of-text/" target="_blank">The Future Of CSS Typography</a></h3>
<p><a href="http://www.smashingmagazine.com/2010/03/01/css-and-the-future-of-text/" target="_blank"><img class="aligncenter size-full wp-image-2055" title="The Future Of CSS Typography" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/The-Future-Of-CSS-Typography.jpg" alt="" width="530" height="177" /></a></p>
<h3>14. <a href="http://css-tricks.com/css3-tabs/" target="_blank">CSS3-Only Tabbed Area</a></h3>
<p><a href="http://css-tricks.com/css3-tabs/" target="_blank"><img class="aligncenter size-full wp-image-2056" title="CSS3-Only Tabbed Area" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/CSS3-Only-Tabbed-Area.jpg" alt="" width="497" height="141" /></a></p>
<h3>15. <a href="http://perishablepress.com/press/2010/01/11/css3-progressive-enhancement-smart-design/" target="_blank">CSS3 + Progressive Enhancement = Smart Design</a></h3>
<p><a href="http://perishablepress.com/press/2010/01/11/css3-progressive-enhancement-smart-design/" target="_blank"><img class="aligncenter size-full wp-image-2057" title="CSS3 + Progressive Enhancement = Smart Design" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/03/CSS3-+-Progressive-Enhancement-Smart-Design.jpg" alt="" width="530" height="192" /></a><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/create-simple-navigation-using-css3-styling/' title='Create Simple Navigation using CSS3 Styling'>Create Simple Navigation using CSS3 Styling</a></li>
<li><a href='http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/' title='How to Create Coda Slider in Minutes'>How to Create Coda Slider in Minutes</a></li>
<li><a href='http://nikhilmisal.com/15-super-css-galleries-for-your-inspiration/' title='15+ Super CSS Galleries for your Inspiration'>15+ Super CSS Galleries for your Inspiration</a></li>
<li><a href='http://nikhilmisal.com/25-tips-and-tutorials-of-html-css/' title='25+ Tips and Tutorials of HTML &amp; CSS'>25+ Tips and Tutorials of HTML &#038; CSS</a></li>
<li><a href='http://nikhilmisal.com/best-links-of-july/' title='Best Links of July'>Best Links of July</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/15-brilliant-css3-based-articles/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to Create Beautiful Minimalist WordPress Theme in Photoshop</title>
		<link>http://nikhilmisal.com/how-to-create-beautiful-minimalist-wordpress-theme-in-photoshop/</link>
		<comments>http://nikhilmisal.com/how-to-create-beautiful-minimalist-wordpress-theme-in-photoshop/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 11:40:08 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Minimalist]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=1991</guid>
		<description><![CDATA[Today I am going to show you how to easily create a beautiful minimalist WordPress theme in Photoshop. Actually I was working on the re-design of this blog and got an idea to write a tutorial for minimalist WordPress theme. I am using  a noisy texture here a with some letterpress effect which is being [...]]]></description>
			<content:encoded><![CDATA[<p>Today I am going to show you how to easily create a beautiful minimalist WordPress theme in Photoshop. Actually I was working on the re-design of this blog and got an idea to write a tutorial for minimalist WordPress theme.</p>
<p>I am using  a noisy texture here a with some <a href="http://nikhilmisal.com/2009/12/07/letterpress-effects-in-web-design-trends-and-tutorials/">letterpress effect</a> which is being used widely nowadays. Following color scheme is used in this tutorial.</p>
<p><img class="aligncenter size-full wp-image-2029" title="Color Scheme" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/color-scheme1.jpg" alt="" width="530" height="88" /></p>
<p>One of my favorite way to choose a color scheme is <a href="http://kuler.adobe.com/" target="_blank">Adobe Kuler</a>. Many great color palletes are available there to choose from. If you want try this tutorial with different colors; go there and choose your favorite.</p>
<p><span id="more-1991"></span></p>
<h3>1. Setting up Working Area</h3>
<p>Create a new document (<strong>File&gt;New</strong>) with following specifications.</p>
<p><img class="aligncenter size-full wp-image-1993" title="1" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/1.jpg" alt="" width="530" height="327" /></p>
<p>Now lets add margins to our document. Go to <strong>View&gt;New</strong> Guide and two vertical Guides at 40px and 980px.</p>
<p><img class="aligncenter size-full wp-image-1994" title="2" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/2.jpg" alt="" width="229" height="153" /></p>
<p>It would look like this.</p>
<p><img class="aligncenter size-full wp-image-1995" title="3" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/3.jpg" alt="" width="418" height="566" /></p>
<h3>2. Creating Background Texture</h3>
<p>Create a new layer above background layer and name it as bg_texture. Change the foreground color to #<strong>bfbcb3</strong> and press (<strong>Alt+Backspace</strong>).</p>
<p>Now go to <strong>Filter&gt;Noise&gt;Add Noise</strong>. Change the Distribution type to Uniform, Amount to 3% and select Monochromatic and apply the filter.</p>
<p><img class="aligncenter size-full wp-image-1996" title="4" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/4.jpg" alt="" width="331" height="432" /></p>
<p>Your document would look like this.</p>
<p><img class="aligncenter size-full wp-image-1997" title="5" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/5.jpg" alt="" width="418" height="564" /></p>
<h3>3. Let’s Start with the Header</h3>
<p>Create two new Horizontal Guide at 300px and 350px &amp; Vertical Guides at 650px and 680px.</p>
<p><img class="aligncenter size-full wp-image-1998" title="6" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/6.jpg" alt="" width="419" height="568" /></p>
<p>Now write your blog name at the center of header area. I choose</p>
<p>Font: Brush Script Std.</p>
<p>Font Size: 150px</p>
<p>Weight: Medium</p>
<p>Color: #f01685</p>
<p><img class="aligncenter size-full wp-image-1999" title="7" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/7.jpg" alt="" width="530" height="182" /></p>
<p>Now Double Click on the <em>‘blog title’</em> layer and add the following style.</p>
<p><img class="aligncenter size-full wp-image-2000" title="8" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/8.jpg" alt="" width="530" height="394" /></p>
<p>Your header will look somewhat like this.</p>
<p><img class="aligncenter size-full wp-image-2001" title="9" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/9.jpg" alt="" width="530" height="166" /></p>
<p>Now add the social icons with color #<strong>9fa69c</strong> as shown below. Vector icons are included in the source file.</p>
<p><img class="aligncenter size-full wp-image-2002" title="10" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/10.jpg" alt="" width="530" height="198" /></p>
<p>Add the following layer style to each of these icons.</p>
<p><img class="aligncenter size-full wp-image-2003" title="11" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/11.jpg" alt="" width="530" height="354" /></p>
<p>Not it’s time to finish the header.  Select the <strong>Single Row Marquee Tool</strong> from the List Marquee Tools. Create new layer and name it as <strong>header_sep</strong> and add the horizontal selection are as shown below.</p>
<p><img class="aligncenter size-full wp-image-2004" title="12" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/12.jpg" alt="" width="495" height="287" /></p>
<p>Fill this area with #<strong>e7e3da</strong>, move the section area downward and fill it with #<strong>474143</strong>. Select the <strong>Eraser Tool</strong> (E) with 300px size and smoothly erase the separator at both ends to look like this.</p>
<p><img class="aligncenter size-full wp-image-2005" title="12a" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/12a.jpg" alt="" width="530" height="87" /></p>
<h3>4. Create a Sidebar</h3>
<p>Write the title of sidebar ‘Pages’ and then pages ‘About, Guest Post, Contact’. Here I choose</p>
<p><strong>For title</strong></p>
<p>Font: Verdana</p>
<p>Font Size: 25px</p>
<p>Color: #f01685</p>
<p>Align: Left</p>
<p><strong>For content</strong></p>
<p>Font: Verdana</p>
<p>Font Size: 20px</p>
<p>Color: #9c266a</p>
<p>Align: Left</p>
<p><img class="aligncenter size-full wp-image-2006" title="14" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/14.jpg" alt="" width="530" height="231" /></p>
<p>Now add following layer style to sidebar title ‘Pages’</p>
<p><img class="aligncenter size-full wp-image-2007" title="15" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/15.jpg" alt="" width="530" height="396" /></p>
<p>Copy <strong>header_sep</strong> layer and paste below the sidebar title ‘Pages’</p>
<p><img class="aligncenter size-full wp-image-2008" title="16" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/16.jpg" alt="" width="530" height="254" /></p>
<p>Now cut the separator on the left side to get following result.</p>
<p><img class="aligncenter size-full wp-image-2009" title="17" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/17.jpg" alt="" width="530" height="270" /></p>
<h3>5. Add Contents to the Design</h3>
<p>Add some content to the design as shown below.</p>
<p><strong>Title of Post</strong></p>
<p>Font: Verdana</p>
<p>Font Size: 35px</p>
<p>Color: #474143</p>
<p>Align: Right</p>
<p>Add the following layer style to Post title.</p>
<p><img class="aligncenter size-full wp-image-2010" title="18" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/18.jpg" alt="" width="530" height="396" /></p>
<p>Add the <strong>header_sep</strong> line at the end of post and cut it on the right side as shown below.</p>
<p><img class="aligncenter size-full wp-image-2011" title="19" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/19.jpg" alt="" width="530" height="340" /></p>
<p>Repeat this with another post too.</p>
<h3>6. Finish with the Footer</h3>
<p>Add some copyright stuff and basic links like About, Contact in the footer as shown below.</p>
<p>Font: Verdana</p>
<p>Font-Size: 15px</p>
<p>Color for Pages: #474143</p>
<p>Color for copyright: #bfbcb3</p>
<p><img class="aligncenter size-full wp-image-2012" title="20" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/20.jpg" alt="" width="530" height="122" /></p>
<p>Now add following layer style to copyright text.</p>
<p><img class="aligncenter size-full wp-image-2013" title="21" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/21.jpg" alt="" width="530" height="395" /></p>
<p>That’s it! You have created a Beautiful WordPress Theme in Photoshop. Here is the Final result.</p>
<p><img class="aligncenter size-full wp-image-2016" title="Final" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/final.jpg" alt="" width="530" height="727" /></p>
<p>You can also download the source file here.</p>
<p><a title="Download Now" href="http://dl.dropbox.com/u/1871129/WPtheme-tut.zip"><img class="aligncenter size-full wp-image-2027" title="Download Now" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/02/download_btn.png" alt="" width="150" height="50" /></a>I would like to know your comments and suggestion on this tutorial.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/how-to-add-social-sharing-icons-in-your-post/' title='How to Add Social Sharing Icons in Your Post'>How to Add Social Sharing Icons in Your Post</a></li>
<li><a href='http://nikhilmisal.com/best-links-of-july/' title='Best Links of July'>Best Links of July</a></li>
<li><a href='http://nikhilmisal.com/20-ultimate-photoshop-tutorials/' title='20 Ultimate Photoshop Tutorials'>20 Ultimate Photoshop Tutorials</a></li>
<li><a href='http://nikhilmisal.com/10-ultimate-photoshop-tutorials/' title='10 Ultimate Photoshop Tutorials'>10 Ultimate Photoshop Tutorials</a></li>
<li><a href='http://nikhilmisal.com/9-tutorials-to-get-started-with-custom-post-types-in-wordpress/' title='9 Tutorials to Get Started with Custom Post Types in WordPress'>9 Tutorials to Get Started with Custom Post Types in WordPress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/how-to-create-beautiful-minimalist-wordpress-theme-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Amazing Illustrator Tutorials #3</title>
		<link>http://nikhilmisal.com/amazing-illustrator-tutorials-3/</link>
		<comments>http://nikhilmisal.com/amazing-illustrator-tutorials-3/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 17:57:32 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=1824</guid>
		<description><![CDATA[Photoshop® and Illustrator® are the main platforms for the designers and artists. To master these, you have to learn new tricks and find new ways to get the best out of it. Tutorials are the way of learning new tips and tricks. Many tutorials are available on the internet today but the challenge is to [...]]]></description>
			<content:encoded><![CDATA[<p>Photoshop® and Illustrator® are the main platforms for the designers and artists. To master these, you have to learn new tricks and find new ways to get the best out of it. Tutorials are the way of learning new tips and tricks. Many tutorials are available on the internet today but the challenge is to find best. And hence I bring some excellent tutorials which will help you to learn Illustrator®.</p>
<p>This is the third article in the series of Illustrator® tutorials. You can find more photoshop and illustrator articles in the <a href="http://nikhilmisal.com/category/tutorials/" target="_self">Tutorials</a> section.</p>
<p><span id="more-1824"></span></p>
<h3>1. <a href="http://vector.tutsplus.com/tutorials/illustration/reflections-done-right-creating-a-money-roll-icon/">Reflections Done Right – Creating a Money Roll Icon</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/illustration/reflections-done-right-creating-a-money-roll-icon/"><img class="aligncenter size-full wp-image-1826" title="Reflections Done Right – Creating a Money Roll Icon" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/1.jpg" alt="" width="479" height="606" /></a></p>
<h3>2. <a title="Permanent Link to Vectors Imitate Life with Gradient Mesh" href="http://www.gomediazine.com/tutorials/vectors-imitate-life-with-gradient-mesh/">Vectors Imitate Life with Gradient Mesh</a></h3>
<p><a href="http://www.gomediazine.com/tutorials/vectors-imitate-life-with-gradient-mesh/"><img class="aligncenter size-full wp-image-1827" title="Vectors Imitate Life with Gradient Mesh" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/2.jpg" alt="" width="520" height="693" /></a></p>
<h3>3. <a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-vector-folk-buildings-using-a-digital-tablet-and-tracing-techniques/">How to Create Vector Folk Buildings Using a Digital Tablet and Tracing Techniques</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-vector-folk-buildings-using-a-digital-tablet-and-tracing-techniques/"><img class="aligncenter size-full wp-image-1828" title="How to Create Vector Folk Buildings Using a Digital Tablet and Tracing Techniques" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/3.jpg" alt="" width="530" height="804" /></a></p>
<h3>4. <a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-cute-vector-bear-t-shirt-design">How to Create a Cute Vector Bear T-Shirt Design</a></h3>
<p><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-cute-vector-bear-t-shirt-design"><img class="aligncenter size-full wp-image-1829" title="How to Create a Cute Vector Bear T-Shirt Design" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/4.jpg" alt="" width="450" height="439" /></a></p>
<h3>5. <a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-curious-owl-in-illustrator-cs4/">How to Create a Curious Owl in Illustrator CS4</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-curious-owl-in-illustrator-cs4/"><img class="aligncenter size-full wp-image-1830" title="How to Create a Curious Owl in Illustrator CS4" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/5.jpg" alt="" width="530" height="530" /></a></p>
<h3>6. <a title="Permanent Link: Create An Editable Metal Type Treatment" href="http://vectips.com/tutorials/create-an-editable-metal-type-treatment/">Create An Editable Metal Type Treatment</a></h3>
<p><a href="http://vectips.com/tutorials/create-an-editable-metal-type-treatment/"><img class="aligncenter size-full wp-image-1831" title="Create An Editable Metal Type Treatment" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/6.jpg" alt="" width="530" height="285" /></a></p>
<h3>7. <a href="http://designinformer.com/create-a-cute-little-tiger-in-illustrator/">Create a Cute Little Tiger in Illustrator</a></h3>
<p><a href="http://designinformer.com/create-a-cute-little-tiger-in-illustrator/"><img class="aligncenter size-full wp-image-1832" title="Create a Cute Little Tiger in Illustrator" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/7.jpg" alt="" width="530" height="707" /></a></p>
<h3>8. <a href="http://vector.tutsplus.com/tutorials/tools-tips/a-comprehensive-guide-to-the-pathfinder-panel/">A Comprehensive Guide to the Pathfinder Panel</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/tools-tips/a-comprehensive-guide-to-the-pathfinder-panel/"><img class="aligncenter size-full wp-image-1833" title="A Comprehensive Guide to the Pathfinder Panel" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/8.jpg" alt="" width="530" height="331" /></a></p>
<h3>9. <a href="http://vector.tutsplus.com/tutorials/icon-design/use-inkscape-to-create-a-grunge-rss-box-icon/">Use Inkscape to Create a Grunge RSS Box Icon</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/icon-design/use-inkscape-to-create-a-grunge-rss-box-icon/"><img class="aligncenter size-full wp-image-1834" title="Use Inkscape to Create a Grunge RSS Box Icon" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/9.jpg" alt="" width="530" height="530" /></a></p>
<h3>10. <a title="Permanent link to Create Perspective Using Simple 2D Art with Illustrator CS4" href="http://www.layersmagazine.com/create-perspective-using-simple-2d-art-with-illustrator-cs4.html">Create Perspective Using Simple 2D Art with Illustrator CS4</a></h3>
<p><a href="http://www.layersmagazine.com/create-perspective-using-simple-2d-art-with-illustrator-cs4.html"><img class="aligncenter size-full wp-image-1835" title="Create Perspective Using Simple 2D Art with Illustrator CS4" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/10.jpg" alt="" width="500" height="266" /></a></p>
<h3>11. <a href="http://vector.tutsplus.com/tutorials/text-effects/create-colorful-layered-paper-type-in-illustrator/">Create Colorful, Layered Paper Type in Illustrator</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/text-effects/create-colorful-layered-paper-type-in-illustrator/"><img class="aligncenter size-full wp-image-1836" title="Create Colorful, Layered Paper Type in Illustrator" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/11.jpg" alt="" width="530" height="318" /></a></p>
<h3><strong>12. <a title="Chinese Bamboo" href="http://www.ndesign-studio.com/tutorials/chinese-bamboo">Chinese Bamboo</a></strong></h3>
<p><strong><a href="http://www.ndesign-studio.com/tutorials/chinese-bamboo"><img class="aligncenter size-full wp-image-1837" title="Chinese Bamboo" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/12.jpg" alt="" width="314" height="291" /></a><br />
</strong></p>
<h3>13. <a href="http://www.dezignmusings.com/2009/06/create-colorful-text-effect-illustrator.html">Create a Stylish Colorful Text Effect in Illustrator</a></h3>
<p><a href="http://www.dezignmusings.com/2009/06/create-colorful-text-effect-illustrator.html"><img class="aligncenter size-full wp-image-1838" title="Create a Stylish Colorful Text Effect in Illustrator " src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/13.jpg" alt="" width="500" height="282" /></a></p>
<h3>14. <a title="Permanent Link: Create A Wood Grain Texture" href="http://vectips.com/tutorials/create-a-wood-grain-texture/">Create A Wood Grain Texture</a></h3>
<p><a href="http://vectips.com/tutorials/create-a-wood-grain-texture/"><img class="aligncenter size-full wp-image-1839" title="Create A Wood Grain Texture" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/14.jpg" alt="" width="530" height="318" /></a></p>
<h3>15. <a href="http://abduzeedo.com/illustrator-quick-tips-1-complex-symbols-pathfinder">Illustrator Quick Tips #1 &#8211; Complex Symbols with Pathfinder</a></h3>
<p><a href="http://abduzeedo.com/illustrator-quick-tips-1-complex-symbols-pathfinder"><img class="aligncenter size-full wp-image-1840" title="Illustrator Quick Tips #1 - Complex Symbols with Pathfinder" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/15.jpg" alt="" width="530" height="202" /></a></p>
<h3>16. <a href="http://zzanthia.deviantart.com/art/Woman-and-Cats-How-To-Advanced-67624997">Women and Cats’ How-To Advanced Tutorial</a></h3>
<p><a href="http://zzanthia.deviantart.com/art/Woman-and-Cats-How-To-Advanced-67624997"><img class="aligncenter size-full wp-image-1841" title="Women and Cats’ How-To Advanced Tutorial" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/16.jpg" alt="" width="530" height="475" /></a></p>
<h3>17. <a title="Permanent Link to 3D Typography in Photoshop" href="http://www.gomediazine.com/tutorials/3d-typography-photoshop/">3D Typography in Photoshop</a></h3>
<p><a href="http://www.gomediazine.com/tutorials/3d-typography-photoshop/"><img class="aligncenter size-full wp-image-1842" title="3D Typography in Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/17.jpg" alt="" width="530" height="409" /></a></p>
<h3>18. <a title="Permanent Link to Create a 3D Vector Labyrinth" href="http://www.gomediazine.com/tutorials/illustrator/create-3d-vector-labyrinth-maze/">Create a 3D Vector Labyrinth</a></h3>
<p><a href="http://www.gomediazine.com/tutorials/illustrator/create-3d-vector-labyrinth-maze/"><img class="aligncenter size-full wp-image-1843" title="Create a 3D Vector Labyrinth" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/18.jpg" alt="" width="530" height="393" /></a></p>
<h3>19. <a href="http://vector.tutsplus.com/tutorials/tools-tips/the-hidden-power-of-the-average-command-creating-swirly-type/">The Hidden Power of the Average Command: Creating Swirly Type</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/tools-tips/the-hidden-power-of-the-average-command-creating-swirly-type/"><img class="aligncenter size-full wp-image-1844" title="The Hidden Power of the Average Command: Creating Swirly Type" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/19.jpg" alt="" width="530" height="331" /></a></p>
<h3>20. <a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-classic-vector-painting-with-watercolor-washes-and-line-art/">How to Create a Classic Vector Painting with Watercolor Washes and Line Art</a></h3>
<p><a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-classic-vector-painting-with-watercolor-washes-and-line-art/"><img class="aligncenter size-full wp-image-1845" title="How to Create a Classic Vector Painting with Watercolor Washes and Line Art" src="http://icdn.nikhilmisal.com/wp-content/uploads/2010/01/20.jpg" alt="" width="530" height="399" /></a>If you like this collection then I would appreciate your comments.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/learning-jsp-part1/' title='Learning JSP (Part 1) &#8211; Introduction'>Learning JSP (Part 1) &#8211; Introduction</a></li>
<li><a href='http://nikhilmisal.com/create-simple-random-color-generator-using-javascript/' title='Create Simple Random Color Generator using JavaScript'>Create Simple Random Color Generator using JavaScript</a></li>
<li><a href='http://nikhilmisal.com/how-to-create-coda-slider-in-minutes/' title='How to Create Coda Slider in Minutes'>How to Create Coda Slider in Minutes</a></li>
<li><a href='http://nikhilmisal.com/why-these-31-blogs-rock-always/' title='Why these 31 Blogs Rock (Always)?'>Why these 31 Blogs Rock (Always)?</a></li>
<li><a href='http://nikhilmisal.com/create-simple-navigation-using-css3-styling/' title='Create Simple Navigation using CSS3 Styling'>Create Simple Navigation using CSS3 Styling</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/amazing-illustrator-tutorials-3/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Ultimate Photoshop Tutorials #3</title>
		<link>http://nikhilmisal.com/ultimate-photoshop-tutorials-3/</link>
		<comments>http://nikhilmisal.com/ultimate-photoshop-tutorials-3/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 16:16:38 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[ultimate]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=1580</guid>
		<description><![CDATA[Hello everyone! From the couple of months I haven't posted anything about photoshop tutorials. But today we are back with Ultimate Photoshop Tutorials Series. Many tutorials are posted everyday on many blogs. But it is really hard to find the good ones. So I have listed some great tutorials posted in last several months. I hope that it will help you a little bit and save your time.]]></description>
			<content:encoded><![CDATA[<p>Hello everyone! From the couple of months I haven&#8217;t posted anything about photoshop tutorials. But today we are back with Ultimate Photoshop Tutorials Series. Many tutorials are posted everyday on many blogs. But it is really hard to find the good ones. So I have listed some great tutorials posted in last several months. I hope that it will help you a little bit and save your time.</p>
<p><em>Previous posts in this series:</em></p>
<p><a href="http://nikhilmisal.com/2009/07/12/20-ultimate-photoshop-tutorials/">20 Ultimate Photoshop Tutorials</a></p>
<p><a href="http://nikhilmisal.com/2009/04/15/10-ultimate-photoshop-tutorials/">10 Ultimate Photoshop Tutorials</a></p>
<p><span id="more-1580"></span>You will find more such posts in the coming days on <em>Amazing Illustrator Tutorials</em> and <em>Web Design Tutorials</em>, so I suggest you to <a href="http://feedburner.google.com/fb/a/mailverify?uri=Powerusers" target="_blank">subscribe to email updates</a> and don&#8217;t miss this awesome stuff.</p>
<h3><strong>1. </strong><a href="http://psd.tutsplus.com/tutorials/text-effects-tutorials/how-to-design-a-print-ready-flier-with-photoshop-and-illustrator/"><strong>How to Design a Print-Ready Flier with Photoshop and Illustrator</strong></a></h3>
<p><strong><a href="http://psd.tutsplus.com/tutorials/text-effects-tutorials/how-to-design-a-print-ready-flier-with-photoshop-and-illustrator/"><img class="aligncenter size-full wp-image-1584" title="How to Design a Print Ready Flier with Photoshop and Illustrator" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/1.-How-to-Design-a-Print-Ready-Flier-with-Photoshop-and-Illustrator.jpg" alt="How to Design a Print Ready Flier with Photoshop and Illustrator" width="530" height="663" /></a><br />
</strong></p>
<h3>2. <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/create-a-watercolor-themed-website-design-with-photoshop/">Create a Watercolor-Themed Website Design with Photoshop</a></h3>
<h3><a href="http://psd.tutsplus.com/tutorials/interface-tutorials/create-a-watercolor-themed-website-design-with-photoshop/"><img class="aligncenter size-full wp-image-1585" title="Create a Watercolor Themed Website Design with Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/2.-Create-a-Watercolor-Themed-Website-Design-with-Photoshop.jpg" alt="Create a Watercolor Themed Website Design with Photoshop" width="530" height="654" /></a></h3>
<h3>3. <a href="http://psd.tutsplus.com/tutorials/illustration/creating-a-shiny-chain-with-photoshop/">Creating a Shiny Chain with Photoshop</a></h3>
<h3><a href="http://psd.tutsplus.com/tutorials/illustration/creating-a-shiny-chain-with-photoshop/"><img class="aligncenter size-full wp-image-1586" title="Creating-a-Shiny-Chain-with-Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/3.-Creating-a-Shiny-Chain-with-Photoshop.jpg" alt="Creating-a-Shiny-Chain-with-Photoshop" width="368" height="744" /></a></h3>
<h3>4. <a title="Create a Simple Autumn Scene in Photoshop" href="http://www.tutorial9.net/photoshop/create-a-simple-autumn-scene-in-photoshop/">Create a Simple Autumn Scene in Photoshop</a></h3>
<h3><a href="http://www.tutorial9.net/photoshop/create-a-simple-autumn-scene-in-photoshop/"><img class="aligncenter size-full wp-image-1587" title="Create-a-Simple-Autumn-Scene-in-Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/4.-Create-a-Simple-Autumn-Scene-in-Photoshop.jpg" alt="Create-a-Simple-Autumn-Scene-in-Photoshop" width="530" height="230" /></a></h3>
<h3>5. <a title="How To Create a Sleek Audio Player Interface in Photoshop" href="http://www.tutorial9.net/photoshop/how-to-create-a-sleek-audio-player-interface-in-photoshop/">How To Create a Sleek Audio Player Interface in Photoshop</a></h3>
<h3><a href="http://www.tutorial9.net/photoshop/how-to-create-a-sleek-audio-player-interface-in-photoshop/"><img class="aligncenter size-full wp-image-1588" title="How-To-Create-a-Sleek-Audio-Player-Interface-in-Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/5.-How-To-Create-a-Sleek-Audio-Player-Interface-in-Photoshop.jpg" alt="How-To-Create-a-Sleek-Audio-Player-Interface-in-Photoshop" width="530" height="230" /></a></h3>
<h3><strong>6. </strong><a title="Permanent Link to Create a Stunning City Skyline Made of Text" href="http://www.myinkblog.com/2009/10/25/create-a-stunning-city-skyline-made-of-text/"><strong>Create a Stunning City Skyline Made of Text</strong></a></h3>
<h3><a href="http://www.myinkblog.com/2009/10/25/create-a-stunning-city-skyline-made-of-text/"><img class="aligncenter size-full wp-image-1589" title="Create-a-Stunning-City-Skyline-Made-of-Text" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/6.-Create-a-Stunning-City-Skyline-Made-of-Text.jpg" alt="Create-a-Stunning-City-Skyline-Made-of-Text" width="530" height="355" /></a></h3>
<h3>7. <a href="http://psd.tutsplus.com/tutorials/tutorials-effects/how-to-create-a-realistic-ies-lighting-effect-in-photoshop/">How to Create a Realistic IES Lighting Effect in Photoshop</a></h3>
<h3><a href="http://psd.tutsplus.com/tutorials/tutorials-effects/how-to-create-a-realistic-ies-lighting-effect-in-photoshop/"><img class="aligncenter size-full wp-image-1590" title="How-to-Create-a-Realistic-IES-Lighting-Effect-in-Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/7.-How-to-Create-a-Realistic-IES-Lighting-Effect-in-Photoshop.jpg" alt="How-to-Create-a-Realistic-IES-Lighting-Effect-in-Photoshop" width="530" height="318" /></a></h3>
<h3>8. <a title="Go to Create Gloomy Text Effect by Utilising the Amazing Cloud Filter in Photoshop" href="http://www.psdvault.com/text-effects/create-gloomy-text-effect-by-utilising-the-amazing-cloud-filter-in-photoshop/">Create Gloomy Text Effect by Utilising the Amazing Cloud Filter in Photoshop</a></h3>
<h3><a href="http://www.psdvault.com/text-effects/create-gloomy-text-effect-by-utilising-the-amazing-cloud-filter-in-photoshop/"><img class="aligncenter size-full wp-image-1591" title="Create-Gloomy-Text-Effect-by-Utilising-the-Amazing-Cloud-Filter-in-Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/8.-Create-Gloomy-Text-Effect-by-Utilising-the-Amazing-Cloud-Filter-in-Photoshop.jpg" alt="Create-Gloomy-Text-Effect-by-Utilising-the-Amazing-Cloud-Filter-in-Photoshop" width="530" height="371" /></a></h3>
<h3>9. <a href="http://psd.tutsplus.com/tutorials/drawing/how-to-create-a-side-view-concept-car/">How to Create a Side View Concept Car</a></h3>
<h3><a href="http://psd.tutsplus.com/tutorials/drawing/how-to-create-a-side-view-concept-car/"><img class="aligncenter size-full wp-image-1592" title="How-to-Create-a-Side-View-Concept-Car" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/9.-How-to-Create-a-Side-View-Concept-Car.jpg" alt="How-to-Create-a-Side-View-Concept-Car" width="530" height="223" /></a></h3>
<h3>10.<a href="http://abduzeedo.com/reader-tutorial-extinction-chanito"> Reader Tutorial: Extinction by Chanito</a></h3>
<h3><a href="http://abduzeedo.com/reader-tutorial-extinction-chanito"><img class="aligncenter size-full wp-image-1593" title="Reader-Tutorial-Extinction-by-Chanito" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/10.-Reader-Tutorial-Extinction-by-Chanito.jpg" alt="Reader-Tutorial-Extinction-by-Chanito" width="530" height="331" /></a></h3>
<h3>11. <a href="http://abduzeedo.com/reader-tutorial-create-vintage-traveler-diary-photoshop">Reader Tutorial: Create Vintage Traveler Diary in Photoshop</a></h3>
<h3><a href="http://abduzeedo.com/reader-tutorial-create-vintage-traveler-diary-photoshop"><img class="aligncenter size-full wp-image-1594" title="Reader-Tutorial-Create-Vintage-Traveler-Diary-in-Photoshop" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/11.-Reader-Tutorial-Create-Vintage-Traveler-Diary-in-Photoshop.jpg" alt="Reader-Tutorial-Create-Vintage-Traveler-Diary-in-Photoshop" width="530" height="331" /></a></h3>
<h3>12. <a href="http://abduzeedo.com/creating-very-cool-folded-typo">Creating Very Cool Folded Typo</a></h3>
<h3><a href="http://abduzeedo.com/creating-very-cool-folded-typo"><img class="aligncenter size-full wp-image-1595" title="12.-Creating-Very-Cool-Folded-Typo" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/12.-Creating-Very-Cool-Folded-Typo.jpg" alt="12.-Creating-Very-Cool-Folded-Typo" width="530" height="177" /></a></h3>
<h3>13. <a title="Give a Car Photo Super Slick Lighting Effects" href="http://psdfan.com/tutorials/photo-effects/give-a-car-photo-super-slick-lighting-effects/">Give a Car Photo Super Slick Lighting Effects</a></h3>
<h3><a href="http://psdfan.com/tutorials/photo-effects/give-a-car-photo-super-slick-lighting-effects/"><img class="aligncenter size-full wp-image-1596" title="Give-a-Car-Photo-Super-Slick-Lighting-Effects" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/13.-Give-a-Car-Photo-Super-Slick-Lighting-Effects.jpg" alt="Give-a-Car-Photo-Super-Slick-Lighting-Effects" width="450" height="300" /></a></h3>
<h3>14. <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-make-a-creative-blog-layout/">How to Make a Creative Blog Layout</a></h3>
<h3><a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-make-a-creative-blog-layout/"><img class="aligncenter size-full wp-image-1597" title="How-to-Make-a-Creative-Blog-Layout" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/14.-How-to-Make-a-Creative-Blog-Layout.jpg" alt="How-to-Make-a-Creative-Blog-Layout" width="530" height="530" /></a></h3>
<h3>15. <a href="http://psd.tutsplus.com/tutorials/3d/create-a-shiny-earth-with-photoshop-3d-layers/">Create a Shiny Earth with Photoshop 3D Layers</a></h3>
<h3><a href="http://psd.tutsplus.com/tutorials/3d/create-a-shiny-earth-with-photoshop-3d-layers/"><img class="aligncenter size-full wp-image-1598" title="Create-a-Shiny-Earth-with-Photoshop-3D-Layers" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/15.-Create-a-Shiny-Earth-with-Photoshop-3D-Layers.jpg" alt="Create-a-Shiny-Earth-with-Photoshop-3D-Layers" width="530" height="356" /></a></h3>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/best-places-to-get-quality-stuff/' title='60 Best Places to Get Quality Stuff'>60 Best Places to Get Quality Stuff</a></li>
<li><a href='http://nikhilmisal.com/some-great-tutorials-resources/' title='Some Great Tutorials &amp; Resources'>Some Great Tutorials &#038; Resources</a></li>
<li><a href='http://nikhilmisal.com/best-links-of-july/' title='Best Links of July'>Best Links of July</a></li>
<li><a href='http://nikhilmisal.com/9-tutorials-to-get-started-with-custom-post-types-in-wordpress/' title='9 Tutorials to Get Started with Custom Post Types in WordPress'>9 Tutorials to Get Started with Custom Post Types in WordPress</a></li>
<li><a href='http://nikhilmisal.com/how-to-create-beautiful-minimalist-wordpress-theme-in-photoshop/' title='How to Create Beautiful Minimalist WordPress Theme in Photoshop'>How to Create Beautiful Minimalist WordPress Theme in Photoshop</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/ultimate-photoshop-tutorials-3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Letterpress Effects in Web Design- Trends and Tutorials</title>
		<link>http://nikhilmisal.com/letterpress-effects-in-web-design-trends-and-tutorials/</link>
		<comments>http://nikhilmisal.com/letterpress-effects-in-web-design-trends-and-tutorials/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 21:05:10 +0000</pubDate>
		<dc:creator>Nikhil</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[trends]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://nikhilmisal.com/?p=1513</guid>
		<description><![CDATA[Develop compelling websites at graphic design school Cincinnati and pursue your creative skills In the earlier days Letterpress effect was achieved by applying ink to the top surface of raised image area, which is then pressed against the paper to transfer the image. This printing was done first on cloths then on papers. Okay! No [...]]]></description>
			<content:encoded><![CDATA[<h5 style="text-align: left;"><em>Develop compelling websites at <a href="http://www.artinstitutecincinnatiohio.com/design/" target="_blank">graphic design school Cincinnati</a> and pursue your creative skills</em></h5>
<p style="text-align: left;">In the earlier days Letterpress effect was achieved by applying ink to the top surface of raised image area, which is then pressed against the paper to transfer the image. This printing was done first on cloths then on papers. Okay! No more history let&#8217;s move to our topic. If any one is interested in the history read this article on Wikipedia.</p>
<p style="text-align: left;">Nowadays, the letterpress effects in the Web design is quite popular. This is obvious because the effect looks very cool and also easy to achieve in designing. Actually I like this effect so much that I am using it for each and every text in my new upcoming website. Considering that God will help me from IE6.</p>
<p style="text-align: left;"><span id="more-1513"></span>So following are some awesome websites which uses Letterpress effects. And at the end; Tutorials are also there!</p>
<h3>1. <a href="http://365daysofastronomy.org/" target="_blank">365 Days of Astronomy</a></h3>
<p style="text-align: left;"><a href="http://365daysofastronomy.org/" target="_blank"><img class="aligncenter size-full wp-image-1514" title="365" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/365.JPG" alt="365" width="530" height="385" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">2. <a href="http://www.apple.com/" target="_blank">Apple</a></h3>
<p style="text-align: left;"><a href="http://www.apple.com/" target="_blank"><img class="aligncenter size-full wp-image-1521" title="apple" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/apple.JPG" alt="apple" width="530" height="385" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">3. <a href="http://arbent.net/" target="_blank">Ar-bent-ing</a></h3>
<p style="text-align: left;"><a href="http://arbent.net/" target="_blank"><img class="aligncenter size-full wp-image-1522" title="arbenting" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/arbenting.JPG" alt="arbenting" width="530" height="350" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">4. <a href="http://brightkite.com/" target="_blank">Brightkite</a></h3>
<p style="text-align: left;"><a href="http://brightkite.com/" target="_blank"><img class="aligncenter size-full wp-image-1523" title="brightkite" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/brightkite.JPG" alt="brightkite" width="530" height="385" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">5. <a href="http://esorganizers.com/" target="_blank">e-Systems Organizers</a></h3>
<p style="text-align: left;"><a href="http://esorganizers.com/" target="_blank"><img class="aligncenter size-full wp-image-1524" title="eso" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/eso.JPG" alt="eso" width="530" height="385" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">6. <a href="http://inspireling.com/" target="_blank">Inspireling Blog</a></h3>
<p style="text-align: left;"><a href="http://inspireling.com/" target="_blank"><img class="aligncenter size-full wp-image-1526" title="inspireling-blog" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/inspireling-blog.JPG" alt="inspireling-blog" width="530" height="385" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">7. <a href="http://www.leemunroe.com/" target="_blank">Lee Munroe</a></h3>
<p style="text-align: left;"><a href="http://www.leemunroe.com/" target="_blank"><img class="aligncenter size-full wp-image-1527" title="lee-munroe" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/lee-munroe.JPG" alt="lee-munroe" width="530" height="385" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">8. <a href="http://www.nosotroshq.com/" target="_blank">Nosotros</a></h3>
<p style="text-align: left;"><a href="http://www.nosotroshq.com/" target="_blank"><img class="aligncenter size-full wp-image-1528" title="nosotros" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/nosotros.JPG" alt="nosotros" width="530" height="250" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">9. <a href="http://www.postbox-inc.com/" target="_blank">Postbox</a></h3>
<p style="text-align: left;"><a href="http://www.postbox-inc.com/" target="_blank"><img class="aligncenter size-full wp-image-1529" title="postbox" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/postbox.JPG" alt="postbox" width="530" height="250" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">10. <a href="http://www.powerset.com/" target="_blank">Powerset</a></h3>
<p style="text-align: left;"><a href="http://www.powerset.com/" target="_blank"><img class="aligncenter size-full wp-image-1530" title="powerset" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/powerset.JPG" alt="powerset" width="530" height="350" /></a><strong> </strong></p>
<h2 style="text-align: left;">Tutorials:</h2>
<h3 style="text-align: left;"><a title="Permanent Link: Creating Editable Letterpress Styled Text" href="http://vectips.com/tutorials/creating-editable-letterpress-styled-text/" target="_blank">Creating Editable Letterpress Styled Text</a></h3>
<p><a href="http://vectips.com/tutorials/creating-editable-letterpress-styled-text/" target="_blank"><img class="aligncenter size-full wp-image-1534" title="vectips" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/vectips.jpg" alt="vectips" width="530" height="297" /></a></p>
<h3><a title="Permanent Link to Create a Sleek Pressed Letter Design" href="http://www.myinkblog.com/2009/02/06/create-a-sleek-pressed-letter-design/" target="_blank">Create a Sleek Pressed Letter Design</a></h3>
<p><a href="http://www.myinkblog.com/2009/02/06/create-a-sleek-pressed-letter-design/" target="_blank"><img class="aligncenter size-full wp-image-1535" title="ink-blog" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/ink-blog.jpg" alt="ink-blog" width="530" height="398" /></a></p>
<h3><a href="http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow" target="_blank">Create a Letterpress Effect with CSS Text-Shadow</a></h3>
<h3><a href="http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow" target="_blank"><img class="aligncenter size-full wp-image-1536" title="line25" src="http://icdn.nikhilmisal.com/wp-content/uploads/2009/12/line25.jpg" alt="line25" width="530" height="331" /></a></h3>
<p style="text-align: left;"><strong>What do you think about Letterpress Effect? Will you use it in your Web Design? Let us know in the Comments.</strong></p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://nikhilmisal.com/future-trends-in-web-design-%e2%80%93-what-lies-ahead/' title='Future Trends in Web Design – What Lies Ahead'>Future Trends in Web Design – What Lies Ahead</a></li>
<li><a href='http://nikhilmisal.com/20-great-web-design-tutorials-and-inspirations/' title='20 Great Web Design Tutorials and Inspirations'>20 Great Web Design Tutorials and Inspirations</a></li>
<li><a href='http://nikhilmisal.com/mobile-website-design-trends/' title='Mobile Website Design Trends'>Mobile Website Design Trends</a></li>
<li><a href='http://nikhilmisal.com/15-must-read-articles-for-web-developers/' title='15 Must Read Articles for Web Developers'>15 Must Read Articles for Web Developers</a></li>
<li><a href='http://nikhilmisal.com/12-creative-peace-of-web-design/' title='12 Creative Peace of Web Design'>12 Creative Peace of Web Design</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nikhilmisal.com/letterpress-effects-in-web-design-trends-and-tutorials/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via icdn.nikhilmisal.com

Served from: nikhilmisal.com @ 2012-05-17 21:51:17 -->
