<?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>Web Hosting Show</title>
	<atom:link href="http://www.webhostingshow.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webhostingshow.com</link>
	<description>podcast about web hosts and web hosting topics</description>
	<lastBuildDate>Tue, 17 Jan 2012 12:22:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>More HTML Formatting Help</title>
		<link>http://www.webhostingshow.com/2012/01/17/more-html-formatting-help/</link>
		<comments>http://www.webhostingshow.com/2012/01/17/more-html-formatting-help/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 12:22:50 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=3960</guid>
		<description><![CDATA[We have already covered some basic HTML tags you will use when writing your web page code. Here are a few more that you might find come in handy, when designing your own web page. Image Tags In HTML, when you want to call upon an image to be displayed on your web page, you [...]]]></description>
			<content:encoded><![CDATA[<p>We have already covered some <a href="http://www.webhostingshow.com/2012/01/09/basic-html-formatting-help/" target="_blank">basic HTML tags</a> you will use when writing your web page code. Here are a few more that you might find come in handy, when designing your own web page. </p>
<p><span id="more-3960"></span>
<p><a name="Image_Tags"></a>
<p><strong>Image Tags </strong></p>
<p>In HTML, when you want to call upon an image to be displayed on your web page, you need to use the img tag. This tag tells the browser and web server that you are going to put an image here, and then what follows src= is the direct path to the image in question.
<p><b>Code:</b> &lt;img src=&#8221;http://www.yourdomain.com/yourimage.jpg&#8221; /&gt;
<p><a name="Horizontal_Rule_Tags"></a>
<p><strong>Horizontal Rule Tags </strong></p>
<p>The horizontal rule is for making a nice separator between sections of your web page. It acts as a single solid line that can be placed anywhere on your web page. It looks like this:
<p><b>Code:</b> &lt;hr /&gt;
<p><a name="List_Tags"></a>
<p><strong>List Tags </strong></p>
<p>If you want to format a list of topics on a single page, then the list tags will come in handy. You would start a list with the &lt;ul&gt; tag and end it with the &lt;/ul&gt; tag. For each item on the list, you will want to wrap it in the &lt;li&gt; and &lt;/li&gt; tags.
<p><b>Code:</b> &lt;ul&gt; &lt;li&gt;item #1&lt;/li&gt; &lt;li&gt;item #2&lt;/li&gt; &lt;/ul&gt;
<p><a name="Ordered_List_Tags"></a>
<p><strong>Ordered List Tags </strong></p>
<p>If you want to format a list of topics on a single page, and have them numbered, the ordered list tags should be used. You would start a list with the &lt;ol&gt; tag and end it with the &lt;/ol&gt; tag. For each item on the list, you will want to wrap it in the &lt;li&gt; and &lt;/li&gt; tags.
<p><b>Code:</b> &lt;ol&gt; &lt;li&gt;item #1&lt;/li&gt; &lt;li&gt;item #2&lt;/li&gt; &lt;/ol&gt;
<p><a name="Link_Tags"></a>
<p><strong>Link Tags </strong></p>
<p>Links are used to help users go from one page to the next page. The basic link is started with the &lt;a href=&#8221;"&gt; tag with the page&#8217;s path you want to link to inside the quotation marks. Then you type in the text of the link, and close it out with the &lt;/a&gt; tag.
<p><b>Code:</b> &lt;a href=&#8221;http://www.somedomain.com/pageiamlinkingto.html&#8221;&gt;This Text is a Link&lt;/a&gt; </p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2012/01/17/more-html-formatting-help/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Basic HTML Formatting Help</title>
		<link>http://www.webhostingshow.com/2012/01/09/basic-html-formatting-help/</link>
		<comments>http://www.webhostingshow.com/2012/01/09/basic-html-formatting-help/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 12:34:43 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[web-hosting]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=3957</guid>
		<description><![CDATA[When it comes to formatting a web page using HTML code, you can think of it (kind of) in the same way you would look at formatting a document formatted by a word processor. You have your headlines to show you where one section starts and stops. You have your paragraphs to break up blocks [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to formatting a web page using HTML code, you can think of it (kind of) in the same way you would look at formatting a document formatted by a word processor. You have your headlines to show you where one section starts and stops. You have your paragraphs to break up blocks of text, and you have line breaks to show where there should be a new line started. Now I am going to show you how to get some of these things done using HTML. </p>
<p><span id="more-3957"></span>
<p><a name="Headline_Tags"></a>
<p><strong>Headline Tags </strong></p>
<p>The main purpose of the headline tags are make the titles stand out on the page, and also tell the browser and visitors where the titles are. You can use &lt;h1&gt;&lt;/h1&gt; for the main title, then (if needed) &lt;h2&gt;&lt;/h2&gt; for a secondary title. The bigger the number gets, the smaller or less important the title becomes. Remember to use the headline tags for headings only. It is not a good idea to use them to make text bigger or bolder. Also, search engines look at how your headline tags are used to help index the structure of the content on your web pages.
<p><b>Code:</b> &lt;h1&gt;This Is My Title&lt;/h1&gt;
<p><a name="Paragraph_Tags"></a>
<p><strong>Paragraph Tags </strong></p>
<p>The paragraph tags are important because they show the start (
<p>) and then end
<p>of where a paragraph should be on your web page. Having a long page with nothing but unformatted text is going to be very hard for the reader to navigate through. You want to break up the web page with the paragraph tags to make the web page your working on more scan-able for the end user.
<p><b>Code:</b> &lt;p&gt;This will be shown as it&#8217;s own paragraph on my web page.&lt;/p&gt;
<p><a name="Line_Break_Tags"></a>
<p><strong>Line Break Tags </strong></p>
<p>What if you don&#8217;t want to go to a new paragraph, and instead only want to break of one line and move to the line right under it? That is what the <br />or <br />tags are for. You might see either used, however it might be best to start using <br />to future-proof your web page for browsers in the future (just in case support for <br />was ever dropped.
<p><b>Code:</b> I can put this at the end of a line to show where I want it to stop. &lt;br /&gt;
<p><a name="Blockquote_Tags"></a>
<p><strong>Blockquote Tags </strong></p>
<p>When text has been blockquoted, it is often indented a little &#8211; in comparison with the other paragraphs around it. So you get white space to the left, and the margins around the text are enlarged a little &#8216;bit to seperate it from the rest of the text.
<p><b>Code:</b> &lt;blockquote&gt;This text will be shown as indented on my web page.&lt;/blockquote&gt; </p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2012/01/09/basic-html-formatting-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHS Facebook Fan Page!</title>
		<link>http://www.webhostingshow.com/2011/12/27/whs-facebook-fan-page/</link>
		<comments>http://www.webhostingshow.com/2011/12/27/whs-facebook-fan-page/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 13:10:13 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fan]]></category>
		<category><![CDATA[fanpage]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=3954</guid>
		<description><![CDATA[It has been over a year since we launched the Facebook fan page and it has been a real success.&#160; At the current date and time, we have over 500 fans and we keep growing every single day.&#160; Are you missing out on the fun?&#160; All you need to do is head over to our [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="Web Hosting Show Facebook Fan Page" border="0" alt="Facebook Fan Page" align="right" src="http://www.webhostingshow.com/wp-content/uploads/2011/12/image3.png" width="240" height="169">It has been over a year since we launched the Facebook fan page and it has been a real success.&nbsp; At the current date and time, we have over 500 fans and we keep growing every single day.&nbsp; Are you missing out on the fun?&nbsp; All you need to do is head over to our Facebook Fan Page and click on the “Like” button on the top of the website.&nbsp; Then post your Firefox comments, questions or just say hi to some of the other people who are following <strong>the Web Hosting Show</strong> on Facebook.
<ul>
<li><a href="http://www.facebook.com/mitchprojects">Join us Today on Facebook!</a></li>
</ul>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/12/27/whs-facebook-fan-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modify the HTML Body Tag</title>
		<link>http://www.webhostingshow.com/2011/12/12/modify-the-html-body-tag/</link>
		<comments>http://www.webhostingshow.com/2011/12/12/modify-the-html-body-tag/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 12:32:38 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/12/12/modify-the-html-body-tag/</guid>
		<description><![CDATA[There are several HTML tags that can act as modifiers to how the web page looks visually. First, let us re-visit the body tags. The body tags are there to tell the browser what part of the document is going to be visible to the end user when viewing the web page. This is marked [...]]]></description>
			<content:encoded><![CDATA[<p>There are several HTML tags that can act as modifiers to how the web page looks visually.
<p>First, let us re-visit the body tags. The body tags are there to tell the browser what part of the document is going to be visible to the end user when viewing the web page. This is marked up in your HTML code by putting a &lt;body&gt; where your web page&#8217;s content begins and a &lt;/body&gt; tags where it ends. </p>
<p><span id="more-3952"></span>
<p><a name="How_to_Modify_the_Body_Tag"></a>
<p><strong><u>How to Modify the Body Tag</u></strong> </p>
<p>So, any time you modify the body tags, you will be changing the way the web site is seen. There are several body tag modifiers you can use.
<p><a name="Change_the_Web_Page.27s_Background_Color"></a>
<p>Change the Web Page&#8217;s Background Color </p>
<p>You can add bgcolor=&#8221;VALUE&#8221; (replacing VALUE with the name of the color or the HEX number) to change the background color for a web page.
<dl>
<dd><b>Code:</b> &lt;body bgcolor=&#8221;white&#8221;&gt; <i>(this would make the background all white)</i></dd>
</dl>
<p><a name="Change_the_Web_Page.27s_Text_Color"></a>
<p><strong><u>Change the Web Page&#8217;s Text Color</u></strong> </p>
<p>You can add text=&#8221;VALUE&#8221; (replacing VALUE with the name of the color or the HEX number) to change the background color for a web page.
<dl>
<dd><b>Code:</b> &lt;body text=&#8221;black&#8221;&gt; <i>(this would make the text all black)</i></dd>
</dl>
<p><a name="Change_the_Web_Page.27s_Link_Color"></a>
<p><strong><u>Change the Web Page&#8217;s Link Color</u></strong> </p>
<p>You can add link=&#8221;VALUE&#8221; (replacing VALUE with the name of the color or the HEX number) to change the color of links on a web page.
<dl>
<dd><b>Code:</b> &lt;body link=&#8221;blue&#8221;&gt; <i>(this would make the links all blue)</i></dd>
</dl>
<p><a name="Change_the_Web_Page.27s_Visited_Link_Color"></a>
<p><strong><u>Change the Web Page&#8217;s Visited Link Color</u></strong> </p>
<p>You can add vlink=&#8221;VALUE&#8221; (replacing VALUE with the name of the color or the HEX number) to change the color of link that have already been visited on a web page.
<dl>
<dd><b>Code:</b> &lt;body vlink=&#8221;red&#8221;&gt; <i>(this would make the visited links red)</i></dd>
</dl>
<p><a name="Change_the_Web_Page.27s_Active_Link_Color"></a>
<p><strong><u>Change the Web Page&#8217;s Active Link Color</u></strong> </p>
<p>You can add alink=&#8221;VALUE&#8221; (replacing VALUE with the name of the color or the HEX number) to change the color of an active link.
<dl>
<dd><b>Code:</b> &lt;body alink=&#8221;purple&#8221;&gt; <i>(this would make the active link purple)</i></dd>
</dl>
<p><a name="More_Helpful_Body_Tag_Tips"></a>
<p><strong><u>More Helpful Body Tag Tips</u></strong> </p>
<p><b>You can use more than one of these at a time.</b> If you wanted to, you could use more than one of these body modifiers at a time. you would just need to remember to put a space in between each body modifier. For example:
<pre>&lt;body bgcolor="black" color="white"&gt;
</pre>
<p>This is how you would link more than one together, this would tell the browser to make the background of the web page black and the text on the web page white. There is no limit to the number of these modifiers you can use on the body tag, as long as everything is formatted correctly, the web page should come out the way you want it to. </p>
<p><b>Only add these modifiers to the opening body tag.</b> It is important to note that you only add these modifiers to the opening tag &lt;body&gt; and not the closing tag &lt;/body&gt;. </p>
<p><b>Where can I find the HTML color or HEX values?</b> You can find these many places. One of the best examples, is on w3school.com&#8217;s HTML colors page here: </p>
<ul>
<li><a href="http://www.w3schools.com/Html/html_colors.asp">http://www.w3schools.com/Html/html_colors.asp</a></li>
</ul>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/12/12/modify-the-html-body-tag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Create the Best Website Navigation</title>
		<link>http://www.webhostingshow.com/2011/12/08/how-to-create-the-best-website-navigation/</link>
		<comments>http://www.webhostingshow.com/2011/12/08/how-to-create-the-best-website-navigation/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 12:40:44 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/12/08/how-to-create-the-best-website-navigation/</guid>
		<description><![CDATA[The navigation section of your web site is one of the most important factors to a web site. Why? The navigation is what allows you to move from one section of the web site to the next, linking web pages to web pages, and in all making a web site work. Here I hope to [...]]]></description>
			<content:encoded><![CDATA[<p>The navigation section of your web site is one of the most important factors to a web site.
<p>Why? The navigation is what allows you to move from one section of the web site to the next, linking web pages to web pages, and in all making a web site work. Here I hope to explain why web site navigation is important, along with a few other key factors you should remember when creating your web site. </p>
<p><span id="more-3951"></span>
<p><a name="Organize_Your_Web_Pages"></a>
<p><strong>Organize Your Web Pages</strong> </p>
<p>You should have a good idea of what your web site is going to be about, and how you are going to create it before you start with any HTML coding. One tool that comes in extremely handy when deciding navigation and how each page links to each idea is mind mapping. You can learn more about that process here:
<ul>
<li><a href="http://www.mitchelaneous.com/2010/01/11/4-premium-mind-mapping-services/">Introduction to Mind Maps for Webmasters</a></li>
</ul>
<p>As an example let us say you are working on a web site about you, so you have these basic web pages designed and ready to go:
<ul>
<li>The Home Page <i>(the first thing people see)</i>
<li>An About Page <i>(which gives more information about you, like your resume)</i>
<li>Your Contact Page <i>(might have your e-mail address, or various means of contacting you)</i>
<li>Projects and Work <i>(examples of the work you have done, or the projects you have worked on)</i></li>
</ul>
<p>Now somewhere, you will need to have your web site navigation on each of the pages. This can be done in a number of different ways, but the most popular seems to be across the top. This way people can go to and from different parts of the web site, just by clicking the links you see on the top. I would suggest having them formatted this way:
<p><b>Home | About Me | Contact Me | My Projects</b>
<p>Each one should link to the related pages above. A clean-cut and uniform navigation system is really a must.
<p><a name="Web_Site_Navigation_Tips"></a>
<p><strong>Web Site Navigation Tips</strong> </p>
<p>Here are some more tips you should watch out for when it comes to web site navigation:
<ul>
<li>Create a site map to help people find exactly what they are looking for quickly.
<li>There is no problem with highlighting certain pages you think deserve more attention, just make sure they don&#8217;t take away from your main web site navigation.
<li>Be sure to use short and precise words in your links, so people will know exactly what they are getting. </li>
</ul>
<p>This is no doubt that navigation plays a huge roll in how successful your web site is and how long they stick around it. If people can not navigate from web page to web page easily, they might grow frustrated and leave the web site all together. So, having a good navigation system means you can keep more visitors both on and returning to your hosted web site. </p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/12/08/how-to-create-the-best-website-navigation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Basic Parts of a Website Layout</title>
		<link>http://www.webhostingshow.com/2011/12/07/basic-parts-of-a-website-layout/</link>
		<comments>http://www.webhostingshow.com/2011/12/07/basic-parts-of-a-website-layout/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 12:21:19 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[head]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/12/07/basic-parts-of-a-website-layout/</guid>
		<description><![CDATA[When it comes to very basic website design, every website layout has four basic elements that you should learn. These are the HTML tags, the head tags, the title tags and the body tags.&#160; Each one plays an important part in presenting your website data to the public. Let’s look at this example of some [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to very basic website design, every website layout has four basic elements that you should learn. These are the HTML tags, the head tags, the title tags and the body tags.&nbsp; Each one plays an important part in presenting your website data to the public.</p>
<p><span id="more-3950"></span>
<p>Let’s look at this example of some very basic website code and then I’ll tell you about each part:
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;My First Web Site&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
This is my first web site.  I hope you enjoy it!
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><a name="The_HTML_Tags"></a></p>
<p><strong>The HTML Tags</strong></p>
<p>The &lt;html&gt; and &lt;/html&gt; tags wrapped around the text tells you this is an HTML document. They signify the start of the web page and the end of the web page. </p>
<p><a name="The_Head_Tags"></a></p>
<p><strong>The Head Tags</strong></p>
<p>The &lt;head&gt; and &lt;/head&gt; tags wrapped around the title tags tell the web browser this is where you can get specific information about this page, and how it is displayed. The head tags must be at the top of the page, after the first HTML tag. </p>
<p><a name="The_Title_Tag"></a></p>
<p><strong>The Title Tag </strong></p>
<p>The &lt;title&gt; and &lt;/title&gt; tags tells the browser that what is in between here is the title for the web page. It will be shown (in most browser) at the top of the menu and on the tab you are browsing from. </p>
<p><a name="The_Body_Tags"></a></p>
<p><strong>The Body Tags</strong></p>
<p>The &lt;body&gt; and &lt;/body&gt; tags wrapped around the text tells you this is the &#8220;body&#8221; of the web page, where the content you want displayed in the browser goes. </p>
<p><a name="Remember_to_Close_Your_Tags"></a></p>
<p><strong>Remember to Close Your Tags </strong></p>
<p>You might have noticed that these tags come in pair. One of these tags is used to start the command to the web browser, and the other is used to end or close it. For example, when you use the &lt;title&gt; tag, you are telling the web browser, &#8220;Hey, this is the web page&#8217;s title here, pay attention!&#8221;. Now, you need to tell the web browser that you are done telling it the title of your page page. You use the &lt;/title&gt; tag to say, &#8220;Ok, done telling you what the title is &#8211; move along!&#8221; </p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/12/07/basic-parts-of-a-website-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Basics</title>
		<link>http://www.webhostingshow.com/2011/12/06/html-basics/</link>
		<comments>http://www.webhostingshow.com/2011/12/06/html-basics/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 12:21:29 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/12/06/html-basics/</guid>
		<description><![CDATA[Hyper Text Markup Language, or as you know it HTML, is the markup language for most web pages on the Internet. Now, it is not exactly a language like English or Spanish, which we communicate with verbally. A markup language is a system for editing text in a way that changes how the text looks [...]]]></description>
			<content:encoded><![CDATA[<p>Hyper Text Markup Language, or as you know it HTML, is the markup language for most web pages on the Internet.
<p>Now, it is not exactly a language like English or Spanish, which we communicate with verbally. A markup language is a system for editing text in a way that changes how the text looks or how you interact with it. Where you use funny looking code to make one section of text look different than the other, the code in question is not seen by the end user. The server the web page is coming from, and the user&#8217;s browser come together to help mesh it together as something that is seen as visually appealing to the end user. </p>
<p><span id="more-3949"></span>
<p><a name="A_Simple_HTML_Example"></a>
<p><strong>A Simple HTML Example </strong></p>
<p>Here is an example of a web site written in HTML code:
<pre>&lt;html&gt;
&lt;body&gt;
&lt;p&gt;This is my first web site.  I hope you enjoy it!&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><b>Breaking Down the HTML Code</b></p>
<p>As you can see from the text above, this is a pretty simple example. You have the basic text of the web site, &#8220;This is my first web site. I hope you enjoy it!&#8221; with several HTML tags wrapped around it. The HTML tags are what give the text commands on how it should be interpreted by the browser. </p>
<ul>
<li>The &lt;html&gt; and &lt;/html&gt; tags wrapped around the text tells you this is an HTML document.
<li>The &lt;body&gt; and &lt;/body&gt; tags wrapped around the text tells you this is the &#8220;body&#8221; of the web page, where the content you want displayed in the browser goes.
<li>The &lt;p&gt; and &lt;/p&gt; tags wrapped around the text tells you this should be formatted as a paragraph. </li>
</ul>
<p>Here are some frequently asked questions somebody might have at this point. </p>
<p><b>How do you create an HTML file like this one?</b> Best thing to use would be a plain text editor, such as Notepad. The reason for this, is you want the files in question to be saved with no extra markup information included. </p>
<p><b>How do I save the file as a HTML web page?</b> You will want to save the file with a .html extension at the end. This will tell the web browser that this page is an HTML coded page, and should be read like one. As an example, I saved this file as &#8220;test.html&#8221;. The &#8220;test&#8221; name does not matter at this point, it could be anything. We will dive deeper into how to name your HTML files in a later tutorial.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/12/06/html-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Project Announced? Mitchcraft!</title>
		<link>http://www.webhostingshow.com/2011/11/28/new-project-announced-mitchcraft/</link>
		<comments>http://www.webhostingshow.com/2011/11/28/new-project-announced-mitchcraft/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 10:00:27 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Specials]]></category>
		<category><![CDATA[minecraft]]></category>
		<category><![CDATA[mitch-keeler]]></category>
		<category><![CDATA[mitchcraft]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=3947</guid>
		<description><![CDATA[This has been a project on the back burner for a while that I am finally getting around to creating.  Today I bring to you my newest project, Mitchcraft.  This new YouTube series will follow me as I play the sandbox building and adventure game – Minecraft. I will do my best to keep things [...]]]></description>
			<content:encoded><![CDATA[<p>This has been a project on the back burner for a while that I am finally getting around to creating.  Today I bring to you my newest project, <a href="http://youtube.com/mitchkeeler" target="_blank">Mitchcraft</a>.  This new YouTube series will follow me as I play the sandbox building and adventure game – Minecraft. I will do my best to keep things as entertaining as possible – but I’ll need your help.  Make sure you <a href="http://www.youtube.com/subscription_center?add_user=mitchkeeler" target="_blank">subscribe</a>, like and comment on the videos you see.  Giving me feedback on what you do like and don’t like will help me develop a show you want to see.</p>
<p><span id="more-3947"></span></p>
<p>I think rather than describing it to you, it might be better if I just show you the first episode:</p>
<p><iframe src="http://www.youtube.com/embed/m67QiDzqeV4" frameborder="0" width="560" height="315"></iframe></p>
<p>I have been a big fan of others doing these “Let’s Play” type videos for a while.  With my experience with recording the Web Hosting Show podcast, I figured the transition should not be too hard to make.  New updates for Mitchcraft will only be posted on <a href="http://www.mitchelaneous.com" target="_blank">Mitchelaneous.com</a>, so be sure to subscribe there too (if you are not already doing so).  Thank you for your continued support on all of my projects.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/11/28/new-project-announced-mitchcraft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Value &#8211; VPS or Dedicated Hosting?</title>
		<link>http://www.webhostingshow.com/2011/11/14/best-value-vps-or-dedicated-hosting/</link>
		<comments>http://www.webhostingshow.com/2011/11/14/best-value-vps-or-dedicated-hosting/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 10:00:30 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Web Hosting Podcasts]]></category>
		<category><![CDATA[costs]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[dedicated]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[RAM]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=3902</guid>
		<description><![CDATA[If you need high performance web hosting, the choice you have these days is between dedicated hosting and VPS hosting.  So, which one is a better value?  Which hosting plan type with give you the most bang for your buck?  Well, for the most part &#8211; it will come down to your basic hosting needs.  [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-3938" title="VPS vs Dedicated Hosting" src="http://www.webhostingshow.com/wp-content/uploads/2011/07/value.jpg" alt="VPS vs Dedicated Hosting" width="181" height="181" />If you need high performance web hosting, the choice you have these days is between dedicated hosting and VPS hosting.  So, which one is a better value?  Which hosting plan type with give you the most bang for your buck?  Well, for the most part &#8211; it will come down to your basic hosting needs.  More and more people are turning to these two hosting plan types as their own website grow in popularity so let me break down the basics of why one of these hosting plan types might be better than the other.</p>
<div class="woo-sc-box download   "><strong><a href="http://www.webhostingshow.com/showarchives/WebHostingShow219.mp3">Download the Web Hosting Show, Episode 219!</a></strong><br />
<strong>Running Time: </strong>6 minutes | <strong>File Size:</strong>1.38 MB</div>
<p><span id="more-3902"></span>So which one of these two web hosting plans gives you the best value?</p>
<h2>VPS Hosting Value</h2>
<p>VPS is an acronym for virtual private server.  I won&#8217;t go too deep into the dictionary definition, but in a nutshell this type of hosting plan is a virtual machine setup on a server.  A web host can run a series of VPS accounts all from the same server (as they do with shared hosting) however, VPS hosting gives you more server resources to work with (such as RAM and CPU power).  If you are just running a series of websites and have no idea how to be a server administrator &#8211; VPS is the best upgrade you can make.  You can get the power of a dedicated server environment at a significantly cheaper price.  The drawback with VPS hosting is that you might not be able to do some advanced server side configurations.</p>
<h2>Dedicated Hosting Value</h2>
<p>A dedicated server or dedicated hosting plan would be you renting an entire server to do the work you need to have done.  Unless you get it fully managed (which will be costly) you will be responsible for keeping all the server side things like the control panel, PHP, MySQL and other things of that nature all updated yourself. If you know how to do all that, this isn&#8217;t a problem.  Your average guy on the street might have no clue how to do this so this is already the first drawback for the service.  The advantage to dedicated hosting is that you get to set things up however you see fit.  The window of customization is fully open for you to tweak and configure things to fit your needs.</p>
<p>Overall, I think most people will find that VPS hosting offers more value than a dedicated server hosting package. The one thing it comes down to for me is that you can get the best of both shared hosting and dedicated hosting all wrapped into one package.  You can get the server side things totally managed by the web host, as you would with shared hosting.  VPS hosting also offers you more RAM and CPU usage, which is necessary for any popular website of any type. If you have another opinion though, feel free to share them in the comments.  Would love to hear a viewpoint from the other side of the fence.</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/11/14/best-value-vps-or-dedicated-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.webhostingshow.com/showarchives/WebHostingShow219.mp3" length="1455669" type="audio/mpeg" />
<enclosure url="http://www.webhostingshow.com/showarchives/WebHostingShow218.mp3" length="2917264" type="audio/mpeg" />
		</item>
		<item>
		<title>Give Me Your Podcast Ideas!</title>
		<link>http://www.webhostingshow.com/2011/07/11/give-me-your-podcast-ideas/</link>
		<comments>http://www.webhostingshow.com/2011/07/11/give-me-your-podcast-ideas/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 12:24:20 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[suggestions]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>
		<category><![CDATA[webmasters]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/07/11/give-me-your-podcast-ideas/</guid>
		<description><![CDATA[Dear Loyal Listeners, HELP! It is your good friend, the web hosting industry&#8217;s media rock star, here with a &#8216;bit of a problem that I hope you can help me with.&#160; You see, the podcast has been on a &#8216;bit of a hiatus as of late &#8211; and I am sorry for that.&#160; However, I [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="Need Podcast Ideas" border="0" alt="Web Hosting Show Ideas" align="right" src="http://www.webhostingshow.com/wp-content/uploads/2011/07/helpwanted.jpg" width="300" height="229" />Dear Loyal Listeners, </p>
<p>HELP!</p>
<p>It is your good friend, the web hosting industry&#8217;s media rock star, here with a &#8216;bit of a problem that I hope you can help me with.&#160; You see, the podcast has been on a &#8216;bit of a hiatus as of late &#8211; and I am sorry for that.&#160; However, I have just about run out of ideas and topics.&#160; To me, it seems like I have covered just about everything there is &#8211; so I need your help. </p>
<p><span id="more-3901"></span>
<p>Let me know, what new topics would you like to hear talked about on the Web Hosting Show? You suggest it &#8211; and I will do it.&#160; It is as simple as that.&#160; This podcast isn&#8217;t for me, it isn&#8217;t for them, it is for you &#8211; so if there is a topic you would like to learn more about, and it has something to do with the web hosting industry, please send it my way. </p>
<p>Even if you have never commented here or left a message on any website before, I want your opinions, your ideas.&#160; Let me know how I can make this resource better for you and I will do it. So how can you send me these ideas? You can either leave them as a comment on this post or use my <a href="http://www.webhostingshow.com/contact-the-web-hosting-show/" target="_blank">nifty contact page</a> to send your message along.</p>
<p>Thank you for your support and for your ideas for future episodes of the Web Hosting Show podcast.</p>
<p>- Mitch</p>
                                                                                <strong>Facebook Fan Page</strong>  Come join the fun on the Web Hosting Show <a href="http://www.facebook.com/MitchProjects">Facebook Fan Page</a>!</a><br />
<br />
&copy; <a href="http://www.mitchkeeler.com">Mitch Keeler</a> 2011 | Check out my <a href="http://www.firefoxfacts.com">firefox help site</a> and my <a href="http://www.mitchelaneous.com">tech blog</a> too!</a>    <br />
<br>&nbsp;                                                               ]]></content:encoded>
			<wfw:commentRss>http://www.webhostingshow.com/2011/07/11/give-me-your-podcast-ideas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

