<?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>Rogue Easyweb</title>
	<atom:link href="http://www.rogueeasyweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rogueeasyweb.com</link>
	<description>Web Design for Bend Oregon and beyond</description>
	<lastBuildDate>Sun, 11 Dec 2011 23:11:37 +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>TahoeBlueTours.com</title>
		<link>http://www.rogueeasyweb.com/web-design/tahoebluetours-com/</link>
		<comments>http://www.rogueeasyweb.com/web-design/tahoebluetours-com/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 23:11:37 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[blue]]></category>
		<category><![CDATA[tahoe]]></category>
		<category><![CDATA[TahoeBlueTours]]></category>
		<category><![CDATA[tours]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=288</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/tahoebluetours-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding WordPress 3.0 Menu Support</title>
		<link>http://www.rogueeasyweb.com/web-design/adding-wordpress-3-0-menu-support/</link>
		<comments>http://www.rogueeasyweb.com/web-design/adding-wordpress-3-0-menu-support/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 23:12:23 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[Adding]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=280</guid>
		<description><![CDATA[Every few months I seem to do the same thing. I&#8217;m using a WordPress theme that doesn&#8217;t have  WordPress 3.0+ menu support. I want to add it and somehow spend a few too many minutes hunting around for the correct implementation for WP 3.0 menus. So, as much for my own sake as for anyone ...]]></description>
			<content:encoded><![CDATA[<p>Every few months I seem to do the same thing. I&#8217;m using a WordPress theme that doesn&#8217;t have  WordPress 3.0+ menu support. I want to add it and somehow spend a few too many minutes hunting around for the correct implementation for WP 3.0 menus. So, as much for my own sake as for anyone else&#8217;s, here&#8217;s the quick and dirty on getting those menus in there.</p>
<p>It&#8217;s real easy, at the basic level.</p>
<h2>Step 1</h2>
<p>Open your functions.php file and add (anywhere inside the main &lt;?php open and ?&gt; close tags, and not interfering with your other code. Just choose a blank spot!) the following:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'init'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'register_my_menus'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">function</span> register_my_menus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; register_nav_menus<span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">'primary-menu'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Primary Menu'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">'secondary-menu'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Secondary Menu'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">'tertiary-menu'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Tertiary Menu'</span> <span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
<p>That&#8217;s going to add &#8220;opportunity&#8221; for 3 menus. If you want to add only one, include only the first &#8216;primary-menu&#8217; =&gt; __( &#8216;Primary Menu&#8217; ), line. But, I figure, why not add support for 2 more, just in case you want to create them later in your theme.</p>
<p>&nbsp;</p>
<h2>Step 2</h2>
<p>Now, open the theme file that will contain your menu. Usually, this is header.php. You should be able to just find the existing menu code and delete it, making space for your new menu. In place of the old menu, insert the following:</p>
<div class="codecolorer-container php-brief default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php-brief codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_nav_menu<span style="color: #009900;">&#40;</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'theme_location'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'primary-menu'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
<p>See how &#8216;primary-menu&#8217; matches the line with &#8216;primary-menu&#8217; in the functions.php? Good! Now,  in your WordPress Admin, under Appearance / Menus,  name and create a new menu. Then, in the &#8220;Theme Locations&#8221; box, assign your new menu to the &#8220;Primary Menu&#8221; slot.</p>
<p>And that should do it! Learn more at this well written and more in depth article, <a href="http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus">&#8220;Goodbye Headaches, Hello Menus!&#8221;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/adding-wordpress-3-0-menu-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TeleSourceCenter.com</title>
		<link>http://www.rogueeasyweb.com/web-design/telesourcecenter-com/</link>
		<comments>http://www.rogueeasyweb.com/web-design/telesourcecenter-com/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 04:48:53 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=277</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/telesourcecenter-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two good istockphoto alternatives</title>
		<link>http://www.rogueeasyweb.com/web-design/two-good-istockphoto-alternatives/</link>
		<comments>http://www.rogueeasyweb.com/web-design/two-good-istockphoto-alternatives/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 19:21:15 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[alternatives]]></category>
		<category><![CDATA[bigstock]]></category>
		<category><![CDATA[fotolia]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[istockphoto]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Stock]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=225</guid>
		<description><![CDATA[For those of us in the web development and graphic design fields, istockphoto.com is a common go-to source for royalty free stock photography. With millions of quality images istockphoto.com has been around for years, and is still growing their collection. For many people needing stock images, flash assets and video, they are the first choice. ...]]></description>
			<content:encoded><![CDATA[<div id="attachment_253" class="wp-caption alignright" style="width: 310px"><a href="http://www.fotolia.com/partner/202445598"><img class="size-full wp-image-253  " title="perfect_image" src="http://www.rogueeasyweb.com/wp-content/uploads/2011/07/perfect_image.jpg" alt="perfect image" width="300" height="250" /></a><p class="wp-caption-text">Horay! You&#39;ve found the perfect image, and it&#39;s inexpensive! Actual image courtesy Fotolia.com</p></div>
<p>For those of us in the web development and graphic design fields, istockphoto.com is a common go-to source for royalty free stock photography. With millions of quality images istockphoto.com has been around for years, and is still growing their collection. For many people needing stock images, flash assets and video, they are the first choice.</p>
<p>However, since being <a href="http://www.abouttheimage.com/2316/getty_acquires_istockphoto_for_50_million/author2" target="_blank">acquired by Getty Images for $50 Million in 2006</a>, iStockphoto&#8217;s prices have slowly been increasing. In the last year or so, their prices have gone up even more, with some images in their exclusive &#8220;Vetta&#8221; collection ranging from 30 to 100 credits. At $1.13 to $1.54 a credit, that&#8217;s up to $34 for an xsmall image to $154 for an XL image. Non-exclusive content is still available, and still relatively cheap. While there&#8217;s an option to search <strong>only</strong> for the Vetta collection, I could not figure out how to <strong>exclude</strong> the higher priced Vetta images form my search results! Furthermore, on the pages of thumbnails from search results, there is no way to tell the higher priced images from the standard ones, until you click on them. This is clearly a crafty tactic to increase sales on the Vetta content. For me, it&#8217;s a waste of my time. While there certainly is a market for high end exclusive content  and I&#8217;m glad producers are able to get paid, neither I nor most of my clients are willing to pay that amount for imagery.</p>
<p>So what are the alternatives? Over the last few months, I&#8217;ve tried out two other stock imagery resources. Here&#8217;s what I think.<br />
<a href="http://www.fotolia.com/partner/202445598"></a></p>
<p><a href="http://www.fotolia.com/partner/202445598"> </a></p>
<p><a href="http://www.fotolia.com/partner/202445598"></a></p>
<h2>Fotolia</h2>
<p><img class="alignright size-full wp-image-247" title="fotoliareview" src="http://www.rogueeasyweb.com/wp-content/uploads/2011/07/fotoliareview.gif" alt="fotolia review" width="193" height="48" />I actually happened to test drive <a href="http://www.fotolia.com/partner/202445598" target="_blank">Fotolia</a> through a promotional offer that allowed me to try the site for a limited time, with a limited amount to free promotional downloads per day. I have to say, for a site trying to get noticed in the competitive stock imaging market, that was a very good move by them. The first measure if a stock imagery site, in my opinion, is the impression of the first page of results from a keyword search. In most all cases, <a href="http://www.fotolia.com/partner/202445598" target="_blank">Fotolia</a> fared quite well in delivering a quality selection of results for my search terms. You can tell right away that there are many professional submissions on the site, and that they have a decent level of quality control. Of course, much like one should not judge a book by it&#8217;s cover, there are many many more pages of results to browse through. A sample search for &#8220;Onion&#8221; yielded 1347 pages of results. When I clicked on page 1347, I still got images of onions, not trucks or babies or other non-related results. With over 13 million images in their library, <a href="http://www.fotolia.com/partner/202445598" target="_blank">Fotolia</a> is obviously a major player, and is poised to deliver when you need it to.</p>
<p><em><strong>How about the pricing?</strong></em></p>
<p><a href="http://www.rogueeasyweb.com/wp-content/uploads/2011/07/fotolia_screenshot.jpg"><img class="alignright size-medium wp-image-248" style="margin-left: 10px; margin-bottom: 10px;" title="fotolia_screenshot" src="http://www.rogueeasyweb.com/wp-content/uploads/2011/07/fotolia_screenshot-300x158.jpg" alt="Fotolia has a good selection" width="300" height="158" /></a>Like iStockphoto, <a href="http://www.fotolia.com/partner/202445598" target="_blank">Fotolia</a> uses a credit system, allowing them to easy control their market by raising or lowering the cost per credit. Costs per credit range from $0.75 (Though, you&#8217;d have to buy a chunk of 6400 credits) to $1.20 a credit for a bundle of 20 credits. I think most people would end up paying $1.00 to $1.20 a credit. At the time of this writing, you could use the &#8220;Custom Bundles&#8221; system to purchase as few as 10 credits to whatever other number you need. This is a nice feature that does not force you to end up with extra money laying around in their bank, if you don&#8217;t need it there. XSmall images ranging around 300 to 450 pixels wide run 1-2 credits, or at most, $1.20 to $2.40. The most common web sizes, which range around 800px wide at the most,  seem to usually be 3 credits, or at most, $3.60 USD.</p>
<p>I should note that like iStockPhoto, <a href="http://www.fotolia.com/partner/202445598" target="_blank">Fololia</a> also has an &#8220;exclusive&#8221; collection of images they call the &#8220;Infinite&#8221; collection. The Infinite collection are &#8220;composed of premium images submitted by some of  the top agencies from around the world&#8221;, according to <a href="http://www.fotolia.com/partner/202445598" target="_blank">Fotolia</a>. It&#8217;s easy to search only for the Infinite collection, or to exclude them from your search results. This is not so easy to do on iStockphoto. Also, <a href="http://www.fotolia.com/partner/202445598">Fotolia</a> clearly marks the Infinite collection images in the thumbnail search result pages with a black symbol.</p>
<p>I can say that for my purposes, quality stock images targeted to web-use sizes, <a href="http://www.fotolia.com/partner/202445598" target="_blank">Fotolia.com</a> is certainly worth checking out, and I recommend adding them you your bookmarks as a top resource for stock imagery. <a href="http://www.fotolia.com/partner/202445598">Click here to visit Fotolia.com now.</a></p>
<h2>BigStockPhoto</h2>
<p><img class="alignright size-full wp-image-250" title="bigstock" src="http://www.rogueeasyweb.com/wp-content/uploads/2011/07/bigstock.gif" alt="Bigstock review" width="205" height="65" />Founded in 2004, <a href="http://www.bigstockphoto.com/?refid=qPggKbK6z7">BigStockPhoto.com</a> claims over 8 million royalty free images in their collection. The first thing you will probably notice about BigStock, is that you don&#8217;t have to use a credit based system if you don&#8217;t want to. When you find an image you like, pricing is displayed in US dollars right next to the size options. Their Small sized images, which appear to range from 600 to 900 pixels wide, cost $2.99. Medium images cost $4.99 and large, $8.99. XL sizes and vector cost $12.99. This upfront pricing is refreshing to see, and is more convenient, at least at surface value. You can also buy credits in bundles, like many other stock imagery sites. Images, from small to XL run 1, 2, 4 and 6 credits each. The smallest credit package you can buy is 25 credits for $49, or $1.96 a credit. So if you bought, for example, a medium image at 2 credits you&#8217;d be paying $3.92 instead of the non credit price of $4.99. And the margin of savings would just go up if you buy larger credit packages.</p>
<p><em><strong>How&#8217;s the selection?</strong></em></p>
<p><a href="http://www.rogueeasyweb.com/wp-content/uploads/2011/07/bigstock_screenshot.jpg"><img class="alignright size-medium wp-image-251" title="bigstock_screenshot" src="http://www.rogueeasyweb.com/wp-content/uploads/2011/07/bigstock_screenshot-300x160.jpg" alt="Bigstockphoto review" width="300" height="160" /></a>The difference between a good image and the perfect image is very small, but there is a difference. You just know when you see one of those perfect images. It jumps off the page and just screams professionalism, or is the perfect representation of the subject in the image. <a href="http://www.bigstockphoto.com/?refid=qPggKbK6z7">BigStockPhoto</a> certainly delivers these images, but, I have the feeling, not as often as other sites. You might have to go through a few more pages, or try a few more searches to get that perfect iamge for your project. For general needs, and common themes, it&#8217;s perfectly fine. I used them for a couple projects and we found images for all of our target categories. However, I did sometimes think, &#8220;ok, this will do&#8221;, instead of &#8220;wow, perfect&#8221;.</p>
<p>All of that said, the pricing at <a href="http://www.bigstockphoto.com/?refid=qPggKbK6z7">BigStockPhoto</a> is great and the selection is worthy enough to add them to your bookmarks as a legitimate resource to stock imagery. <a href="http://www.bigstockphoto.com/?refid=qPggKbK6z7">Click here to visit BigStockPhoto.com now</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/two-good-istockphoto-alternatives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Noha.us</title>
		<link>http://www.rogueeasyweb.com/web-design/noha-us/</link>
		<comments>http://www.rogueeasyweb.com/web-design/noha-us/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 19:30:02 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[associates]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[noha]]></category>
		<category><![CDATA[northwest]]></category>
		<category><![CDATA[occupational]]></category>
		<category><![CDATA[portland]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=238</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/noha-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RentAroundBend.com</title>
		<link>http://www.rogueeasyweb.com/web-design/rentaroundbend-com/</link>
		<comments>http://www.rogueeasyweb.com/web-design/rentaroundbend-com/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 21:24:36 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Around]]></category>
		<category><![CDATA[bend]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[property]]></category>
		<category><![CDATA[Rent]]></category>
		<category><![CDATA[superior]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=221</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/rentaroundbend-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I make a web site? A step by step guide.</title>
		<link>http://www.rogueeasyweb.com/web-design/how-do-i-make-a-web-site-a-step-by-step-guide/</link>
		<comments>http://www.rogueeasyweb.com/web-design/how-do-i-make-a-web-site-a-step-by-step-guide/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 00:52:37 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[step by step]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web-host]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=194</guid>
		<description><![CDATA[How do I make a web site? A step by step guide. If you have ever wondered, &#8220;how do I make a web site?&#8221;, then this article is for you. I will attempt to guide you through the process assuming you are an absolute beginner. What is the internet? The first thing to know is, ...]]></description>
			<content:encoded><![CDATA[<h2>How do I make a web site? A step by step guide.</h2>
<p>If you have ever wondered, &#8220;how do I make a web site?&#8221;, then this article is for you. I will attempt to guide you through the process assuming you are an absolute beginner.</p>
<h2>What is the internet?</h2>
<div id="attachment_203" class="wp-caption alignright" style="width: 310px"><a href="http://www.rogueeasyweb.com/wp-content/uploads/2011/03/uunet.jpg"><img class="size-medium wp-image-203" title="A representation of the main &quot;backbones&quot; in the U.S." src="http://www.rogueeasyweb.com/wp-content/uploads/2011/03/uunet-300x224.jpg" alt="A representation of the main &quot;backbones&quot; in the U.S." width="300" height="224" /></a><p class="wp-caption-text">A representation of the main &quot;backbones&quot; in the U.S.</p></div>
<p>The first thing to know is, &#8220;What is the Internet?&#8221;. You probably know that, when you signed up for internet service, that you were hooked up through phone line or a cable line, but then what happens? Well, essentially, that phone or cable line connects you and your computer to the rest of the world. The cables run to your ISP or Internet Service Provider. This is who you pay each month for internet access. Your ISP then connects you to bigger wires that can handle far more data and faster speeds. They are usually made from fiber-optics, which allow data to travel at the speed of light. These main-lines stretch across the country and under oceans. Lets say you sent an email to a friend. Your data travels out of your house, across the local phone or cable lines, to your ISP. At the ISP there&#8217;s a device called a Router. The Router is like a traffic cop at an intersection. It recognizes your email, and then tells it which way to go to get to the destination. This can happen over and over, dozens of times before your data, your email, finally finds it&#8217;s way to your friends house, and their computer.</p>
<p>Here&#8217;s a fun trick to show you exactly what I&#8217;m talking about. If you are on a Windows based computer, go to your Start menu, and click &#8220;Run&#8221; or just type in the bottom these letters &#8220;cmd&#8221;. This opens what is called a DOS Prompt, a basic Windows program that has been around forever, and is used to perform all sorts of basic commands and functions. The window should be a rectangle with a black background. Inside, there should be a line of text with a blinking cursor after it, waiting for your input.</p>
<div id="attachment_205" class="wp-caption alignleft" style="width: 310px"><a href="http://www.rogueeasyweb.com/wp-content/uploads/2011/03/tracert.jpg"><img class="size-medium wp-image-205 " title="tracert" src="http://www.rogueeasyweb.com/wp-content/uploads/2011/03/tracert-300x139.jpg" alt="Running Tracert to Google.com in a Dos window" width="300" height="139" /></a><p class="wp-caption-text">Running Tracert to Google.com in a Dos window</p></div>
<p>Type in &#8220;tracert www.google.com&#8221; and hit Enter. (Your Enter key). Each line that shows up represents a &#8220;node&#8221; or router at an ISP where your request to find Google.com is traveling. Each line is a stop, where the router says, &#8220;Ok, you want Google.com, go this way!&#8221; and your request is sent down the proper lines until it get&#8217;s to the next intersection, until finally you reach your destination. This same process is what happens when you visit Google in a web browser. You say &#8220;I want Google!&#8221;, and that request goes through the internet until it finds Google, which is on a computer somewhere. That computer then says &#8220;Ok, you want Google, here it is!&#8221; and the data that shows you Google.com goes all the way back through the internet often over hundreds of miles, back you your computer. All within a fraction of a second. Amazing isn&#8217;t it?</p>
<p>So all these lines of fiber-optics and copper form an enormous &#8220;web&#8221;, hence the name &#8220;Word Wide Web&#8221;, or &#8220;www&#8221;! It is vastly complex. At the junctions of the web are either routers, like I mentioned earlier, computers, like the one your are using now, or computers that contain web sites. A computer that contains a web site is called a Server. When you want a website, your request for that site travels across the internet until it finds the Server.  The Server&#8217;s job is to then cough up the data that makes up a website and send it back to you. Servers are just computers, similar to the one you are using now, but more powerful and specially tuned to &#8220;serve&#8221; up webpages. The companies that own these servers are called <strong>Web Hosts.</strong></p>
<h2>What is a Domain Name?</h2>
<p>In short a domain name is what comes after &#8220;http://www.&#8221;  in your web browser address bar at the top. Right now you are at RogueEasyWeb.com. That&#8217;s a domain name. It consists of two parts. The name can be letters, numbers or dash marks. Then there is a dot and after the dot is the Domain Name Extension, which most popularly is &#8220;com&#8221;. Domain Name Extension were intended as a way to divide up website by their purpose, and for the most part, it works. &#8220;Com&#8221; stands for c0mmercial. For a company or if you are selling anything. &#8220;Org&#8221; is for non-profits. &#8220;Net&#8221; stands for network, but is somewhat vague and is closer to &#8220;Com&#8221; than anything. &#8220;Gov&#8221; is for government use, and &#8220;Mil&#8221; is for the US military. Countries have their own Domain Name Extensions as well. For example, .jp is Japan, or .au is Australia. this can be useful if your website is in a language native to that country. There days, .com is still the most valuable and sought after TLD.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains">Here&#8217;s a list of all domain name extensions or TLDs, from Wikipedia.</a></p>
<p>When you want to purchase a domain name, you must first find out if it is available. If someone owns it, you can&#8217;t have it! Unless they will sell it to you. A huge industry is made from people who just buy domain names hoping that someone else wants them. They don&#8217;t use them, they just wait until someone  wants one and then they try to get as much money as they can for it. They are sometimes called Domain name Squatters. Anyway, you have to find you if the domain that you want is available. A good place to find this out is at NetworkSolutions.com. They are a domain name &#8220;Registrar&#8221; or a company who controls the sale of domain names, as well as a web host. I do not recommend signing up with them though. Instead, use the tool at NetworkSolutions, (which is nice because it allows you to enter multiple domains at one, to see if they are available) then head over to BlueHost.com, where you can get your domain name for FREE when you sign up with their web hosting plan. If you have more than one domain in mind, you can purchase it after you sign up. If you have domains at a registrar like Networksolutions or Name.com, but your web hosting somewhere else, that&#8217;s ok too. You will just have to tell your registrar to point your domain at your web host by changing what&#8217;s called the DNS settings.</p>
<h2>What is a Web Host?</h2>
<p>Web Hosts are the companies that own special computers or &#8220;servers&#8221; that contain the data that makes up a web site. When you sign up with a web host, you rent space on one of these computers, these servers and that&#8217;s where you will be putting your new web site! There are many, hundreds, of Web Hosts out there to choose from. I&#8217;ve been in the web design business for 10 years and I&#8217;ve tried many. Choosing a web host you want to look for a few key things. First, is cost. Compare to other plans. Around $10 is average for an &#8220;entry level&#8221; account. Are there &#8220;bandwidth limits&#8221; per month? If so, you can be charged overage fees if your website becomes popular and &#8220;serves&#8221; up more bandwidth than your plan allows for. Also, some plans have storage limits. For example, if your website got to be over 100 mb in size and your hosting plan only allows for 100mb of storage, you may be paying overage fees. When you get more experienced, you will want to know what kind of server you are getting. Is it running Linux? Windows? PHP? Database support? Most modern web-hosts should be up to date and run everything you need by default. If they don&#8217;t or want to charge you extra, than you may be getting ripped off. Finally, you will want good tech support. when you run in to trouble with technical issues on your server, it&#8217;s invaluable to be able to talk to a real live person who knows that they are talking about. I&#8217;ve been saved countless times by tech-support, and a two minute conversation can often lead to those &#8220;A-Ha!&#8221; moments when you really learn.</p>
<div style="float:right; padding: 0px 0px 10px 10px;"><script src="http://www.bluehost.com/src/js/blacksun/CODE72/120x90/bh_120x90_05.gif" type="text/javascript"></script></div>
<p>In my years of doing web design, I can firmly stand behind one web host in particular. They are called <a href="http://www.bluehost.com/track/blacksun/post">BlueHost</a>. They offer only one plan, but it does everything you need. It&#8217;s one of the lowest priced plan you can find, yet has all the features you could want. You get a free domain name when you sign up. There are no bandwidth caps, no storage caps you can host unlimited domains on one account (So, you could have as many websites as you want, all under this one plan!), and best of all they have really great phone tech support available around the clock 24/7. I hate to see people get taken advantage of and purchase an inferior or expensive web hosting plan, when something like this is available. <a href="http://www.bluehost.com/track/blacksun/post">Do yourself a favor and click here to go check them out now</a>. I&#8217;ll be honest, I do receive a small kick-back if you sign up with them. But I also honestly recommend them! In fact the web site you are reading right now is hosted with <a href="http://www.bluehost.com/track/blacksun/art">Bluehost</a>, and has been for years.</p>
<p>Now I don&#8217;t usually like to bad mouth anyone, but there are bad web hosts out there. One in particular that I do not recommend is GoDaddy.com. If you already have them, don&#8217;t panic. They will work for you, and the pricing is ok. I feel like they have a very confusing website that&#8217;s specifically designed to lure people who don&#8217;t know any better into buying products that they don&#8217;t need. If you&#8217;ve ever worked with them before, you know what I mean. Also, their tech support is ok, but you often have to wait 15 or more minutes on hold before speaking with someone. Lastly, sometimes Ive seen some poor performance from their servers.</p>
<h2>Building a Website: The Tools</h2>
<p>Ok, so you have a web host, now it&#8217;s time to start building the web site. The entire internet runs on a base &#8220;coding language&#8221; called HTML or Hypertext Markup Language. HTML is what&#8217;s behind the scenes on every website you visit. Do you want proof? Ok, visit any website you want, right click your mouse on the page to get the pop-up window and select &#8220;View Page Source&#8221; or &#8220;View Source&#8221;. The window that comes up shows the HTML coding that&#8217;s behind the page. This simple trick is a very valuable technique for learning how websites are constructed, and how different people have done things.</p>
<p>So websites are built on HTML, how do I learn HTML? Well, I won&#8217;t write a book on learning HTML right now, but I&#8217;ll give you a couple options, recommendations and links to get you started. Basically there are two ways to get started in the world of web design, or you can combine the two. The first is using a WYSIWYG (&#8220;What You See is What You Get&#8221;) HTML editor. These programs are intended to build an entire website from within a program by selecting options from menus, adjusting values and changing settings. An HTML editor like this is great for getting things done fast, and getting results without having to taking time to learn core principles of how HTML and websites work. Of course, this is also why this method will eventually send you to a dead end. This brings me to the second method of approaching web design, which is writing the HTML by hand, line by line. All you need to start out with this method is a decent text/code editor that is built for writing code and highlight certain code snips, making it easier to read. (See the links below for recommendations.) This means you will be learning how HTML works from the ground up, starting at the very beginning. It also means that you have full control over your code, whereas an editor will insert code in ways that you may not like. Writing HTML by hand is very time consuming and requires lots of dedication, but if you stick with it, you will be on your way to being an HTML master. A third option of sorts is to combine the two methods. Use a WYSIWYG editor, but view your code from time to time, either in editor (most should offer this option), or, by opening the actual HTML file in a text editor.</p>
<p><a href="http://www.adobe.com/products/dreamweaver/">Adobe Dreamweaver</a> &#8211; A WYSIWYG HTML editor. Arguably the most well known and best out there. Dreamweaver is a little expensive. You can download and try an evaluation copy, <a href="https://www.adobe.com/cfusion/tdrc/index.cfm?product=dreamweaver">here.</a></p>
<p><a href="http://www.coffeecup.com/html-editor/">CoffeeCup </a>- CoffeeCup is another WYSIWYG editor. As an alternative to Dreamweaver, it&#8217;s much cheaper. They also offer a  28 day free trial.</p>
<p><a href="http://notepad-plus-plus.org/">NotePad++</a> &#8211; This is a nice, free, html/code editor that runs on Windows. This is all you need to start hand editing code. Even if you go with one of the above programs, you may still want this.</p>
<p><a href="http://www.coreftp.com/">CoreFTP</a> &#8211; This is an FTP Client, and the one I use and prefer. You need this to transfer your website, the HTML files from your computer to the Server, and vice-versa. Editors like Dreamweaver have one built in. Having a standalone FTP client is good when you don&#8217;t want to be limited by your editor&#8217;s FTP functions, or are hand coding sites using a text editor like Notepad++. CoreFTP is free and runs on windows.</p>
<p>There are many many more options out there for html editing and FTP. These are just a few suggestions. I do most of my work in Notepad++ and CoreFTP.</p>
<h2>Building a Website: The Knowledge</h2>
<p>I&#8217;m a firm believer that that in this point in human history, the most valuable source of information on almost any subject is right in front of you. With exceptions, I have mostly taught myself computers, web-design, graphic design and more. It is the defining skill of this generation to know how to search for knowledge, and equally importantly, how to separate good knowledge from bad knowledge. Tool number one of course is Google. Rely on it often. A good answer is often a simple search away. If you don&#8217;t find what you need the first time, try different search terms. But like knowing what restaurants to eat at, it&#8217;s good to know what website&#8217;s are worth your time. Here&#8217;s a list of several websites that can assist you in getting started in answering your question of &#8220;How do I make a website?&#8221;.</p>
<p><a href="http://www.tizag.com/">Tizag.com</a> &#8211; This site is one of my favorites for quickly looking up specific things like HTML or CSS tags. The design is very simple with no clutter. If you want to start coding by hand, they have a good <a href="http://www.tizag.com/beginnerT/">starting point</a> for that.</p>
<p><a href="http://www.w3schools.com/">W3Schools.com</a> &#8211; W3 Schools has a large amount of reliable infomation on HTML and web site design from beginners to advanced. If you want to learn from scratch with them, <a href="http://www.w3schools.com/html/default.asp">start here.</a></p>
<p><a href="http://webdesign.about.com/od/dreamweaverhowtos/a/dw_tutorials.htm">This About.com page</a> &#8211; covers the basics of Dreamweaver in a step by step format. Probably a good place to start learning how to use Dreamweaver.</p>
<p>Those sites should at least get you started on the long road of web design. The amount of knowledge to learn is almost endless, and growing every day. That said, making websites simple, easy to use and understand is my primary focus and should be yours too. Trimming the fat to provide an easy to understand interface not only achieves superior design goals, but your code will end up being clean and simple as well.</p>
<p>If building a website for yourself, don&#8217;t be too concerned with the final product. It will change over time, as you learn. Go ahead and cover the basics, then update and improve it as you learn new tricks and techniques. If you want to be a we designer, my advice is that you start out by creating basic websites for people for free or very cheap. Create 3-5 websites. Do your best to create quality work, because these 3-5 websites will be your portfolio, and represent your knowledge and artistic style. Over time, you can update your portfolio of course, but starting with a strong portfolio will give you a good head start.</p>
<p>Well, I know this guide is a little rough around the edges, but I hope it&#8217;s valuable to at least a few people out there. If you get stuck, or just want a website built, come check me out at <a href="http://www.rogueeasyweb.com/">Rogue Easy Web.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/how-do-i-make-a-web-site-a-step-by-step-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BendCouponClicker.com</title>
		<link>http://www.rogueeasyweb.com/web-design/bendcouponclicker-com/</link>
		<comments>http://www.rogueeasyweb.com/web-design/bendcouponclicker-com/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 00:46:19 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bend]]></category>
		<category><![CDATA[clicker]]></category>
		<category><![CDATA[coupon]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=188</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/bendcouponclicker-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LuwakCafe.com</title>
		<link>http://www.rogueeasyweb.com/web-design/luwakcafe-com/</link>
		<comments>http://www.rogueeasyweb.com/web-design/luwakcafe-com/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 01:07:28 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[cafe]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[luwak]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=186</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/luwakcafe-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OneWorldHealingMassage.com</title>
		<link>http://www.rogueeasyweb.com/web-design/oneworldhealingmassage-com/</link>
		<comments>http://www.rogueeasyweb.com/web-design/oneworldhealingmassage-com/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 19:35:48 +0000</pubDate>
		<dc:creator>RogueEasyweb</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Healing]]></category>
		<category><![CDATA[lake]]></category>
		<category><![CDATA[Massage]]></category>
		<category><![CDATA[One]]></category>
		<category><![CDATA[south]]></category>
		<category><![CDATA[tahoe]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[World]]></category>

		<guid isPermaLink="false">http://www.rogueeasyweb.com/?p=182</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.rogueeasyweb.com/web-design/oneworldhealingmassage-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

