<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.5" -->
<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/"
	>

<channel>
	<title>Tutorial Zoom</title>
	<link>http://www.tutorialzoom.com</link>
	<description>Tutorials that Cover Everything from AJAX to XHTML</description>
	<pubDate>Sat, 06 Jan 2007 06:31:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>
	<language>en</language>
			<item>
		<title>WordPress Tips: Remove Duplicate Content</title>
		<link>http://www.tutorialzoom.com/2007/wordpress-tips-remove-duplicate-content/</link>
		<comments>http://www.tutorialzoom.com/2007/wordpress-tips-remove-duplicate-content/#comments</comments>
		<pubDate>Sat, 06 Jan 2007 06:31:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category>WordPress</category>

		<category>SEO</category>

		<guid isPermaLink="false">http://www.tutorialzoom.com/2007/wordpress-tips-remove-duplicate-content/</guid>
		<description><![CDATA[WordPress is a great blog tool, and it is very versatile, but one thing it does is create many pages of duplicate content. Duplicate content can be seen by search engines like Google as a bad thing, and they will basically "subtract points" from your site, and position your content lower in the search engine [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wordpress.org">WordPress</a> is a great blog tool, and it is very versatile, but one thing it does is create many pages of duplicate content. Duplicate content can be seen by search engines like Google as a bad thing, and they will basically "subtract points" from your site, and position your content lower in the search engine results.</p>
<p>You can fix this problem in WordPress though using one or both simple methods listed below. I currently prefer the second method which does not rely on a plug-in or on search engines actually following NOINDEX rules.</p>
<h3>WordPress Plug-in</h3>
<p>Over on <a href="http://wpseo.com/wordpress-plugin-to-prevent-duplicate-content-penalty_47.htm">WPSEO.com</a> there is a plug-in for WordPress that unlike my example below, doesn't change the display of your blog content at all, but instead informs search engines on where to find your content, blocking them from all other places it might be repeated.</p>
<blockquote><p>"DupPrevent Plugin controls NOINDEX meta tags to prevent duplicate content penalty. Additionally the plugin includes robots.txt file to disallow search engines to spider feeds, trackbacks and the wp- directories."</p></blockquote>
<p><strong>Installation</strong></p>
<p>   1. Download DupPrevent.zip.<br />
   2. Extract dup-prevent.php and robots.txt from the DupPrevent.zip.<br />
   3. Upload dup-prevent.php to your wp-content/plugins directory and activate it.<br />
   4. Upload robots.txt to your site’s root directory. You should be able to see the file by going to http://yoursite.com/robots.txt</p>
<p>The plugin is for WordPress 2.0 and higher. No word yet on if it also works with the upcoming WordPress 2.1.</p>
<h3>Template Code Changes</h3>
<p>One of the best tips I ever got from <a href="http://www.seoegghead.com/">Jaimie Sirovich of SEO Egghead</a> was to make sure that the full text of my posts only appeared on the index page and when looking at the single post, and making sure everything else was no more than an excerpt. Excerpts are short summaries of posts and are much less likely to cause any negative search engine effects, thus allowing your single posts to rank higher on search engines like Yahoo and Google.</p>
<p><strong>Here is how I did it:</strong><br />
Take the below code and put it in your theme's <em>index.php</em> file replacing something that will probably look like:</p>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-3">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div <span style="color:#000000; font-weight:bold;">class</span>=<span style="color:#FF0000;">"postentry"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color:#000000; font-weight:bold;">&lt;?php</span> the_content<span style="color:#006600; font-weight:bold;">&#40;</span>__<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'Read the rest of this entry &amp;raquo;'</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>With this:</p>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-4">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div <span style="color:#000000; font-weight:bold;">class</span>=<span style="color:#FF0000;">"postentry"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?</span> <span style="color:#616100;">if</span> <span style="color:#006600; font-weight:bold;">&#40;</span>is_home<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> &amp;&amp; <span style="color:#006600; font-weight:bold;">&#40;</span>!<span style="color:#0000FF;">$paged</span> || <span style="color:#0000FF;">$paged</span> == <span style="color:#CC66CC;color:#800000;">1</span><span style="color:#006600; font-weight:bold;">&#41;</span> || is_search<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> || is_single<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> || is_page<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>: <span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color:#000000; font-weight:bold;">&lt;?php</span> the_content<span style="color:#006600; font-weight:bold;">&#40;</span>__<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'Read the rest of this entry &amp;raquo;'</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?</span> <span style="color:#616100;">else</span>: <span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color:#000000; font-weight:bold;">&lt;?php</span> the_excerpt<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?</span> <span style="color:#616100;">endif</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>This basically says, if we are on the home page, single post, single page, or search, show the full content, otherwise only show an excerpt. Some people like Jaimie Sirovich came up with their own PHP code to control how long the excerpts are, but I used the built-in WordPress function, and I recommend you do as well.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialzoom.com/2007/wordpress-tips-remove-duplicate-content/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Making Money from Advertising Online</title>
		<link>http://www.tutorialzoom.com/2007/making-money-from-advertising-online/</link>
		<comments>http://www.tutorialzoom.com/2007/making-money-from-advertising-online/#comments</comments>
		<pubDate>Tue, 02 Jan 2007 01:28:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category>Advertising</category>

		<guid isPermaLink="false">http://www.tutorialzoom.com/2007/making-money-from-advertising-online/</guid>
		<description><![CDATA[A friend of mine recently e-mailed me asking how he could monetize his site. I thought about it for a minute, and really I think it is the same for any website out there: someone is willing to pay to get their advertisement on your site, you just have to find them.
Advertising Services
I have had [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine recently e-mailed me asking how he could monetize his site. I thought about it for a minute, and really I think it is the same for any website out there: someone is willing to pay to get their advertisement on your site, you just have to find them.</p>
<h3>Advertising Services</h3>
<p>I have had some great success with <a href="http://www.text-link-ads.com">Text-Link-Ads</a>, though they only seem to really work on sites that are PR6 and above. You could still try them out though and see if in 2-3 months they start bringing in any money.</p>
<p><a href="http://www.google.com/adsense">Adsense</a> of course is ugly, and a bit annoying, but its easy to set up and does make some decent money if you make the colours look like your site, and set it up so the colours randomly shift slightly, thus drawing attention to the ad, and fighting ad blindness a bit.</p>
<p>You could also get an <a href="http://affiliate-program.amazon.com/gp/associates/join">Amazon Affiliates</a> account, and promote some great books that are already out. Every book sold off your site would make you a few pennies, but eventually it can add up to a few dollars a month. I wouldn't make it a primary focus, but it might be something worth investigating.</p>
<p>And then really, once you have Text-Link-Ads, Adsense, and Amazon Affiliates, its all about getting more links to your blog, and more traffic. Get that page rank to go up to 6 in the next update, and you should be able to bring in around $100+ a month just from Text-Link-Ads.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialzoom.com/2007/making-money-from-advertising-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introduction to PHP</title>
		<link>http://www.tutorialzoom.com/2007/introduction-to-php/</link>
		<comments>http://www.tutorialzoom.com/2007/introduction-to-php/#comments</comments>
		<pubDate>Tue, 02 Jan 2007 01:13:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category>PHP</category>

		<guid isPermaLink="false">http://www.tutorialzoom.com/2007/introduction-to-php/</guid>
		<description><![CDATA[PHP Basics
In this tutorial, you will be introduced to one of the simplest and most popular scripting languages in existence today, namely, PHP. You'll begin to learn some of what PHP can do for you, and be able to write some simple scripts.
So What's This PHP Thing, Anyway?
Thought you'd never ask. PHP is a recursive [...]]]></description>
			<content:encoded><![CDATA[<h3>PHP Basics</h3>
<p>In this tutorial, you will be introduced to one of the simplest and most popular scripting languages in existence today, namely, <a href="http://www.php.net">PHP</a>. You'll begin to learn some of what PHP can do for you, and be able to write some simple scripts.</p>
<h3>So What's This PHP Thing, Anyway?</h3>
<p>Thought you'd never ask. PHP is a recursive acronym standing for PHP: Hypertext Preprocessor. It actually once stood for Personal Home Pages, but the developers apparently decided it could be used for more than that.</p>
<p>What good is PHP, though? PHP is mostly used to develop web sites. In fact, PHP is one of the only languages that was specifically created for this purpose. Most other languages, including Perl, Python, and Ruby, require some web framework to enable developers to use those languages for web development. However, since PHP was specifically written for the web, it has a lot of useful features that come in handy for web development.</p>
<p>One of the major criticisms against PHP is that it is neither powerful nor scalable enough for writing larger web applications. However, with more businesses beginning to use PHP, and with PHP5 including more features common in such popular languages as Java, these criticisms are gradually being nullified. In addition, with PHP's shallow learning curve and simplicity in comparison with other languages, it is a natural choice for most web sites. Today, over 18,000,000 web sites are using PHP according to <a href="http://en.wikipedia.org/wiki/PHP">Wikipedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialzoom.com/2007/introduction-to-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Coding Div&#8217;s: ID Versus Class</title>
		<link>http://www.tutorialzoom.com/2006/coding-divs-id-versus-class/</link>
		<comments>http://www.tutorialzoom.com/2006/coding-divs-id-versus-class/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 23:41:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category>xHTML</category>

		<category>CSS</category>

		<guid isPermaLink="false">http://www.tutorialzoom.com/2006/coding-divs-id-versus-class/</guid>
		<description><![CDATA[When you first start learning xHTML and CSS you might notice that you can assign both ids and classes to divs and other items. What are the differences, and which ones should you be using? Well, that is what we are here to cover.
First Difference
Firstly, you have to understand that an id is supposed to [...]]]></description>
			<content:encoded><![CDATA[<p>When you first start learning xHTML and CSS you might notice that you can assign both ids and classes to divs and other items. What are the differences, and which ones should you be using? Well, that is what we are here to cover.</p>
<h3>First Difference</h3>
<p>Firstly, you have to understand that an id is supposed to only be used once on a page, while classes can be used multiple times. Usually when programming a page, I use ids for main elements like the header, footer, content area, among other things, while classes are used for items I know are going to repeat like having multiple news stories on a page. </p>
<h3>Second Difference</h3>
<p>Another important difference, and one that you might not come across, but can be frustrating if it happens to you, is that ids have priority over classes. </p>
<p>Say you have something like this:</p>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-11">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/style.html"><span style="color: #000000; font-weight: bold;">&lt;style</span></a> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">"text/css"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#blackid {color:#000;}</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">.redclass {color:#f00;}</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/style&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/body.html"><span style="color: #000000; font-weight: bold;">&lt;body&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">&lt;p</span></a> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">"blackid"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Some black text to show off the example<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/p&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">&lt;p</span></a> <span style="color: #000066;">class</span>=<span style="color: #ff0000;">"redclass"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Some red text via the class<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/p&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">&lt;p</span></a> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">"blackid"</span> <span style="color: #000066;">class</span>=<span style="color: #ff0000;">"redclass"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Black Text Again<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/p&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>You will get:<br />
<font color="black">Some black text to show off the example</font><br />
<font color="red">Some red text via the class</font><br />
<font color="black">Black Text Again</font></p>
<p>What happened? Well, in the first line, the id made sure the text became black, in the second line, the class made sure the text became red, and in the last line, the id which shouldn't have been used again, still was considered the priority, thus showing black text once again. <strong>*remember, ids are only to be used once on a page*</strong>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialzoom.com/2006/coding-divs-id-versus-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Create Black and White Images with Photoshop CS3</title>
		<link>http://www.tutorialzoom.com/2006/how-to-create-black-and-white-images-with-photoshop-cs3/</link>
		<comments>http://www.tutorialzoom.com/2006/how-to-create-black-and-white-images-with-photoshop-cs3/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 23:23:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category>Photoshop</category>

		<category>CS3</category>

		<guid isPermaLink="false">http://www.tutorialzoom.com/2006/how-to-create-black-and-white-images-with-photoshop-cs3/</guid>
		<description><![CDATA[In this tutorial I am going to show you how to create a black and white image in Photoshop CS3. This tutorial is created in Photoshop CS3 and it utilizes an adjustment layer in this version so it will not work in previous versions.
To start with we need an image that we are going to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>In this tutorial I am going to show you how to create a black and white image in Photoshop CS3. This tutorial is created in Photoshop CS3 and it utilizes an adjustment layer in this version so it will not work in previous versions.</strong></p>
<div style="color: #000; background: #fee; padding: 10px; margin: 10px; border-top: 2px solid #900; border-bottom: 2px solid #900;">To start with we need an image that we are going to change to black and white. The image that I am using in this tutorial can be found at <a href="http://www.sxc.hu/photo/411144">SXC.hu</a>.</div>
<h3>Step One</h3>
<p>Open up the image in to a new document. In my opinion it is best to work in full screen mode so hit F on the keyboard.</p>
<p><center><img src="http://www.tutorialzoom.com/wp-content/uploads/2006/12/fullscreen.gif" alt="Full Screen Start" /></center></p>
<h3>Step Two</h3>
<p>Now we have the document open and in full screen mode we want to get the black and white adjustment layer open. To do this go to <strong>Image -> Adjustments -> Black and White</strong>, or click on the layer adjustment icon in the layers pallet and select Black and White.</p>
<p><center><img src="http://www.tutorialzoom.com/wp-content/uploads/2006/12/adjustment.gif" alt="Adjustments" /></center></p>
<h3>Step Three</h3>
<p>Now the Black and White dialog box should be open. This is a new feature in Photoshop CS3 and is very welcome in my eyes.  The Black and White dialog box looks like this. </p>
<p><center><img src="http://www.tutorialzoom.com/wp-content/uploads/2006/12/bandw_dialouge.gif" alt="Dialog Box" /></center>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialzoom.com/2006/how-to-create-black-and-white-images-with-photoshop-cs3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gradient Filled Text</title>
		<link>http://www.tutorialzoom.com/2006/gradient-filled-text/</link>
		<comments>http://www.tutorialzoom.com/2006/gradient-filled-text/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 00:47:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category>Illustrator</category>

		<guid isPermaLink="false">http://www.tutorialzoom.com/2006/gradient-filled-text/</guid>
		<description><![CDATA[Overview: In this tutorial I am going to show you how to create gradient filled text inside of Adobe illustrator CS2.   
This tutorial is aimed at anyone wanting to get familiar with Adobe Illustrator CS2 but having trouble creating gradients, especially inside of text objects.
Special Font Used
The font that we using for this [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Overview:</strong> In this tutorial I am going to show you how to create gradient filled text inside of Adobe illustrator CS2.   </p>
<p>This tutorial is aimed at anyone wanting to get familiar with Adobe Illustrator CS2 but having trouble creating gradients, especially inside of text objects.</p>
<div style="color: #000; background: #fee; padding: 10px; margin: 10px; border-top: 2px solid #900; border-bottom: 2px solid #900;"><strong>Special Font Used</strong><br />
The font that we using for this tutorial is Hurshey and can be found at <a href="http://www.dafont.com/hursheys.font">Dafont</a> (http://www.dafont.com/hursheys.font).
</div>
<h3>Step One: Document Set-up</h3>
<p>To start off create a new document by using File -> New (or Ctrl+N). The size that we are using for this tutorial is 350px by 100px.</p>
<h3>Step Two: Typing</h3>
<p><a href="http://www.tutorialzoom.com/wp-content/uploads/2006/12/type_box.gif" rel="lightbox" title=""><img src="http://www.tutorialzoom.com/wp-content/uploads/2006/12/type_box.thumbnail.gif" width="128" height="53" alt="Type Box" style="float: right; margin: 5px;"/></a>Now that we have the document open and the right size select the type tool (press T on the keyboard.)</p>
<p>Drag an area large enough for us to type tutorials in a fairly large font. </p>
<h3>Step Three</h3>
<p>Now that we have the type bounding box double click inside of this. Type the name of the first word that you want to use; in this case we are typing <strong>"tutorial"</strong>.</p>
<h3>Step Four</h3>
<p>We have now written the text tutorial but the font is not the font that we want or the font size that we want. Drag over the text that we have wrote till it all is selected.</p>
<p><small>Page 2 is an advertisement, head on to page three to continue the tutorial...</small>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialzoom.com/2006/gradient-filled-text/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenDNS: Better Than Your Service Provider&#8217;s</title>
		<link>http://www.tutorialzoom.com/2006/opendns-better-than-your-service-providers/</link>
		<comments>http://www.tutorialzoom.com/2006/opendns-better-than-your-service-providers/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 00:09:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category>Internet Tips</category>

		<guid isPermaLink="false">http://www.tutorialzoom.com/2006/open-dns-better-than-your-service-providers/</guid>
		<description><![CDATA[What does DNS mean?
Domain Name Service or Domain Name Server is a program running on a server (specialized computer) that automatically translates domain names from english like "http://www.google.ca/" into their correct TCP/IP addresses, like 64.233.161.104. Try entering 64.223.161.104 into your address bar of your web browser, and you will see that it brings you to [...]]]></description>
			<content:encoded><![CDATA[<h3>What does DNS mean?</h3>
<p>Domain Name Service or Domain Name Server is a program running on a server (specialized computer) that automatically translates domain names from english like "http://www.google.ca/" into their correct TCP/IP addresses, like 64.233.161.104. Try entering 64.223.161.104 into your address bar of your web browser, and you will see that it brings you to Google. </p>
<p>Since it would be hard for us to remember those numbers, and computers only understand numbers, they need computers to translate between our easier to remember text, and the numerical address of the server the website is hosted on.</p>
<h3>What is OpenDNS?</h3>
<p><img src="http://www.tutorialzoom.com/wp-content/uploads/2006/12/opendns.jpg" alt="OpenDNS Website" style="float: right; margin: 5px;" /><a href="http://www.opendns.com">OpenDNS</a> is a <strong>free</strong> service, that converts the names we type in to the websites we want to visit. What is great about OpenDNS is that it is fast because they use more than one computer to convert the domain names, and can help to protect you from certain sites that might be trying to trick you like phishing sites that try to get your bank information or passwords.</p>
<h3>Why I changed to OpenDNS</h3>
<p>Recently, my Internet Service Provider, Rogers Cable, had a problem. I could load some sites, but not others. I quickly realized that it was a DNS problem. One of their servers that do the conversions were down, blocking my access to many sites. </p>
<p>Someone on a forum mentioned that I should switch to OpenDNS a service that has been around for a while, and because it is distributed over many servers across the USA, it is fast, and reliable.</p>
<h3>How to change to OpenDNS</h3>
<p>The basic idea is to change your DNS settings to use OpenDNS rather than grab the settings from your Internet Service Provider.</p>
<p>The DNS server addresses for OpenDNS are:<br />
<strong>208.67.222.222<br />
208.67.220.220</strong></p>
<p><strong><a href="http://www.opendns.com">OpenDNS</a> has already created tutorials that cover all the popular Operating Systems like <a href="http://www.opendns.com/start/windows_xp.php">Windows XP</a>, <a href="http://www.opendns.com/start/windows_2000.php">Windows 2000</a>, <a href="http://www.opendns.com/start/mac_os_x.php">Mac OS X</a>, and even <a href="http://www.opendns.com/start/unix.php">Linux</a>.</strong>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialzoom.com/2006/opendns-better-than-your-service-providers/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
