<?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 &#187; Web Hosting Tutorials</title>
	<atom:link href="http://www.webhostingshow.com/category/hosting-segments/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>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>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>
		<item>
		<title>Will Dedicated Hosting Die?</title>
		<link>http://www.webhostingshow.com/2011/06/28/will-dedicated-hosting-die/</link>
		<comments>http://www.webhostingshow.com/2011/06/28/will-dedicated-hosting-die/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 11:31:16 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[dedicated]]></category>
		<category><![CDATA[dedicated hosting]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[replacement]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[vps hosting]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/06/28/will-dedicated-hosting-die/</guid>
		<description><![CDATA[If you look across the board at some of the biggest and brightest web hosting companies out there, you will see the trend is the same.&#160; A lot of companies out there are looking to get rid of the dedicated servers and start offering alternatives like virtual server hosting.&#160; So, why is this happening?&#160; I [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 0px 5px 5px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="Dedicated Hosting" border="0" alt="Dedicated Hosting" align="right" src="http://www.webhostingshow.com/wp-content/uploads/2011/06/image.png" width="154" height="146" />If you look across the board at some of the biggest and brightest web hosting companies out there, you will see the trend is the same.&#160; A lot of companies out there are looking to get rid of the dedicated servers and start offering alternatives like virtual server hosting.&#160; </p>
<p><span id="more-3898"></span>
<p>So, why is this happening?&#160; I do think that costs have a big part to play in it.&#160; Dedicated servers cost more to run than some of the alternatives out there.&#160; They are bulky and hard to maintain once they get so old.&#160; It would be like you buying a pair of shoes and the company that makes the shoes has to guarantee they still work, so every couple of years they send you an update pair.&#160; In the long run, dedicated hosting has reached its peak of usefulness.&#160; </p>
<p>VPS hosting has also grown by leaps and bounds as the eventual successor to the dedicated server hosting setup.&#160; It is much easier to scale, setup and maintain. The only drawback for some would be the fact that it doesn&#8217;t exactly offer the customizability you might have with a dedicated server. </p>
<p>Some people might call me crazy for saying dedicated hosting is on the way out.&#160; However, those same people might have never noticed the free hosting providers of the world going out of business left and right either.&#160; </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/06/28/will-dedicated-hosting-die/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google +1 for WordPress</title>
		<link>http://www.webhostingshow.com/2011/06/27/google-1-for-wordpress/</link>
		<comments>http://www.webhostingshow.com/2011/06/27/google-1-for-wordpress/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 12:26:21 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Beginner Help]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google +1]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/06/27/google-1-for-wordpress/</guid>
		<description><![CDATA[Since the release of Google +1, webmasters from all around the world have been racing to find the easiest way to get this button added to their websites.&#160; Everybody wants to keep the Google overlords happy and will give their left arm to get a higher ranking in the search engine.&#160; So, how can people [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-right-width: 0px; margin: 0px 0px 0px 5px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Google +1 WordPress" border="0" alt="Google +1 WordPress" align="right" src="http://www.webhostingshow.com/wp-content/uploads/2011/06/google-1.jpg" width="184" height="138" />Since the release of <a href="http://www.mitchelaneous.com/2011/06/06/how-to-add-google-1-to-your-website/" target="_blank">Google +1</a>, webmasters from all around the world have been racing to find the easiest way to get this button added to their websites.&#160; Everybody wants to keep the Google overlords happy and will give their left arm to get a higher ranking in the search engine.&#160; So, how can people using WordPress get in on the action?&#160; Install the new Google +1 Button plugin for WordPress.</p>
<p><span id="more-3896"></span>
<p>Installation is pretty simple.&#160; You simply download the add-on and add it to your /wp-content/plugins/ directory.&#160; Then, activate the plugin from the Plugins menu inside of WordPress.&#160; You have the option to insert the code automatically or via a shortcode.&#160; The choice is up to you. </p>
<p>You can pick up the Google +1 plugin for WordPress from the <a href="http://wordpress.org/extend/plugins/google-1/" target="_blank">WordPress Plugin Directory</a>.</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/06/27/google-1-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Gets a Facelift</title>
		<link>http://www.webhostingshow.com/2011/04/06/google-analytics-gets-a-facelift/</link>
		<comments>http://www.webhostingshow.com/2011/04/06/google-analytics-gets-a-facelift/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 12:38:10 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Google-Analytics]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[tour]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/04/06/google-analytics-gets-a-facelift/</guid>
		<description><![CDATA[I don&#8217;t know many webmasters these days that don&#8217;t use Google Analytics in one way or another.&#160; It is simply one of the best third party website statistic tools out there.&#160; Here recently, it also got a &#8216;bit of a facelift as far as how the content is organized.&#160; Everything is much more focused on [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know many webmasters these days that don&#8217;t use <strong>Google Analytics</strong> in one way or another.&#160; It is simply one of the best third party website statistic tools out there.&#160; Here recently, it also got a &#8216;bit of a facelift as far as how the content is organized.&#160; Everything is much more focused on getting you the information you need, faster.</p>
<p><span id="more-3894"></span>
<p>For example, here is the new dashboard for another website of mine Firefox Facts:</p>
<p><img style="margin: 0px auto; display: block; float: none" title="Google Analytics Dashboard" alt="Google Analytics Dashboard" src="http://www.webhostingshow.com/wp-content/uploads/2011/04/image.png" width="500" height="303" /></p>
<p>If you need to quickly view basic statistics, this is the best place to go.&#160; You can also customize it with more widgets &#8211; to give you access to more data. </p>
<p>As you browse through the rest of the interface &#8211; you will se much of the same information is there &#8211; things are just organized in a much better way.&#160; The use of drop down menus on the sidebar also helps to better focur yourself on seeing the data you need to see on and about your website too:</p>
<p><img style="margin: 0px auto; display: block; float: none" title="New Google Analytics Sidebar" alt="New Google Analytics Sidebar" src="http://www.webhostingshow.com/wp-content/uploads/2011/04/image1.png" width="500" height="267" /></p>
<p>The last new feature that really impressed me was the drop down menu at the top that lets you switch between websites you run very quickly.&#160; It includes a search option too &#8211; for those of us managing multiple domains this is even better.&#160; Simply type the first few letters of the domain and you can quickly pull up a Google Anyaltics profile for it. <img style="margin: 0px auto; display: block; float: none" title="Search/Accounts Box in Google Analytics" alt="Search/Accounts Box in Google Analytics" src="http://www.webhostingshow.com/wp-content/uploads/2011/04/image2.png" width="500" height="244" /></p>
<p>If you want to play around with this new version of Google Analytics yourself, simple log into your Google Analytics account and click on the red &quot;New Version&quot; link at the top.&#160;&#160; Overall, I would say a great tool just got even greater. </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/04/06/google-analytics-gets-a-facelift/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

