<?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>Webdevtuts &#187; beginners</title>
	<atom:link href="http://www.webdevtuts.net/tag/beginners/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdevtuts.net</link>
	<description>Making tutorials fun and easy!</description>
	<lastBuildDate>Mon, 23 Jan 2012 11:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Introduction to PHP for beginners</title>
		<link>http://www.webdevtuts.net/php/introduction-to-php-for-beginners/</link>
		<comments>http://www.webdevtuts.net/php/introduction-to-php-for-beginners/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 01:07:05 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Introduction to PHP for beginners]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php for beginners]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=2173</guid>
		<description><![CDATA[So you have mastered <strong>HTML</strong>, <strong>CSS</strong>, and <strong>Javascript</strong>. Whats the next step? Sure you can make awesome looking static pages in <strong>HTML</strong>, but the web is much more than that. The web is ever changing and you need to create you web pages that will compensate for that changing content. <a href="http://www.webdevtuts.net/php/introduction-to-php-for-beginners/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you have mastered <strong>HTML</strong>, <strong>CSS</strong>, and <strong>Javascript</strong>. Whats the next step? Sure you can make awesome looking static pages in <strong>HTML</strong>, but the web is much more than that. The web is ever changing and you need to create you web pages that will compensate for that changing content. Whether it&#8217;s a full CMS (content management system) or just a simple form that sends a question to your email, there has to be code behind the scenes making everything work. 9 chances out of 10 this language is PHP; What is PHP? Well it stands for <strong>PHP: Hypertext Preprocessed </strong>and its a &#8220;General purpose scripting language that was originally designed for <strong>web development</strong> to produce dynamic web pages.&#8221; basically it was made to work perfectly within HTML and also uses <strong>databases </strong>to store information, so it&#8217;s the both of both worlds. Let&#8217;s get started learning this wonderful <strong>programming</strong> language.</p>
<h2>Testing Environment</h2>
<p>As you can imagine, there is a lot more stuff going on behind the scenes with PHP than there would be with just HTML,CSS, Javascript which is built into browser functionality. PHP is a server-side scripting language which requires a PHP server. This could be either on your web server (most paid hosting includes PHP) or you can set one up locally. For this tutorial I will show you how to set up your server on your own computer(locally). To do this we need to download some software.</p>
<h2>Mac Users</h2>
<p>For Mac users I will direct you to a great program called <a href="http://www.mamp.info" target="_blank">MAMP</a> (Mac apache Mysql PHP) download and install that, the free version should be more than enough to start out, but if you find yourself needing more the paid version is great.</p>
<h2>Windows Users</h2>
<p>Windows users may have a little less pretty interface, but it still works! A program call <a href="http://www.wampserver.com/en/" target="_blank">WAMP</a> (Windows Apache Mysql PHP) Just download and install.</p>
<p>I will be doing this tutorial on a Mac so everything will be in MAMP but everything is very similar in WAMP. For both, make sure that your server is up and running. To do this on MAMP click on the app (the one that looks like an elephant) it will ask for the admin password, then you will be connected a web page will open confirming it&#8217;s success. With WAMP click on the icon, it will place an icon in the bottom right bar by your time (the icon looks like a meter of some kind). Click on this icon and select start all services. For more information on how to use WAMP check this out WAMP Docs. Now that we have our servers running it&#8217;s time to get started with the fun stuff, Writing the PHP.</p>
<h2>Bare Bones Basics</h2>
<p>This section I will talk about the very basics needed to get your first PHP application going. If you have already seen php code before than you will recognize some things, but go ahead and read over the information because if you mess up these very essential pieces of the PHP picture than nothing you write in PHP will work. So pay attention and you will be fine.</p>
<pre class="brush:css">&lt;?php ?&gt;</pre>
<p>This is what you will use to start and end every bit of PHP you will ever write, Also you can use shorthand tag (sometimes it needs to be enabled on your server to be used):</p>
<p><!--?  ?--></p>
<h2>Cliche Hello World</h2>
<p>What kind of tutorial would this be without a Hello World statement. I will show you how to display hello world on your screen, Two ways!</p>
<p>This is the echo statement, you should get used to this on as you will use it a lot throughout your PHP developing career.</p>
<pre class="brush:css">&lt;?php
    echo "Hello World";
?&gt;</pre>
<p>The second is print, which basically does the same thing as echo but it can return an true or false boolean value, which you don&#8217;t have to worry about just yet. All that is important right now is that you can use either to display something on a webpage.</p>
<pre class="brush:css">&lt;?php
   print "Hello World";
?&gt;</pre>
<p>There you have it, your first PHP script! That wasn&#8217;t so hard was it? Let me take you through our tiny script and explain to you what is happening with it. first we opened the PHP tag <!--?php next we used the command print which prints the the next part a string,"Hello World" next we have a semi-colon(;) which is needed to finish a PHP statement. Finally we have to end our PHP ?--></p>
<h2>Commenting Your Code</h2>
<p>One of the best Practices you can get into right from the start, is to comment out your code. You may know what you are saying when you are writing it, but what about when you have to edit it a few months later? You may not have any idea what was going through your head at the time. That is why it&#8217;s great to comment your code! There are a few ways to add comments in PHP, Let me show you how.</p>
<pre class="brush:css">&lt;?php
	echo "Hello World"; //This is a single line comment
?&gt;

&lt;?php
	echo "Hello World"; /* This is a multi-line comment
	print 'Comment'; I am still commenting
	*/
?&gt;</pre>
<h2>Intro Into Variables</h2>
<p>Variables are found in many different programming languages so if you have some experience in Javascript then this might not be a hard concept for you to catch on to. Basically a variable holds a value, it can be a string like &#8220;Hello World&#8221;;, integer like 4 or it could be another variable. In PHP variables are defined by the $ sign, and are case sensitive.</p>
<p><strong>Some examples of valid variables.</strong></p>
<pre class="brush:css">
* $variable
* $Variable
* $variable_name
* $varibaleName
* $_variable
</pre>
<p><strong>Some Invalid variable Names</strong></p>
<pre class="brush:css">
* $3variable
* $variable-name
* $variable@name
</pre>
<p>This leaves you with lots of choices to name your variables, here is an example of how to use them.</p>
<pre class="brush:css">&lt;?php
	$helloWorld = "Hello World";
	echo $helloWorld;
?&gt;</pre>
<p>I am not going to get into this to far until next time but you can do math using variables. Use this example to create you own mathematical equations</p>
<pre class="brush:css">&lt;?php
	$var1 = 20;
	$var2 = 15;
	$var3 = $var1*$var2;

echo "20x15 equals $var3";
?&gt;</pre>
<p>I will cover more math in the next tutorial but this will give you a nice example of what you can do with variables. Variables are one of the most important building blocks of PHP, and you will soon become very comfortable with them.</p>
<h2>Conclusion</h2>
<p>This has been a simple introduction into the world of PHP, and let me tell you we have just scratched the surface of what you can do with this very dynamic programming language. Next time we will get into more in depth examples and also some more core functionality of this great language.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/php/introduction-to-php-for-beginners/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Create a simple logo in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 05:43:53 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to create a logo]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[photoshop beginner logo tutorial]]></category>
		<category><![CDATA[photoshop logo tutorial]]></category>
		<category><![CDATA[photoshop text effect]]></category>
		<category><![CDATA[text effect tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1321</guid>
		<description><![CDATA[Well We're going to do things a bit different today. I know there are many designers out there wondering how they can create a logo in photoshop. Today we're going to be using are creative minds and create a simple and fast logo in photoshop. No Sketching, enjoy. <a href="http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Designing or creating a logo can sometime be extremely stressful if you let it get to you. When it comes to the creation of logo&#8217;s many designers like to sketch them out then bring them into illustrator and finish the job. Well We&#8217;re going to do things a bit different today. I know there are many designers out there wondering how they can create a logo in photoshop. Today we&#8217;re going to be using are creative minds and create a simple and fast logo in photoshop. No Sketching, enjoy. </p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/Logo.rar" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/final.jpg" title="demonstration" target="_blank">Final</a>
</div>
<blockquote><h3>Things You Need</h3>
<ul>
<li><a href="http://www.dafont.com/airstream.font" target="_blank">Airstream Font</a></li>
</ul>
</blockquote>
<h2>Step 1</h2>
<p>Create a new document 1000px x 72px. Background color:#0096ff.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/1.new.jpg" alt="Logo"/></p>
<h2>Step 2</h2>
<p>Select the blur brush tool <b>color:</b>#61beff and create a circle blur above our background layer. You should have glow look if done correctly.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/2.blur.jpg" alt="blur"/></p>
<h2>Step 3</h2>
<p>Select the type tool <b>size:</b>200px, <b>Text:</b>Airstream, color:</b>#ffffff, and create the word Eclipse. Then go to Window>>Character and change to settings below.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/3.create.jpg" alt="create"/></p>
<h2>Step 4</h2>
<p>Duplicate the text layer and change the color to #000000. Then move text downward left to give it that eclipse look.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/4.movetext.jpg" alt="move text"/></p>
<h2>Step 5</h2>
<p>Now this is where the neatness comes in or shall I say the great effect of out logo. Select the black text layer and change the color from black to #61beff. Text should now blend in with background.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/5.blend.jpg" alt="blend"/></p>
<h2>Step 6</h2>
<p>Select the type tool <b>size:</b>30px, <b>Text:</b>Airstream, <b>color:</b>#fff, and create the word Solar. Then add the word to the top upper left of the Eclipse text.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/6.solar.jpg" alt="solar"/></p>
<h2>Step 7</h2>
<p>Select the rounded rectangle tool <b>color:</b>#fffff and create a circle.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/7.circle.jpg" alt="circle"/></p>
<p>Duplicate the layer and change the circle color to #61beff. Move it down leftward. Click image below to enlarge!<br />
<a href="http://webdevtuts.s3.amazonaws.com/wp-content/uploads/2010/logotut/logo.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/final.jpg" alt="secondary color"/></a></p>
<p>You are now done! I know this tutorial was quite simple but you should have an basic understanding of how creating a logo.</p>
<h2>Beyond This tutorial</h2>
<p>If you would like there are many things you could do with this logo or any logo you create. I just change the backgrounds and dropped the shadow on some but there were a ton of other things I could of done with this. So be creative and don&#8217;t just settle for your first idea.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/creative1.jpg" alt="extra logo"><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/creative2.jpg" alt="extra logo"><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/creative3.jpg" alt="extra logo"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Create a vector art of yourself using simple photoshop &amp; Illustrator techniques</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-vector-art-of-yourself-using-simple-photoshop-illustrator-techniques/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-vector-art-of-yourself-using-simple-photoshop-illustrator-techniques/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 05:14:42 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[adobe illustrator tutorial]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[illustrator tutorial]]></category>
		<category><![CDATA[photoshop tutorial]]></category>
		<category><![CDATA[portrait tutorial]]></category>
		<category><![CDATA[portrait tutorial photoshop]]></category>
		<category><![CDATA[vector]]></category>
		<category><![CDATA[vector art illustrator tutorial]]></category>
		<category><![CDATA[vector art tutorial]]></category>
		<category><![CDATA[vector illustration tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1066</guid>
		<description><![CDATA[There are many tutorials on how to create a vector image of yourself but I think they are way too complicated to follow for some people. In this tutorial I will teach you.. <a href="http://www.webdevtuts.net/photoshop/create-a-vector-art-of-yourself-using-simple-photoshop-illustrator-techniques/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are many tutorials on how to create a vector image of yourself but I think they are way too complicated to follow for some people. In this tutorial I will teach you how to create a vector image of yourself. Yes of YOURSELF. If you follow my techniques you should come out with a great vector. Ready to get started. Lets do it</p>
<h1>Materials you need!</h1>
<ul>
<li>Image of yourself</il>
<li>Photoshop/Illustrator</li>
<li>Patients</li>
</ul>
<h2>Step 1</h2>
<p>Open illustrator and Create new document 1000px x 1000px.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/1.new-document.jpg" alt="Create new document"/></p>
<p>Then grab a image of YOURSELF and place it on the canvas.<br />
<img src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/1.2placecanvas.jpg" alt="Place on Canvas"/></p>
<h2>Step 2</h2>
<p>Ok so if you have seen others tutorials they have probably stated at this step that you should use the pen tool. Since the pen tool takes time to use and get used to we will use the brush tool with a stroke and no color throughout the entire tutorial. Select the brush tool(or press B). Then change the stroke to <b>0.75</b>. Now trace your face. take your time also.</p>
<p>As you can see I have trace my face with the image turned on.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/2.traceface.jpg" alt="Trace Face"/></p>
<p>One you turn the image off you should have a trace like the one below.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/2.tracefaceonly.jpg" alt="Trace Face Only"/></p>
<h2>Step 3</h2>
<p>Now we&#8217;re going to trace the hair. I have a buzz hair cut so it might be easy for me to trace but if you have long hair or curly or Afro just trace the outline and we will add details later.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/3.hairtrace.jpg" alt="hair"/></p>
<h2>Step 4</h2>
<p>Next we will draw the lips. I started with the bottom lip then added the top lip. Zoom in if you need to also. If it takes you multiple tries do not worry the face is one of the hardest things to do.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/4.lips.jpg" alt="lips"/></p>
<blockquote><p>
Note: I am tracing with the image on but looks as if I&#8217;m not from the images.
</p></blockquote>
<h2>Step 5</h2>
<p>I know the nose should be next but we&#8217;re going to do the eyes now. Trace your eyes now. When tracing the eyes if you have to change the stroke or the brush depending on what looks good. We will add details later.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/5.eyes.jpg" alt="eyes"/></p>
<h2>Step 6</h2>
<p>Next we&#8217;re going to draw the nose. Do not draw the entire nose.Draw it piece by piece. Your nose will be different from mines but just look at how I have outlined<br />
it.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/6.noseoutline.jpg" alt="Nose Outline"/></p>
<p>Now draw your nostrils. Try not to connect it to your nose. But do not leave to much space in between the nose and nostrils.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/6.nostrills.jpg" alt="Nostrils"/></p>
<h2>Step 7</h2>
<p>Next we&#8217;re going to get back to the eyes section. Create a line above your eye. That will indicate the outer edge of your eyes. Hope that made sense<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/7.eye-outter.jpg" alt="eye outter"/></p>
<h2>Step 8</h2>
<p>Now lets create our eye brows. Trace your eye brows.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/8.tracebrows.jpg" alt="trace brows"/></p>
<p>Now click on the eye brows and change the fill color to black(#000) or whatever color your eyebrows are.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/8.darkbrows.jpg" alt="dark brows"/></p>
<h2>Step 9</h2>
<p>Now create two lines for your facial structure. It might make you look like you have wrinkle skins but that will change later. You might have to change the stroke to a thinner stroke. Depends on the person.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/9.lines.jpg" alt="lines"/></p>
<h2>Step 10</h2>
<p>Now just you should only have to trace your body and add details your ear. I decided to skip some parts to get to the painting. If you&#8217;re having trouble just look at how have traced my image.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/10.tracedone.jpg" alt="trace done"/></p>
<h2>Step 11</h2>
<p>Now we&#8217;re going to bring it over into photoshop and start painting it. I guess this is the fun part, well aleast for me it is haha. Go to File>>Export and give your trace a name and save it as a Photoshop Document(PSD).<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/11.export.jpg" alt=export"/></p>
<h2>Step 12</h2>
<p>Open photoshop and drag your vector trace into photoshop. The vector will be bigger in photoshop(Just a heads up).<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/12.newphoto.jpg" alt="new photo"/></p>
<blockquote><p>
<b>Note:</b> Painting takes a while. Select the Paint brush tool and paint slowly. I painted the inside first then zoomed in and painted the edges.
</p></blockquote>
<h2>Step 13</h2>
<p>Select the paint brush tool and go around and paint the shirt and hair of your vector. If you have long hair Just create a custom brush pattern with a bunch of lines or<br />
just select the paint brush tool 1px and draw string by string. Yes it takes a while.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/13.shirthair.jpg" alt="shirthair"/></p>
<h2>Step 14</h2>
<p>Now select the best skin tone color for your skin. Since I am a dark brown I will use a dark brown color. If you have light tones and your face we&#8217;ll worry about that later. For now just create the basic tone.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/14.basictone.jpg" alt="basic tone"/></p>
<h2>Step 15</h2>
<p>Now lets work on our eyes. With the brush tool slowly and carefully fill the background of the eye. I did not choose white as the color. Instead I used something a bit darker(#e8e8e8<--Light Grey/white).<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/15.eyebg.jpg" alt="eye background"/></p>
<h2>Step 16</h2>
<p>Select the color of your eyes. In my case my eyes are dark brown so I choose a dark brown color for my eyes. Then added two pupils.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/16.eyereal.jpg" alt="eye real"/></p>
<h2>Step 17</h2>
<p>Depending on the lighting select the basic color of your lips. I choose a darker color for my bottom lip and lighter color for my top lip. We will add details later.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/17.lips.jpg" alt="lips"/></p>
<p>Now if you look at my original image you will see my lips you see i have lighter spots on some parts of them. So what you want to do to accomplish a great look is select the paint brush tool and whatever color your lips are lighter then select that color. In my case they were a pinkish color so I selected a pink type of color then added 4 dots. After you have the dots go to Filter>>Blur>>Gaussian blur then blur it til it looks good on you. Do that for the top and bottom lip then erase the extra blur around the lips.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/17.lipsdone.jpg" alt="lips done"/></p>
<h2>Step 18</h2>
<p>Ok so remember how we applied a basic tone to our skin. Well this is the part where you add the lighter or dark spots on your skin. I have darker spots on my skin so I selected a dark brown color with the paint brush tool and marked my dark spots(I didn&#8217;t really get too detail). Then I added a Gaussian blur to it.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/18.darkblur.jpg" alt="dark blur"/></p>
<h2>Step 19</h2>
<p>Next we&#8217;re going to do the exact same thing as step 18 but for our eye shadows. Select the paint brush tool and use the same color that you used for your dark/light spots then add two circles right under your eyebrows then apply a Gaussian blur.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/19.blurunder.jpg" alt="blur under"/></p>
<h2>Step 20</h2>
<p>Finally add a background image then you&#8217;re done! Your vector should be completed. I know I did not use a image that we could of all use because that would make this<br />
tutorial worthless. If you followed my steps then you should be good to go.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/vector%20tut/final.jpg" alt="final"/></p>
<p>I know this tutorial was not very detailed but it should of helped you create a vector image of yourself using simple techniques. I hope you guys enjoyed this tutorial. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-vector-art-of-yourself-using-simple-photoshop-illustrator-techniques/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Create an awesome user friendly button in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 21:27:22 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[photoshop web button tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[user friendly web button]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[web button tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=910</guid>
		<description><![CDATA[Whenever creating buttons us designers often just use a gradient. But doesn't that get old sometime? In this tutorial you will learn how to create a user friendly button using some pretty simple photoshop techniques.   <a href="http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Whenever creating buttons us designers often just use a gradient. But doesn&#8217;t that get old sometime? In this tutorial you will learn how to create a user friendly button using some pretty simple photoshop techniques. </p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/Webdevtuts/uploads/2009/07/downloads/buttons.zip" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/final-extra.jpg" title="demonstration" target="_blank">Final</a>
</div>
<p>Create a New Document. It can be any size.</p>
<h2>Step 1</h2>
<p>Select the rounded rectangle tool, <strong>radius:</strong> 5px, <strong>color:</strong>#1f1f1f and draw a rectangle in the middle of your canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/1.round.jpg" alt="rounded rectangle" /></p>
<p>Right click on button layer&gt;&gt;blending options&gt;&gt;gradient overlay. <strong>Blend mode:</strong>normal, <strong>Opacity:</strong>100%, <strong>Style:</strong>linear, <strong>Angle</strong>90, <strong>Scale:</strong>54%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/1-2.graidentset.jpg" alt="Gradient settings" /></p>
<p>Now double click on the gradient bar. <strong>Left Color:</strong>#1f1f1f, <strong>Right Color:</strong>#343434.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/1-3-gradientbar.jpg" alt="gradient bar" /></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/pre1.jpg" alt="Example 1" /></p>
<h2>Step 2</h2>
<p>Now were going to give our button a little of pop out technique. Ok so you know the first rectangle layer we&#8217;ve created, we are going to take that layer and duplicate it 2 times. After you have duplicated it 2 times you should now have 3 buttons in total. First Rectangle will be the gradient we&#8217;ve created in the beginning of this tutorial and the second 2 buttons will be changed from gradients to a 1 solid color.</p>
<p><strong>Note:</strong> To change a layer from a gradient to 1 solid color all you would have to do is right click on the layer&gt;&gt;blending options&gt;&gt;and unselect the gradient overlay box. Then select the<br />
color check box and change the color without making a new button over again.</p>
<p><strong>First rectangle:</strong> Gradient<br />
<strong>Middle Rectangle:</strong> #3D3D3D<br />
<strong>Last Rectangle:</strong> #343434</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/2.layout.jpg" alt="layout" /></p>
<p>Now that you have all 3 buttons made with the proper colors we will now make them them close to one another. Zoom in and select the move tool. Now drag the two layers close to the gradient layer. You should now see a little pop out. If you can not then it might be because of the white canvas.</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/2.layoutclose.jpg" alt="Layout closer" /></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/pre2.jpg" alt="Example 2" /></p>
<h2>Step 3</h2>
<p>Now we will add our little gloss inside of the button. Select the rounded rectangle tool, <strong>color:</strong>#ffffff. Now draw a rectangle at the top of the button and change the <b>opacity</b> to 1%, and <b>fill</b> to 10%.</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/3.insidewhite.jpg" alt="white layer" /></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/3.after.jpg" alt="After" /></p>
<h2>Step 4</h2>
<p>Select the type tool <strong>color:</strong> #4b4b4b, <strong>font size:</strong>30px arial. Right click on the text layer&gt;&gt;blending options&gt;&gt;Inner shadow. <strong>blend mode:</strong> multiply, <strong>distance</strong> 0, <strong>choke:</strong> 0 , <strong>size:</strong> 5<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/4.innershadow.jpg" alt="inner shadow" /></p>
<p>Now select the color overlay check box and change the color to #333333.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/4.ex.jpg" alt="inner shadow after" /></p>
<h2>Step 5</h2>
<p>Select the type tool <strong>color:</strong> #4b4b4b, <strong>font size:</strong>12px arial. Right click on the text layer&gt;&gt;blending options&gt;&gt;Inner shadow. <strong>blend mode:</strong> multiply, <strong>opacity:</strong> 75%, <strong>angle:</strong> 120, <strong>distance</strong> 5, <strong>choke:</strong> 0 , <strong>size:</strong> 5<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/5.innerset.jpg" alt="inner set" /></p>
<p>Now select the color overlay check box and change the color to #ffffff. And you should now have a nice looking button.</p>
<p><b>Note:</b> Click to Enlarge!</p>
<p><a href="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/5.button.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/5.button.jpg" alt="finish" width="550" height="200" /></a></p>
<p>You can change the colors of these buttons very easy without creating new buttons. Just change the gradients and background colors and you will be good to go.</p>
<p><b>Note:</b> Click to Enlarge!<br />
<a href="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/final-extra.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/final-extra.jpg" alt="button examples" width="550" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>4</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 Amazon Web Services: S3: webdevtuts.s3.amazonaws.com

Served from: www.webdevtuts.net @ 2012-02-04 03:13:39 -->
