<?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>bryankichler.com</title>
	<atom:link href="http://bryankichler.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bryankichler.com</link>
	<description></description>
	<lastBuildDate>Fri, 09 Jul 2010 04:26:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Spring 2010 Andalusia Fire School</title>
		<link>http://bryankichler.com/2010/07/spring-2010-andalusia-fire-school/</link>
		<comments>http://bryankichler.com/2010/07/spring-2010-andalusia-fire-school/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 04:26:06 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Fire School]]></category>
		<category><![CDATA[Gas Pipeline Safety]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=763</guid>
		<description><![CDATA[Here are some images from my Fire School Classes in Andalusia. We had a great turnout, excellent weather, and a great group of guys and gals. Enjoy.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><p style="text-align:center;">
              <iframe width="403px" height="403px" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" name="smooth_frame_1154418900" src="http://bryankichler.com/wp-content/plugins/nextgen-smooth-gallery/nggSmoothFrame.php?galleryID=3&width=400&height=400&timed=&showArrows=1&showCarousel=1&embedLinks=1&delay=9000&defaultTransition=fade&showInfopane=1&textShowCarousel=Pictures&showCarouselOpen=1&margin=&align="></iframe>
            </p></p>
<p style="text-align: left;">Here are some images from my Fire School Classes in Andalusia. We had a great turnout, excellent weather, and a great group of guys and gals. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/spring-2010-andalusia-fire-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip – How to Connect to MySQL using Perl</title>
		<link>http://bryankichler.com/2010/07/quick-tip-%e2%80%93-how-to-connect-to-mysql-using-perl/</link>
		<comments>http://bryankichler.com/2010/07/quick-tip-%e2%80%93-how-to-connect-to-mysql-using-perl/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 04:17:52 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[FAQs Help and Tutorials]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Modules]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Perl DBI]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=743</guid>
		<description><![CDATA[This is a Quick Tip on how to connect to a MySQL database using Perl. Even though many other languages are sneaking their way onto Perl’s turf. There is still a great demand for Perl on the web, so don’t forget one of it’s primary uses. Here’s the code: #!/usr/bin/perl use DBI; $database = “DATABASENAME”; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a Quick Tip on how to connect to a MySQL database using Perl. Even though many other languages are sneaking their way onto Perl’s turf. There is still a great demand for Perl on the web, so don’t forget one of it’s primary uses. Here’s the code:</p>
<p><span style="color: #008000;">#!/usr/bin/perl<br />
use DBI;</span></p>
<p><span style="color: #008000;">$database = “DATABASENAME”;<br />
$hostname = “db.DOMAIN”;<br />
$port = “3306?;<br />
$username = “USERNAME”;<br />
$password = ‘PASSWORD’;</span></p>
<p><span style="color: #008000;">$dsn = “DBI:mysql:database=$database;host=$hostname;port=$port”;</span></p>
<p><span style="color: #008000;">$dbh = DBI-&gt;connect($dsn, $username, $password) or die(”Could not connect!”);</span></p>
<p><span style="color: #008000;">$dbh-&gt;disconnect;</span></p>
<p>First we have to tell perl to use the DBI module. Define our variables. Then define the database information. Finally we’re able to connect to our database. This could be done in one line, but you’ll find that most people prefer to connect their scripts this way for clarity. That’s all. Thanks for reading</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/quick-tip-%e2%80%93-how-to-connect-to-mysql-using-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip – How to connect to MySQL with PHP</title>
		<link>http://bryankichler.com/2010/07/quick-tip-%e2%80%93-how-to-connect-to-mysql-with-php/</link>
		<comments>http://bryankichler.com/2010/07/quick-tip-%e2%80%93-how-to-connect-to-mysql-with-php/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 04:16:56 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[FAQs Help and Tutorials]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=723</guid>
		<description><![CDATA[This is a Quick Tip on how to connect to MySQL with PHP. We have all done it from time to time, but sometimes we forget just how to connect to those pesky MySQL databases directly using PHP. So here’s how it’s done: &#60;?php function open( ){$db = mysql_connect( ‘localhost’, ‘root’, ‘password’ ); } ?&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a Quick Tip on how to connect to MySQL with PHP. We have all done it from time to time, but sometimes we forget just how to connect to those pesky MySQL databases directly using PHP. So here’s how it’s done:<br />
<span style="color: #008000;">&lt;?php<br />
function open(  ){$db = mysql_connect( ‘localhost’, ‘root’, ‘password’ );<br />
} ?&gt;</span></p>
<p>Here we have custom a function “open”. Followed by the mysql_connect function which we will supply the url, username, and password. It’s pretty simple to do in PHP. Thanks for reading</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/quick-tip-%e2%80%93-how-to-connect-to-mysql-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a Local Web Server with Apache Friends XAMP</title>
		<link>http://bryankichler.com/2010/07/setting-up-a-local-web-server-with-apache-friends-xamp/</link>
		<comments>http://bryankichler.com/2010/07/setting-up-a-local-web-server-with-apache-friends-xamp/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 04:15:52 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apache HTTP Server]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Web server]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=702</guid>
		<description><![CDATA[More times then not I have needed the use of a webserver to test various portions or web design that I’m working on for a client. In years past, this was not the easiest thing to do. You would first have to download your web server, and configure it for your system. Then you would [...]]]></description>
			<content:encoded><![CDATA[<p>More times then not I have needed the use of a webserver to test various portions or web design that I’m working on for a client. In years past, this was not the easiest thing to do. You would first have to download your web server, and configure it for your system. Then you would have to track down, download, configure, and install various modules, extensions, and runtimes like <a title="Perl" rel="wikipedia" href="http://en.wikipedia.org/wiki/Perl" target="_blank">Perl</a> or <a title="PHP" rel="wikipedia" href="http://en.wikipedia.org/wiki/PHP" target="_blank">PHP</a>. In the end it was always a big hassle, and you were rarely able to install identical loads on two different machines.</p>
<p><span id="more-702"></span></p>
<p>Not anymore. Today there are a number of really good pre-configured web servers available that handle the job well. One of the most well known of these is Xampp. It consists of an <a title="Apache HTTP Server" rel="wikipedia" href="http://en.wikipedia.org/wiki/Apache_HTTP_Server" target="_blank">Apache web server</a> loaded with all the typical extensions. There are even several load package options available. If you want Tomcat, no problem. Don’t want PHP? They even have a bare version for a minimal install. No matter what your testing needs, more then likely <a title="XAMPP" rel="wikipedia" href="http://en.wikipedia.org/wiki/XAMPP" target="_blank">Apache Friends</a> has an answer, or they can help you find one. Now lets look at the install:</p>
<p>1. Go to the <a href="http://www.apachefriends.org/">Apache Friends</a> website and download the distribution of Xampp for your OS. If your not sure which one to get I would recommend getting the standard version with the installer. Save the file to an easy to find location on your hard drive.</p>
<p>2. Find the file on your hard drive, and start the install by double clicking it. The install works pretty much like any other installer. Just follow along as the main program is installed.</p>
<p>3. Once the install is complete you should see a dialog like the one below. If not you can go to the Apache Friends folder in the start menu and select “Xampp Control Panel”</p>
<p>4. Start Apache and <a title="MySQL" rel="wikipedia" href="http://en.wikipedia.org/wiki/MySQL" target="_blank">MySQL</a>. You will have to select if you want to run Xampp as a service or to start and stop it manually. If your only using Xampp as a test server, running it manually is your best option. If it runs as a service then it will be active all the time just burning up CPU cycles.</p>
<p>5. Open up your web browser and type in “localhost”. If you see the bright orange website of Xampp, your done.</p>
<p>That was easy. At this point your web server is up and ready for your website. I would go through and look at some of the examples, and set up the root password for MySQL. If you close the Xampp Control Panel dialog it will sit in the try for when you need it again. Apache Friends has a great site with even better documentation, so stop by there and read up if your still a little lost. Good luck.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=5312ed93-792a-43fa-891f-33a31906f243" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/setting-up-a-local-web-server-with-apache-friends-xamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Redirect Tutorial</title>
		<link>http://bryankichler.com/2010/07/html-redirect-tutorial/</link>
		<comments>http://bryankichler.com/2010/07/html-redirect-tutorial/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 04:13:39 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Directory structure]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML element]]></category>
		<category><![CDATA[Markup Languages]]></category>
		<category><![CDATA[Web search engine]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=680</guid>
		<description><![CDATA[Sometimes in the fast paced internet world your forced to relocate a website, change it’s name or rearrange a directory structure. Suddenly though your faced with a horrible problem. All those websites, directories, and search engines linking to your pages will find nothing but the dreaded 404 page, or even worse the page of a competitor. Well, there’s a simple [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes in the fast paced internet world your forced to relocate a website, change it’s name or rearrange a directory structure. Suddenly though your faced with a horrible problem. All those websites, directories, and search engines linking to your pages will find nothing but the dreaded 404 page, or even worse the page of a competitor. Well, there’s a simple measure that you can use to prevent just these issues. HTML redirects.</p>
<p><span id="more-680"></span></p>
<p>HTML redirects do exactly what the name implies. It’s a simple HTML page that once loaded, sends the user to a designated page after a certain period of time. Lets start with a basic HTML page for our example.</p>
<p><span style="color: #008000;">&lt;!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”&gt;&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;HTML Redirect Tutorial&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body bgcolor=”#FFFFFF” text=”#000000? link=”#0000FF” vlink=”#0000FF” alink=”#0000FF”&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</span></p>
<p>This is your basic blank HTML 4.01 template with black text, white background, and blue links with the title “HTML Redirect Tutorial”. We want this page to be as simple as possible so that it loads quickly and accurately. So this bit of code is a great start. Now we need to add our redirect code. After the title tags, insert this line of code:</p>
<p>&lt;meta http-equiv=”Refresh” content=”5; URL=http://www.whitesandsdigital.com”&gt;</p>
<p>What this tells the browser to do is a refresh on the content in 5 seconds for the page http://www.whitesandsdigital.com. This is the heart of our redirect, and does all the work for us. When a visiter comes to this page he/she will wait for 5 seconds after the page loads, then be transfered to the White Sands website. You can change the amount of time to anything you want, but I wouldn’t reccomend anything more then 5 seconds.</p>
<p>Now we have a problem though. What if the visiter is using a browser that doesn’t support these kinds or redirects? The simple answer is that we’ll have to provide a simple html link for them. Lets put in a nice little formatted message in a table within the body tags.</p>
<p><span style="color: #008000;">&lt;table align=”center” width=”100%” height=”100%” cellspacing=”0? cellpadding=”0? border=”0?&gt;<br />
&lt;tr&gt;<br />
&lt;td width=”100%” align=”center”&gt;<br />
&lt;font face=”Arial,Helvetica,sans-serif”&gt;<br />
&lt;p&gt;Welcome to White Sands Digital.”&lt;/p&gt;<br />
&lt;a href=”http://www.whitesandsdigital.com/wordpress/index.php” mce_href=”http://www.whitesandsdigital.com/wordpress/index.php”&gt;Click here if the page doesn’t load in 5 Seconds&lt;/a&gt;<br />
&lt;br&gt;<br />
&lt;/font&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</span></p>
<p>Thats it. Now we have a mesage and text link in the middle of a standard redirect page for a website. Of course you can style this any way you like with an image or even flash or even Javascripts. It’s best thought to remember to keep the page as small as possible. Here’s the complete code:</p>
<p><span style="color: #008000;">&lt;!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”&gt;&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;HTML Redirect Tutorial&lt;/title&gt;</span></p>
<p><span style="color: #008000;">&lt;meta http-equiv=”Refresh” content=”5; URL=http://www.whitesandsdigital.com”&gt;</span></p>
<p><span style="color: #008000;">&lt;/head&gt;</span></p>
<p><span style="color: #008000;">&lt;body bgcolor=”#FFFFFF” text=”#000000? link=”#0000FF” vlink=”#0000FF” alink=”#0000FF”&gt;</span></p>
<p><span style="color: #008000;">&lt;table align=”center” width=”100%” height=”100%” cellspacing=”0? cellpadding=”0? border=”0?&gt;<br />
&lt;tr&gt;<br />
&lt;td width=”100%” align=”center”&gt;<br />
&lt;font face=”Arial,Helvetica,sans-serif”&gt;<br />
&lt;p&gt;Welcome to White Sands Digital.”&lt;/p&gt;<br />
&lt;a href=”http://www.whitesandsdigital.com/wordpress/index.php” mce_href=”http://www.whitesandsdigital.com/wordpress/index.php”&gt;Click here if the page doesn’t load in 5 Seconds&lt;/a&gt;<br />
&lt;br&gt;<br />
&lt;/font&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</span></p>
<p><span style="color: #008000;"><br />
&lt;/body&gt;<br />
&lt;/html&gt;</span></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=ecba51c8-6d57-4777-bbce-6002d3e845e6" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/html-redirect-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010 PE Qualification in Birmingham</title>
		<link>http://bryankichler.com/2010/07/2010-pe-qualification-in-birmingham/</link>
		<comments>http://bryankichler.com/2010/07/2010-pe-qualification-in-birmingham/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 18:31:33 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Gas Pipeline Safety]]></category>
		<category><![CDATA[Pipe Qualification]]></category>
		<category><![CDATA[Birmingham]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=608</guid>
		<description><![CDATA[Here are a few pictures from one of my PE Qualification classes in Birmingham. We usually have four every year in Birmingham with between 60-80 attendees. Mostly local contractors.]]></description>
			<content:encoded><![CDATA[<p><p style="text-align:center;">
              <iframe width="403px" height="403px" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" name="smooth_frame_2007216421" src="http://bryankichler.com/wp-content/plugins/nextgen-smooth-gallery/nggSmoothFrame.php?galleryID=4&width=400&height=400&timed=&showArrows=1&showCarousel=1&embedLinks=1&delay=9000&defaultTransition=fade&showInfopane=1&textShowCarousel=Pictures&showCarouselOpen=1&margin=&align="></iframe>
            </p></p>
<p>Here are a few pictures from one of my PE Qualification classes in Birmingham. We usually have four every year in Birmingham with between 60-80 attendees. Mostly local contractors.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/2010-pe-qualification-in-birmingham/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginner HTML Table Tutorial</title>
		<link>http://bryankichler.com/2010/07/beginner-html-table-tutorial/</link>
		<comments>http://bryankichler.com/2010/07/beginner-html-table-tutorial/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 17:31:33 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=577</guid>
		<description><![CDATA[HTML tables are one of the basic HTML elements that have been around long before CSS came into the web scene. Some of us older webmasters still prefer some of the benefits of table designs over CSS even today, and even if CSS has taken over much of the web layout scene, most data will [...]]]></description>
			<content:encoded><![CDATA[<p>HTML tables are one of the basic HTML elements that have been around long before CSS came into the web scene. Some of us older webmasters still prefer some of the benefits of table designs over CSS even today, and even if CSS has taken over much of the web layout scene, most data will still be presented in tables for some time to come.</p>
<p><span id="more-577"></span></p>
<p>Tables are supported by just about every browser available today except, possibly, some small device browsers. These devices sometimes ignore tables simply to make sites more accessible on the small screen real estate available. You will also find that some browsers handle tables differently, and I will mention some of these issues as we come to them. So it&#8217;s important to test your tables in a number of browsers and devices before implementing your design.</p>
<p>There are three primary tags in tables.</p>
<p>1. The &lt;Table&gt; tag. This is the container tag for the table itself. It controls the main table blocks position, style, and boundries.</p>
<p>2. The &lt;tr&gt; tag. This is the table rule tag. Basically this controls the horizontal rules found in each table.</p>
<p>3. The &lt;td&gt; tag. This is the table display tag. It is where we&#8217;ll put all of our data in the table. I refer to these as &#8220;cells&#8221; rather then displays since it sounds more appropriate in my opinion.</p>
<p>Now that we have our three main elements, lets look at some example code:</p>
<p><em>&lt;table align=&#8221;center&#8221; border=&#8221;1&#8243; height=&#8221;400&#8243; width=&#8221;400&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</em></p>
<p>Here we have our table wrapper with some basic properties set. Since the table we&#8217;re working with will displayed in this post I have aligned it to the center of the screen, set its border to 1 so you can see it, and have givin it a width and height of 400 pixels. Inside the main table tags I put two rules, which will display two horizontal lines of cells. Inside each rule I have placed two cells. So we&#8217;ll have four cells in all.</p>
<p>It is important to remember that tables are semi-rigid creatures in that the height and width of the largest cell in the rule sets the height and width for all the others. We&#8217;ll get into this in a bit so don&#8217;t worry if you don&#8217;t understand. If I hadn&#8217;t have specified a height and width the table either wouldn&#8217;t shown up in your browser, or would just show up as a dot. This block of code creates the table you see below.</p>
<table style="height: 400px;" border="1" width="400" align="center">
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p>As you can see, we now have a table with a height and width of 400 pixels containing two rules of two cells. When your browser renders this code it automatically divides the space evenly between the cells unless otherwise specified. By default, all items added to a table cell are aligned to the left and vertically to the center. Even if a tables dimensions are specified they will stretch if more data is put into them then they can contain. Take a look at the table below:</p>
<table style="height: 400px;" border="1" width="400" align="center">
<tbody>
<tr>
<td>this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test</td>
<td>test</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p>Notice how the table handled the text I placed into the cells. With no defined width the cell on the right expanded to the right until it took up as much space as it could without breaking the 400 pixel width property we placed in the table tag. It should also be noted the the entire table expanded vertically to accommodate the amount of text that I placed inside one of the cells. Finally, notice that the vertical and cells are aligned regardless of their contents. This is the semi-ridged part of the table that I mentioned before.</p>
<p>Now that we have a basic table lets make it a little more useable.</p>
<p><em>&lt;table align=&#8221;center&#8221; bgcolor=&#8221;#EDF7FE&#8221; border=&#8221;1&#8243; cellpadding=&#8221;10&#8243; height=&#8221;400&#8243; width=&#8221;400&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td bgcolor=&#8221;#ffffff&#8221; width=&#8221;150&#8243;&gt;&lt;/td&gt;<br />
&lt;td width=&#8221;250&#8243;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td width=&#8221;100&#8243;&gt;&lt;/td&gt;<br />
&lt;td valign=&#8221;top&#8221; width=&#8221;300&#8243;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</em></p>
<p>Now lets look at our table:</p>
<table style="height: 400px;" border="1" cellpadding="10" width="400" align="center" bgcolor="#edf7fe">
<tbody>
<tr>
<td width="150" bgcolor="#ffffff">This is a test this is a test</td>
<td width="250"></td>
</tr>
<tr>
<td width="100"></td>
<td width="300" valign="top">This is a test</td>
</tr>
</tbody>
</table>
<p>You&#8217;ll notice that we made several very important changes here. First of all we added the background property to the main table tag. This sets the color for the entire table unless it is overridden under either the &lt;tr&gt; or &lt;td&gt; tags. I changed the color of the first cell by setting its background as white. This overrides the light blue color I set for the rest of the table.</p>
<p>Secondly you&#8217;ll notice that I changed the cellpadding property of the table tag. Cell padding is the space from the cell walls to the text. All text entered into our tables cells now will show up 10 pixels from the cells edges. I should note here that all browsers I have personally tested handle this exactly the same except Microsoft&#8217;s Internet Explorer, which adds extra padding by default in some of its versions. Remember this when doing some really precise work.</p>
<p>You&#8217;ll also note that I set the &#8220;valign&#8221; property in the forth cell to &#8220;top&#8221;. This simply aligns the texts&#8217; vertical position to the top of the cell. You could also set it to bottom if you wanted.</p>
<p>Finally, and most importantly, you&#8217;ll notice that I set the width of all four cells. I did this so that you can understand a little better the rigid nature, and the reason a lot of people hate, tables. In the first cell the width was set to 150 pixels, and in the second cell I set the width to 250 pixels. However I set the third and forth cells differently. The reason for this is to show you that when setting the width of your cells. It&#8217;s only important to set the width property of the topmost cell. All the other cells, regardless of what you set their width property as, will align to the highest cell that contains a width. The same can be said for height, however the table will still naturally expand to accommodate the data you put into it.</p>
<p>That&#8217;s it for this tutorial. Tables can be complex if you don&#8217;t understand their idiosyncrasy, however they can be powerful tools in the right situations. The best way to get familure with them is to try different things, and test them with different web browsers. I&#8217;ll cover some of the more advanced features of tables, and even how to apply CSS to them at a later date. Until then I hope you found this helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/beginner-html-table-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Illustrator Ladybug Tutorial Part 3 &#8211; Usage</title>
		<link>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-3-usage/</link>
		<comments>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-3-usage/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 17:25:45 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Arts]]></category>
		<category><![CDATA[Drawing]]></category>
		<category><![CDATA[Flower]]></category>
		<category><![CDATA[Insect]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=536</guid>
		<description><![CDATA[Introduction Like I promised this is the third, and final, part to our ladybug tutorial. If you want to read up on how to make your own ladybug you can get to the first two parts of the tutorial above. As with my tutorials before, I want to give some usage examples for the subject [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://designermill.com/wp-content/uploads/2008/07/robo_bug.png"><img class="alignleft" title="robo_bug" src="http://designermill.com/wp-content/uploads/2008/07/robo_bug-300x239.png" alt="" width="216" height="172" /></a></p>
<p><strong>Introduction</strong></p>
<p>Like I promised this is the third, and final, part to our ladybug tutorial. If you want to read up on how to make your own ladybug you can get to the first two parts of the tutorial above. As with my tutorials before, I want to give some usage examples for the subject of our tutorial. Those wonderful lipid munching ladybugs. Here we go.</p>
<p><span id="more-536"></span></p>
<p>My first example uses the ladybug directly as you see it in the tutorial. This is a simple example tri-fold flier from an imaginary flower shop. I made this flier using the my <a href="http://designermill.com/2008/04/17/adobe-illustrator-floral-tutorial/">Floral</a>, <a href="http://designermill.com/2008/06/13/illustrator-floral-vine-tutorial/">Vine</a>, <a href="http://designermill.com/2008/06/03/adobe-illustrator-tutorial-how-to-draw-a-simple-daisy/">Flower</a>, and of course <a href="http://designermill.com/2008/07/08/adobe-illustrator-ladybug-tutorial-part-1/">Ladybug </a>tutorials for a combined effect. I like these fliers because their simple, cost effective, and straight to the point. This by the way was not done in Indesign. Illustrator can do just as good a job making fliers like these if you use your head a  little when your setting up your drawing.</p>
<p style="text-align: center;"><a href="http://designermill.com/wp-content/uploads/2008/07/bug_hand_out.png"><img class="size-medium wp-image-1970" title="bug_hand_out" src="http://designermill.com/wp-content/uploads/2008/07/bug_hand_out-300x231.png" alt="" width="300" height="231" /></a></p>
<p>My next example is the illustrated ladybug. This takes our drawing, removes the gradients, and applies a simple charcoal stroke. Simple, but the effect is something your likely to see in a lot of children&#8217;s books. I&#8217;ll give you a hint; this is how a lot of children books are illustrated. Bright colors, solid fills, and the warm feeling of hand drawn sketches will probably remain in children&#8217;s books for a very long time to come.</p>
<p style="text-align: center;"><a href="http://designermill.com/wp-content/uploads/2008/07/ill_bug1.png"><img class="size-medium wp-image-1967" title="ill_bug1" src="http://designermill.com/wp-content/uploads/2008/07/ill_bug1-250x300.png" alt="" width="250" height="300" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Now what if you want to have a more antique china feel. Take your ladybug from the tutorial. First make a copy of your ladybug, then apply a gaussam blur to the original, and set the stoke to transparent. Now paste your copy over the original, and remove it&#8217;s fill. Instant china plate lady bug.</p>
<p style="text-align: center;"><a href="http://designermill.com/wp-content/uploads/2008/07/antique_bug.png"><img class="size-medium wp-image-1968" title="antique_bug" src="http://designermill.com/wp-content/uploads/2008/07/antique_bug-275x300.png" alt="" width="275" height="300" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Well we now have antique bugs, and old china bugs, what about modern robotic bugs? Change some colors around, apply a stroke and curl to your antennas, and your ready to go. Robo ladybug all ready for your metallic theme.</p>
<p style="text-align: center;"><a href="http://designermill.com/wp-content/uploads/2008/07/robo_bug.png"><img class="size-medium wp-image-1969" title="robo_bug" src="http://designermill.com/wp-content/uploads/2008/07/robo_bug-300x239.png" alt="" width="300" height="239" /></a></p>
<p style="text-align: left;">Well that&#8217;s all my examples for this portion of the tutorial, but this barely touches the ideas I had. I hope you enjoyed the tutorial, and thanks for reading.</p>
<p style="text-align: left;">
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=e8750594-4fb5-4257-af60-b0b1655bf747" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-3-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Illustrator Ladybug Tutorial Part 2</title>
		<link>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-2/</link>
		<comments>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-2/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 17:06:46 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Arts and Entertainment]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Drawing]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Stroke]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=507</guid>
		<description><![CDATA[Introduction This is the second part of our ladybug tutorial. We have already laid out the ladybug&#8217;s body in the first part of this tutorial. We will be using that as our foundation for our second part. We still have a lot of work to do so, take your time as you walk through this [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://bryankichler.com/wp-content/uploads/2010/07/finished-bug-249x3001.gif"><img class="alignleft size-thumbnail wp-image-534" title="finished-bug-249x300" src="http://bryankichler.com/wp-content/uploads/2010/07/finished-bug-249x3001-150x150.gif" alt="" width="150" height="150" /></a>Introduction</strong></p>
<p>This is the second part of our ladybug tutorial. We have already laid out the ladybug&#8217;s body in the first part of this tutorial. We will be using that as our foundation for our second part. We still have a lot of work to do so, take your time as you walk through this part. I&#8217;ll try to explain it as clearly as I can, hopefully, without losing you. If you missed the first tutorial, you can click the link above to read it.</p>
<p><span id="more-507"></span></p>
<p><strong>Part 2 &#8211; Finishing Out Our Ladybug<img src="http://designermill.com/wp-content/uploads/2008/07/ellipse6-1.gif" alt="ellipse6" hspace="10" vspace="10" width="167" height="269" align="right" /></strong></p>
<p>Open up the ladybug body we completed in the first tutorial. It should look something like the picture you see here. To finish our ladybug out we need to give it some eyes, antenna, and legs. It might not sound like much, but this is going to be the larger portion of this tutorial. So lets get to work.</p>
<p><strong>The Eyes &#8230;</strong></p>
<p>The first thing I want to add is the eyes, so set <img src="http://designermill.com/wp-content/uploads/2008/07/eyes1.gif" alt="eyes1" hspace="10" vspace="10" width="91" height="105" align="left" />your fill color to white and stroke to black. Select the <img src="http://designermill.com/wp-content/uploads/2008/07/ellipse-tool-2.gif" alt="ellipse tool" hspace="10" vspace="10" width="236" height="64" align="right" /><strong>Ellipse Tool</strong> from the Tool Pallet, and draw a small ellipse like the one you see here. Now use your <strong>Selection Tool</strong> from the Tool Pallet to drag the ellipse over the head to make the white part of the eye. Resize it using the grips if you need to make it smaller, or change it&#8217;s shape.</p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/eyes2.gif" alt="eyes2" hspace="10" vspace="10" width="169" height="109" align="right" /></p>
<p>Once you have the eye the right size and shape you want, select it and make a copy by using <strong>CTRL</strong> + <strong>C</strong>. Now paste the new copy of the eye over the other using <strong>CTRL</strong> + <strong>F</strong>. While holding down the <strong>Shift</strong> key, drag the new eye to the other side of the head. Holding the <strong>Shift</strong> key will allow you to drag the eye without changing it&#8217;s relative vertical position to the other eye. This will keep them perfectly even vertically. For this tutorial we won&#8217;t worry about exact mirroring horizontally.</p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/dot.gif" alt="dot" hspace="10" vspace="10" width="90" height="77" align="left" />Now it&#8217;s time we make the pupils. Set your fill to black, and select the <strong>Ellipse Tool</strong> again from the Tool Pallet. Draw a small black circle on the screen by holding down the <strong>Shift</strong> key while drawing will make the circle perfectly round. Drag the new <img src="http://designermill.com/wp-content/uploads/2008/07/eyes3.gif" alt="eyes3" hspace="10" vspace="10" width="172" height="109" align="right" />circle over the eyes we just placed. Make a copy of the pupil just like you did with the eye. Paste the new pupil over the old one with <strong>CTRL</strong> + <strong>F</strong>, and use the <strong>Shift</strong> key once again while dragging the pupil to the opposite eye. When your finished your picture should now look more like this one.</p>
<p><strong>On to The Shell</strong></p>
<p>As you can tell from the picture above I got a little ahead of myself while I was taking screen shots. So lets get caught up. Select your <strong>Line<img src="http://designermill.com/wp-content/uploads/2008/07/line-tool.gif" alt="line tool" hspace="10" vspace="10" width="182" height="83" align="right" /> Tool</strong> from the Tool Pallet. We want to draw a single line from the bottom center of the red shell, to the top center. Select the top most quadrant of the shell and drag down until you reach the bottom most quadrant. Once again to can use the <strong>Shift</strong> key to draw a perfectly straight line spitting the shell into two equal parts. Once you finish well move onto the spots.</p>
<p>The spots are relatively easy. All we need to do is make some copies of our pupil like before and paste them, however we like, on the shell. Pick your <strong>Selection Tool</strong>, and select one of the pupils we drew before. Once you have selected your pupil, copy it by using <strong>CTRL</strong>+ <strong>C</strong>. Since we don&#8217;t need to place our spots in any particular place, just use <strong>CTRL</strong> + <strong>P</strong> to paste the spots on the screen. Position the spots on one side of the shell in the desired locations. Why on one side you ask. Well we are going to cheat my mirroring our spots by using the <strong>Reflect</strong> command.</p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/reflect-dots.gif" alt="reflect dots" hspace="10" vspace="10" width="400" height="269" /></p>
<p>Once you have your spots where you want them, hold down the shift key while using the <strong>Selection Tool</strong> to select all of the dots. Now right click on the screen and select <strong>Transform</strong> -&gt; <strong>Reflect</strong>. You should now see a highlighted mirror image of the spots you first selected. Now hold down the <strong>Shift</strong> key again, and drag your spots onto the opposite side of the shell using the <strong>Selection Tool</strong>.</p>
<p><strong>The Antenna &#8230;</strong></p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/arc.gif" alt="arc" hspace="10" vspace="10" width="150" height="93" align="left" /></p>
<p>Now that our ladybug is starting to look more like a bug then a red blob, it&#8217;s time to add our antenna. Select the <strong>Arc Tool</strong>. From the Tool Pallet and drag an arc somewhere on the open space of the screen. <img src="http://designermill.com/wp-content/uploads/2008/07/arc-tool.gif" alt="arc tool" hspace="10" vspace="10" width="180" height="65" align="right" />Anywhere is fine, since we are going to use it not only for our antenna, but also our legs later. Select the <strong>Selection Tool</strong> on the Tool Pallet, and select your new arc. Make a <img src="http://designermill.com/wp-content/uploads/2008/07/ant1.gif" alt="ant1" hspace="10" vspace="10" width="164" height="161" align="right" />copy of your arc using <strong>CTRL</strong>+ <strong>C</strong> and paste a new copy on the screen using <strong>CTRL</strong>+ <strong>P</strong>. Using the grips rotate and scale your arc until it looks something like an antenna, and drag it over the head. Now use <strong>CTRL</strong> + <strong>C</strong> again to make a copy of your new antenna, then <strong>CTRL</strong> + <strong>F</strong> to paste a new one over it. Right click on the screen and select <strong>Transform</strong> -&gt; <strong>Reflect</strong> to make a mirror image of it. Finally drag the new reflected Antenna to the opposite side of the head.</p>
<p>Once you have finished your antenna, it&#8217;s time to add the little balls at <img src="http://designermill.com/wp-content/uploads/2008/07/ant2.gif" alt="ant2" hspace="10" vspace="10" width="206" height="181" align="right" />the end. This is of course a matter of preference. If you don&#8217;t like balls at the end of your antenna, you can skip this step. To add them, select one of your pupils or spots using the <strong>Selection Tool</strong>, and make a copy using <strong>CTRL</strong> + <strong>C</strong> Paste two new black circles on the the screen using <strong>CTRL + V</strong>. Now drag the two new copies over the ends of the antenna. That&#8217;s all nothing more to see here.</p>
<p><strong>Finally, The Legs &#8230;</strong></p>
<p>Here is where leaving our original arc on the screens going to pay off. Select the original arc you drew on the screen, and make two more copies of it. You should remember how by now. If it looks like my original above, you won&#8217;t even have to make any changes to them. Drag the three arcs to one side of the body spacing them equal distance apart vertically. You may want the front legs to stick out further then the rear ones. Don&#8217;t worry if they cover your image. You just don&#8217;t want your legs to stick out the other side.</p>
<p>Now for the other side. Using the <strong>Selection Tool</strong> drag over all three of the newly positioned legs so that all three are selected. Now you want to use the <strong>Transform</strong> -&gt; <strong>Reflect</strong> command to mirror those legs like we did the spots. Drag the mirrored legs to the opposite side of the body while holding the <strong>Shift</strong> key.</p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/legs-to-back.gif" alt="legs to back" hspace="10" vspace="10" width="400" height="309" /></p>
<p>Now that our legs are in position, we need to hide the excess under the body. Select all six legs using the <strong>Selection Tool</strong>, and right click on the screen. Use the command <strong>Arrange</strong> -&gt; <strong>Send to Back</strong> to send the legs to the bottom of the drawing order. Thus hiding them under the body so that we only see what is sticking out. It&#8217;s just that simple.</p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/finished-bug.gif" alt="finished bug" hspace="10" vspace="10" width="250" height="301" /></p>
<p>Depending on your drawing size you may want to change the stroke of <img src="http://designermill.com/wp-content/uploads/2008/07/stroke3.gif" alt="stroke3" hspace="10" vspace="10" width="221" height="53" align="right" />your legs. Use the <strong>Stroke</strong> window to play around with different leg widths, and caps, till you find what style your looking for if your not happy with the basic legs. I&#8217;m just going to go with the default cap here, and increase the &#8220;Weight&#8221; to 3pt instead of the default 1pt.</p>
<p><strong>A Little Style &#8230;</strong></p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/gradient.gif" alt="gradient" hspace="10" vspace="10" width="232" height="125" align="right" />That&#8217;s it for the drawing portion of this tutorial. However, you could go one step further to really make your ladybug stand out. Use your <strong>Selection Tool</strong> and select the ladybugs shell, then go to the <strong>Gradient</strong> window. Under &#8220;Type&#8221; select &#8220;Radial&#8221;. Your shell will now become a radial gradient. I filled my shell with a mid to deep red as shown here. Use the Gradient Tool from the Tool Pallet to adjust the intensity, and amount of gradient you want. I won&#8217;t go into using the Gradient Tool here, because simply, I could write a whole tutorial on just using it. Play around with it, and you will understand it&#8217;s usage very quickly though. Here is my finished product:</p>
<p><a href="http://bryankichler.com/wp-content/uploads/2010/07/finished-bug.gif"><img class="alignleft size-full wp-image-533" title="finished-bug" src="http://bryankichler.com/wp-content/uploads/2010/07/finished-bug.gif" alt="" width="250" height="301" /></a></p>
<p>Wow! &#8230; Finally finished! A lot of work for such a little critter hugh? Since this installment is quite long, I&#8217;ll bring you some usage examples in a third, and final, installment. So, until next time. Thanks for reading.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=6cab050c-80a1-46cf-a997-ea1738200d48" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Illustrator Ladybug Tutorial Part 1</title>
		<link>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-1/</link>
		<comments>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-1/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 16:56:02 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Adobe Creative Suite]]></category>
		<category><![CDATA[Adobe Illustrator]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Drawing]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Vector Based]]></category>

		<guid isPermaLink="false">http://bryankichler.com/?p=480</guid>
		<description><![CDATA[Introduction This tutorial will teach you how to draw your very own ladybug using Adobe Illustrator 9.0, CS, CS2, or CS3. This tutorial is rather simple in terms of drawing, but contains a good number of concepts and ideas you will find useful in future, more complex, drawings. The entire tutorial should not take more [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 15px;" src="http://designermill.com/wp-content/uploads/2008/07/finiahed.gif" alt="finiahed" hspace="15" vspace="15" width="152" height="184" align="right" /><strong>Introduction</strong></p>
<p>This tutorial will teach you how to draw your very own ladybug using Adobe Illustrator 9.0, CS, CS2, or CS3. This tutorial is rather simple in terms of drawing, but contains a good number of concepts and ideas you will find useful in future, more complex, drawings. The entire tutorial should not take more then one to two hours for most people to complete. The entire drawing took me only 10 minutes to create with the screen shots for the tutorial. Of course the entire tutorial took a few hours to write.</p>
<p><span id="more-480"></span></p>
<p>Although drawing a ladybug is easy, it requires quite a few steps, so I&#8217;m going to split this tutorial up so that our more bandwidth deprived friends can enjoy reading it. This should also make the tutorial a little more legible also. I would like to hear your thoughts on improving this, and my other tutorials, as you read along. Let&#8217;s get started.</p>
<p><strong>Part 1 &#8211; The Main Body</strong></p>
<p>First we want to open illustrator, and start a blank drawing. Once again, any size is fine. I&#8217;m using an 800&#215;800 pixel layout for this drawing if <img src="http://designermill.com/wp-content/uploads/2008/07/fill-black.gif" alt="fill black" hspace="15" vspace="15" width="116" height="77" align="right" />your dead set on following along exactly as we progress. Set your <strong>Fill</strong> to white and your <strong>Stroke</strong> to Black. This will make it easier to work with our shapes.</p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/ellipse-tool-1.gif" alt="ellipse tool" hspace="15" vspace="15" width="236" height="64" align="left" />Now let&#8217;s start by selecting the <strong>Ellipse Tool</strong> from the tool pallet, and draw an ellipse on the screen.<img src="http://designermill.com/wp-content/uploads/2008/07/ellipse2-2.gif" alt="ellipse2" hspace="15" vspace="15" width="120" height="218" align="right" /> This ellipse will be the main body of our ladybug. For the head we need to draw a second ellipse slightly smaller and below the first. Notice that my second ellipse is near half the size of the larger one. You should see what I have here. Don&#8217;t worry if your ladybug body looks more like a Junebug. We will fix this later.</p>
<p>If your ellipses do not line up correctly you can use the <strong>Align to Center</strong> tool in the <strong>Align Window Pallet</strong>.<img src="http://designermill.com/wp-content/uploads/2008/07/align-pallet.gif" alt="align pallet" hspace="15" vspace="15" width="244" height="137" align="left" /> If you don&#8217;t see it on your screen, you can access it using the <strong>Window</strong> pull down menu. Just drag a window over both ellipses and select the second button on the <strong>Align Window Pallet</strong>. You will see your ellipses align to each other on your screen. Now that your ellipses are all lined up it is time to move on.</p>
<p>You may be asking why I drew the head second instead of first. I had originally, then I thought, it <img src="http://designermill.com/wp-content/uploads/2008/07/send-to-back-tool-1.gif" alt="send to back tool" hspace="15" vspace="15" width="300" height="250" align="left" />would be really good to mention the <strong>Send to Back</strong> command since life is not always easy. You never know when you will need to use it, and as long as you draw in illustrator, you will use it a lot. So select your smaller ellipse, right click on the screen, and select <strong>Arrange</strong>-&gt;<strong>Send to Back</strong>. You should now see the smaller ellipse behind the larger one.</p>
<p>Now we need to do something about that Junebug look we have going on. Select the larger ellipse again. We are going to make a quick and simple change to the shape of our<img src="http://designermill.com/wp-content/uploads/2008/07/delete-anchor-tool.gif" alt="delete anchor tool" hspace="15" vspace="15" width="177" height="71" align="right" /> larger ellipse by removing the lowest anchor point. Select the <strong>Delete Anchor Point Tool</strong> from the Tool Pallet. You should see four anchor points now on the quadrants of the larger ellipse. Select the lowest quadrant to remove the anchor. Don&#8217;t change any other features. Just removing this one point is enough to get the effect we want. When your finished you should see Something like the figure below.</p>
<p><img src="http://designermill.com/wp-content/uploads/2008/07/ellipse4-2.gif" alt="ellipse4" hspace="15" vspace="15" width="200" height="289" align="right" /></p>
<p>Now that we have a good idea as to how our ladybug body is shaping up, it&#8217;s time to make some minor adjustments to the height and width to get our proportions correct before going further. Select your <strong>Selection Tool</strong> from the Tool Pallet. Select both ellipses by drawing a window over them. Using the grips, transform your junebug looking ladybug into a ladybug looking ladybug. Mine is a little long for a ladybug, so I&#8217;m going to make her a tad shorter, but otherwise I am happy with the shape. If you distort your ladybug a little too much use the <strong>Edit</strong> -&gt; <strong>Undo</strong> command from the File Menu to restore your image.</p>
<p>Finally for this portion of the tutorial we need to apply a little color to our main body. I&#8217;m going to make my larger ellipse the traditional <img src="http://designermill.com/wp-content/uploads/2008/07/ellipse6.gif" alt="ellipse6" hspace="15" vspace="15" width="167" height="269" align="left" />ladybug red, and the smaller ellipse, or head, black. Select the shape you want to colorize, then select the color you want by double clicking on the <strong>Fill</strong> square in the Tool Pallet.</p>
<p>Here&#8217;s the finished product for the first part of the tutorial. Next time we will start applying various body features to our little bugs.</p>
<p>Thanks for reading. The second portion of this tutorial will be coming shortly.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=507ff47a-dc4f-4235-b950-109869eaa2e3" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://bryankichler.com/2010/07/adobe-illustrator-ladybug-tutorial-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
