<?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; design</title>
	<atom:link href="http://www.webhostingshow.com/tag/design/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>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>Hosting News Facelift</title>
		<link>http://www.webhostingshow.com/2011/03/08/hosting-news-facelift/</link>
		<comments>http://www.webhostingshow.com/2011/03/08/hosting-news-facelift/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 13:25:09 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Hosting News]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[the hosting news]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2011/03/08/hosting-news-facelift/</guid>
		<description><![CDATA[It is not often that I highlight other sources of hosting information here, but I do feel like something should be said for the hard work and dedication that has gone into turning The Hosting News website around.&#160; For years, the Hosting News was a good source for finding hosting information &#8211; but the website [...]]]></description>
			<content:encoded><![CDATA[<p>It is not often that I highlight other sources of hosting information here, but I do feel like something should be said for the hard work and dedication that has gone into turning The Hosting News website around.&#160; For years, the Hosting News was a good source for finding hosting information &#8211; but the website interface was badly designed, ugly and hard to navigate through.&#160; </p>
<p><span id="more-3884"></span>
<p>For many of us, we remember The Hosting News website looking like this:</p>
<p><img style="margin: 0px auto; display: block; float: none" title="The Hosting News in 2008" alt="The Hosting News in 2008" src="http://www.webhostingshow.com/wp-content/uploads/2011/03/image1.png" width="500" height="313" /></p>
<p>However, since the ownership situation has been shifted around and they have headed in a new direction, the layout and design today looks more like this:</p>
<p><img style="margin: 0px auto; display: block; float: none" title="The Hosting News in 2010" alt="The Hosting News in 2010" src="http://www.webhostingshow.com/wp-content/uploads/2011/03/image2.png" width="500" height="313" /></p>
<p>Isn&#8217;t it amazing what a new layout can do to breath new life into a website project?&#160; While I might not be the guru of website style and design, I can point out that example B is a lot better than example A.&#160; </p>
<p>So if you haven&#8217;t visited <a href="http://thehostingnews.com/" target="_blank">The Hosting News</a> lately, go give them a shot. I think you will agree with me that the better designed website has really turned this website around into a resource we can all learn something from.</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/03/08/hosting-news-facelift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Free Photo Gallery Tools</title>
		<link>http://www.webhostingshow.com/2010/11/05/3-free-photo-gallery-tools-for-any-occasion/</link>
		<comments>http://www.webhostingshow.com/2010/11/05/3-free-photo-gallery-tools-for-any-occasion/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 10:00:51 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[image galleries]]></category>
		<category><![CDATA[minishowcase]]></category>
		<category><![CDATA[photo galleries]]></category>
		<category><![CDATA[smoothgallery]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>
		<category><![CDATA[zenphoto]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=3700</guid>
		<description><![CDATA[It might be easy to find a free photo gallery script you can get up and running on your website.  However, not all scripts are created equal.  Sometimes you might want a simple page dedicated to photos, and other times you might need an entire domain dedicated to the idea of showcasing your images.  I [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="best free image gallery scripts" src="http://www.webhostingshow.com/wp-content/uploads/2010/10/galleries.png" border="0" alt="free photo gallery scripts" width="495" height="204" /></p>
<p>It might be easy to find a free photo gallery script you can get up and running on your website.  However, not all scripts are created equal.  Sometimes you might want a simple page dedicated to photos, and other times you might need an entire domain dedicated to the idea of showcasing your images.  I have searched the Web high and low to bring you the best free image gallery tools for big projects, medium sized projects and lightweight projects.</p>
<p><span id="more-3700"></span></p>
<p>Here are the three best free image gallery scripts, depending on the job you need them for.</p>
<h3>An Advanced Free Image Gallery Script</h3>
<p><a href="http://www.zenphoto.org/" target="_blank"><strong>Zenphoto</strong></a> is a great gallery tool that also comes with some CMS (content management system) options to make it a great tool to use to run your entire website.  It doesn&#8217;t try to do too much though, when it comes to features.  it keeps things simple by just delivering one of the best web media gallery management tools out there.  Once installed, the administrator interface is pretty easy to pick up and with the online template system they have &#8211; you can create a beautiful website in no time at all. Zenphoto can also handle audio and video too &#8211; which makes it an all in one multimedia gallery tool too.</p>
<h3>A Middle of the Road Free Image Gallery Script</h3>
<p><a href="http://minishowcase.net/" target="_blank"><strong>Minishowcase</strong></a> is another good gallery script that keeps things really simple.  With just a little PHP and JavaScript, you can put together an online gallery of photography, artwork or anything else without the need of configuring databases or customizing the code. You can literally get this script up and running in just a few minutes.  All you need to do is bring the content to showcase. If you need a gallery tool that is on the simple side (but still looks good) there is no better choice than Minishowcase.</p>
<h3>A Very Lightweight Free Image Gallery Script</h3>
<p><a href="http://smoothgallery.jondesign.net/" target="_blank"><strong>SmoothGallery</strong></a> is the last album script I have to share with you today. Using mootools, this fantastic JavaScript gallery and slideshow system lets you setup a simple image gallery, slideshow or showcase anywhere on your pre-existing website.  While you could not use this tool to run your entire website, it does make for a great way to showcase your work on the website you already have set up.  So if you would rather just showcase your images on one section of your page, rather than dedicating an entire website on it &#8211; SmoothGallery is a great script to use to get that job done.</p>
<p>There are plenty of more scripts out there, but these three of the best for the occasions you need them.  Zenphoto makes for a great tool to base your entire website off of.  Minishowcase is a nice lightweight gallery tool that could maybe be put in just one section of your website.  Then, last but not least, you have SmoothGallery.  It would let you display your images on a single page, just to quickly show them off to your website visitors.</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/2010/11/05/3-free-photo-gallery-tools-for-any-occasion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mitchelaneous Redesigned (Need More Mitch?)</title>
		<link>http://www.webhostingshow.com/2009/09/27/new-layout-for-mitchelaneous-give-me-your-feedback/</link>
		<comments>http://www.webhostingshow.com/2009/09/27/new-layout-for-mitchelaneous-give-me-your-feedback/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 16:48:56 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[high contrast]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[mitch-keeler]]></category>
		<category><![CDATA[mitchelaneous]]></category>
		<category><![CDATA[press box]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2009/09/27/new-layout-for-mitchelaneous-give-me-your-feedback/</guid>
		<description><![CDATA[Now I do not plug my other projects very often, however I think this is an important enough update to share with the rest of my fans (even my wonderful podcast subscribers)!&#160; I just finished up with a brand new redesign of my layout over at Mitchelaneous.com – and I would love your feedback on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mitchelaneous.com"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="New Mitchelaneous Layout!" border="0" alt="New Mitchelaneous Layout!" src="http://www.webhostingshow.com/wp-content/uploads/2009/09/image2.png" width="520" height="322" /></a> </p>
<p>Now I do not plug my other projects very often, however I think this is an important enough update to share with the rest of my fans (even my wonderful podcast subscribers)!&#160; I just finished up with a brand new redesign of my layout over at <a href="http://www.mitchelaneous.com">Mitchelaneous.com</a> – and I would love your feedback on it.</p>
<p><strong>What is Mitchelaneous?</strong>&#160; It is my personal blog, with tutorials helping with tech tips, web development and geeky entertainment.&#160; Pretty much everything else I want to post about is posted here, that does not fit under the web hosting category of <a href="http://www.mitchelaneous.com/2009/09/27/new-layout-for-mitchelaneous-give-me-your-feedback/">WebHostingShow.com</a> and the Mozilla category or <a href="http://www.firefoxfacts.com">FirefoxFacts.com</a>.&#160;&#160; </p>
<p> <span id="more-2118"></span>
</p>
<p><strong><u>Here are a few of the popular posts to check out too:</u></strong></p>
<ul>
<li><a href="http://www.mitchelaneous.com/2009/04/09/best-of-the-free-zombie-flash-games/">Best of the Free Zombie Flash Games</a> </li>
<li><a href="http://www.mitchelaneous.com/2008/10/05/free-mega-man-desktop-icons/">Free Mega Man Desktop Icons</a> </li>
<li><a href="http://www.mitchelaneous.com/2008/03/03/garfield-without-garfield-is-funnier/">Garfield Without Garfield is Funnier</a> </li>
<li><a href="http://www.mitchelaneous.com/2007/09/19/9-wordpress-alternatives/">9 WordPress Alternatives</a> </li>
<li><a href="http://www.mitchelaneous.com/2008/01/31/get-more-from-google-calendar/">Get More from Google Calendar</a> </li>
</ul>
<p>As you can see, I go all over the place with this blog.&#160; For the most part though, I try to keep the madness focused on helping you get more out of what you want to do, and provide you with the best advice I can on a number of different topics.&#160; From wallpaper downloads, to free custom desktop icons, to the best of the video game world.&#160; There is something for everybody’s inner-geek to enjoy. </p>
<p><strong><u>How can you subscribe for free?</u></strong></p>
<p>You can also get updates via e-mail of new posts, or from your favorite feed reader:</p>
<p><a href="http://feedproxy.google.com/mitchelaneous"><img alt="" src="http://www.feedburner.com/fb/images/pub/feed-icon32x32.png" /></a> <a href="http://feedproxy.google.com/mitchelaneous">Subscribe in a Reader!</a> | <a href="http://feedburner.google.com/fb/a/mailverify?uri=mitchelaneous&amp;amp;loc=en_US">Subscribe to Mitchelaneous by E-mail</a></p>
<p><a href="http://add.my.yahoo.com/rss?url=http://feedproxy.google.com/mitchelaneous"><img alt="" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif" /></a> <a href="http://fusion.google.com/add?feedurl=http://feedproxy.google.com/mitchelaneous"><img alt="Add to Google Reader or Homepage" src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" /></a> <a href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http://feedproxy.google.com/mitchelaneous"><img alt="Subscribe in NewsGator Online" src="http://www.newsgator.com/images/ngsub1.gif" /></a> <a href="http://feeds.my.aol.com/add.jsp?url=http://feedproxy.google.com/mitchelaneous"><img alt="Add to My AOL" src="http://favorites.my.aol.com/ffclient/webroot/0.2.1/locale/en_US/aol/images/myAOLButtonSmall.gif" /></a> <a href="http://www.netvibes.com/subscribe.php?url=http://feedproxy.google.com/mitchelaneous"><img alt="Add to netvibes" src="http://www.netvibes.com/img/add2netvibes.gif" width="91" height="17" /></a> <a href="http://www.bloglines.com/sub/http://feedproxy.google.com/mitchelaneous"><img alt="Subscribe in Bloglines" src="http://www.bloglines.com/images/sub_modern11.gif" /></a> <a href="http://www.pageflakes.com/subscribe.aspx?url=http://feedproxy.google.com/mitchelaneous"><img border="0" alt="Add to Pageflakes" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif" /></a></p>
<p>You can also just copy and paste this into your feed reader of choice too:</p>
<pre>http://feeds.feedburner.com/mitchelaneous</pre>
<p>Go check it out at <a href="http://www.creativesynthesis.net/blog/projects/web-commodities/press-box/">Mitchelaneous.com</a> and let me know what you think!</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/2009/09/27/new-layout-for-mitchelaneous-give-me-your-feedback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take Better Web Site Screenshots</title>
		<link>http://www.webhostingshow.com/2009/09/15/take-better-web-site-screenshots/</link>
		<comments>http://www.webhostingshow.com/2009/09/15/take-better-web-site-screenshots/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 10:00:12 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[jpg]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>
		<category><![CDATA[webshot]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=2074</guid>
		<description><![CDATA[Need to take a screen shot of a web site to show off to somebody?  By far, one of my favorite programs to take screenshots is WebShot.  It is almost the perfect screenshot and web page thumbnail generator utility.  How do you use it?  You put the web site address you want to get the [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" src="http://www.webhostingshow.com/wp-content/uploads/2009/09/image.png" border="0" alt="image" width="460" height="325" /></p>
<p>Need to take a screen shot of a web site to show off to somebody?  By far, one of my favorite programs to take screenshots is WebShot.  It is almost the perfect screenshot and web page thumbnail generator utility.  How do you use it?  You put the web site address you want to get the capture of in the URL text box, and then hit the button labeled, “Start”.</p>
<p>Diving deeper into the download you can also set it up to capture multiple URLs, a specific size image, edit the default browser sizes and more.  For most people the free version should get the job done – however if you want even more features you might look into getting the personal or server edition.</p>
<p>To pick it up, or get more help on how to use it – go visit <a href="http://www.websitescreenshots.com/">WebSiteScreenshots.com</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/2009/09/15/take-better-web-site-screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squarespace is an All in One Hosting Package</title>
		<link>http://www.webhostingshow.com/2009/06/15/squarespace-is-an-all-in-one-hosting-package/</link>
		<comments>http://www.webhostingshow.com/2009/06/15/squarespace-is-an-all-in-one-hosting-package/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 09:45:41 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[squarespace]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/?p=1912</guid>
		<description><![CDATA[I have heard about Squarespace from a number of different sources the past few weeks, so I thought I would give it a look.  For those of you who may be new to the service, it is a fully hosted, completely managed environment for creating and hosting a web site. The service really does a [...]]]></description>
			<content:encoded><![CDATA[<p>I have heard about <strong>Squarespace</strong> from a number of different sources the past few weeks, so I thought I would give it a look.  For those of you who may be new to the service, it is a fully hosted, completely managed environment for creating and hosting a web site.</p>
<p>The service really does a great job a breaking down the parts of your web site down into bricks.  You kind shift and move the bricks around, make make your web site look the way you want.  The designs to choose from are great too, and you can customize them to suit your needs.</p>
<p>Along with hosting, and design – they also provide you with real time visitor analytics and stats about all of your pages.  That way you can work on marketing yourself better too.</p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="290" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=4480373&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=666666&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="290" src="http://vimeo.com/moogaloop.swf?clip_id=4480373&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=666666&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p align="center"><a href="http://vimeo.com/4480373">Squarespace Tour Video</a> from <a href="http://vimeo.com/squarespace">Squarespace</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>At $8 a month, the service really has a lot going for it, if you are looking for a mix of hosting, plus a quality content management system.  Try them out for free, at <a href="http://www.squarespace.com">Squarespace.com</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/2009/06/15/squarespace-is-an-all-in-one-hosting-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easter Break and New Segment Archives</title>
		<link>http://www.webhostingshow.com/2008/03/24/easter-break-and-new-segment-archives/</link>
		<comments>http://www.webhostingshow.com/2008/03/24/easter-break-and-new-segment-archives/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 11:04:07 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[segments]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>
		<category><![CDATA[web-hosting]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2008/03/24/easter-break-and-new-segment-archives/</guid>
		<description><![CDATA[Well this most recent Easter break kicked my butt as far as time goes, so afraid my time to do a podcast this week was cut a little short.&#160; However I was able to go through the segment archive for all the past segments we have done on this show and organize them a &#8216;bit [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="148" alt="new-segment-archive" src="http://www.webhostingshow.com/wp-content/uploads/2008/03/windowslivewritereasterbreakandnewsegmentarchives-54cbnew-segment-archive-3.png" width="101" align="right" border="0" />Well this most recent Easter break kicked my butt as far as time goes, so afraid my time to do a podcast this week was cut a little short.&#160; However I was able to go through the segment archive for all the past segments we have done on this show and organize them a &#8216;bit more.&#160; </p>
<p>This is one complaint out of many I hope to give worked on this next week or so.&#160; As you can see on <a href="http://www.webhostingshow.com">WebHostingShow.com</a> I have things divided up into:</p>
<ul>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/backend-stuff/">Backend Stuff</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/beginner-help/">Beginner Help</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/commentary/">Commentary</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/downloads/">Downloads</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/free-hosting/">Free Hosting</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/hosting-news/">Hosting News</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/online-tools/">Online Tools</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/shopping-advice/">Shopping Advice</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/web-design/">Web Design</a></li>
<li><a href="http://www.webhostingshow.com/category/hosting-segments/tutorials/">Web Hosting Tutorials</a></li>
</ul>
<p>If you have any other suggestions for the podcast or the podcast web site, please feel free to let me know.</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/2008/03/24/easter-break-and-new-segment-archives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 SEO Tips for Anybody to Use</title>
		<link>http://www.webhostingshow.com/2008/02/12/10-seo-tips-for-anybody-to-use/</link>
		<comments>http://www.webhostingshow.com/2008/02/12/10-seo-tips-for-anybody-to-use/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 10:00:57 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[search-engines]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[webmaster]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2008/02/12/10-seo-tips-for-anybody-to-use/</guid>
		<description><![CDATA[Search engine optimization (otherwise known as SEO) is not as difficult as some may make you think. Honestly, if you use a little common sense, and you learn the basics then you should have no problem at all at making the search engines fall head over heels for you. Here are 10 tips I think [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webhostingshow.com/wp-content/uploads/2008/02/seo-tips.jpg" alt="SEO Tips for Everybody" align="right" /> Search engine optimization <em>(otherwise known as SEO)</em> is not as difficult as some may make you think.  Honestly, if you use a little common sense, and you learn the basics then you should have no problem at all at making the search engines fall head over heels for you.  Here are 10 tips I think anybody could use to make the search engines give you a little more love.</p>
<p>1.  Don&#8217;t overuse or &#8220;spam&#8221; the meta keywords or description with content that is not related to what is on your actual page.</p>
<p>2.  Contact other webmasters that deliver content much like your own and get them to link back to you.  The social aspect of Web popularity can not be forgotten about.  Chances are if somebody like something you do &#8211; they will link to it to share with others.</p>
<p>3.  Make sure your title tag changes depending on the page you are viewing.</p>
<p>4.  Make good use of your headlines, and keep them in order.  Your main headline should be h1, then go to h2, and then to h3.  Also toss a couple <em>(one or two)</em> keywords in your headlines.</p>
<p>5.  Use common sense.  If you hear about an awesome SEO tip online somewhere, and it sounds kind of fishy &#8211; don&#8217;t do it.  I&#8217;ve never met anybody who made it to the top of Google and said it was all thanks to his free 101 SEO dirty tricks handbook he bought of a page that looks like it was designed in 1995.</p>
<p>6.  Create a <a href="http://en.wikipedia.org/wiki/Sitemaps">XML sitemap</a> and learn to keep it updated.  Many content management systems offer plugins for creating them too.  The best one for WordPress is <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google XML Sitemaps</a>.</p>
<p>7.  Use relevant keywords in the content of your web page, but do not go overboard.   If you try to go over the top with the keyword usage &#8211; you are often labeled by the search engines as a &#8220;keyword stuffer&#8221; and that can hurt more than help in the long run.</p>
<p>8.  Use Google&#8217;s <a href="https://www.google.com/webmasters/tools/">webmaster tools</a> and also submit yourself to Yahoo&#8217;s <a href="https://siteexplorer.search.yahoo.com/mysites">site explorer</a>.  Both offer ways to submit and watch your status in those two search engines.</p>
<p>9.  Keep tabs on the search for your web site&#8217;s name.  I often search for &#8220;web hosting show&#8221; just to keep tabs on who else is showing up for that search phrase.</p>
<p>10.  Get use out of title tags for links and anchor text for images.  Use them to describe where they go and what they are though.</p>
<p>Be patient, your search engine rankings are not going to change in a day.  As long as you are delivering good content that is relevant to your topic of choice the search engines should love you.</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/2008/02/12/10-seo-tips-for-anybody-to-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All in 1 Free Hosting with Webnode</title>
		<link>http://www.webhostingshow.com/2008/01/25/all-in-1-free-hosting-with-webnode/</link>
		<comments>http://www.webhostingshow.com/2008/01/25/all-in-1-free-hosting-with-webnode/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 10:00:19 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Free Hosting]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>
		<category><![CDATA[deals]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[webnode]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2008/01/25/all-in-1-free-hosting-with-webnode/</guid>
		<description><![CDATA[Looking to put up a simple site for free? One new service that caught my attention is Webnode. They promise that you can use your own domain, create an awesome personal page or blog, and that you can do this from anywhere. In their pitch from the front page, that do make it sound worth [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webhostingshow.com/wp-content/uploads/2008/01/webnode.jpg" alt="Webnode - Free Hosting" align="right" />Looking to put up a simple site for <strong>free</strong>?  One new service that caught my attention is <a href="http://www.webnode.com/en/">Webnode</a>. They promise that you can use your own domain, create an awesome personal page or blog, and that you can do this from anywhere.</p>
<p>In their pitch from the front page, that do make it sound worth looking into deeper for sure:</p>
<blockquote><p>Webnode brings you a brand new innovative way of creating and editing advanced websites by just using a web browser. The system is very easy to use and is fully interactive. Real-time fast editing as you see it in the browser. By using Drag-and-Drop from the toolbar you can add new content such as polls, forums, articles, catalogues, widgets such as PayPal and much more.</p></blockquote>
<p>Here are only a few of the many features they provide:</p>
<ul>
<li>Real Time Editing</li>
<li>Drag and Drop Technology</li>
<li>Gadgets and Widgets</li>
<li>40+ Design Templates</li>
<li>Polls, FAQ&#8217;s, RSS, and Webmail</li>
</ul>
<p>So where is the catch?  I have yet to find one yet &#8211; but to monitize the service, I can bet they will be adding down the road higher disk space and bandwidth limits for a fee or other services to get you to fork over your cash.  If your low on cash and want to build yourself a simple/yet pretty web site, <a href="http://www.webnode.com/en/">Webnode</a> is worth checking into.</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/2008/01/25/all-in-1-free-hosting-with-webnode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rules for Any Web Host&#8217;s Front Page</title>
		<link>http://www.webhostingshow.com/2008/01/01/rules-for-any-web-hosts-front-page/</link>
		<comments>http://www.webhostingshow.com/2008/01/01/rules-for-any-web-hosts-front-page/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 10:00:20 +0000</pubDate>
		<dc:creator>Mitch</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Web Hosting Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[front page]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[suggestions]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web-hosts]]></category>

		<guid isPermaLink="false">http://www.webhostingshow.com/2008/01/01/rules-for-any-web-hosts-front-page/</guid>
		<description><![CDATA[Web design is a mysterious art that some can do and not many have mastered. When it comes to a Web hosting web site &#8211; people expect to see certain things as customers and if your lacking in these areas it could hurt you down the road. Sure fancy flash and really hot pictures of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webhostingshow.com/wp-content/uploads/2007/12/rules1.jpg" alt="Web Hosting Design Rules" /></p>
<p>Web design is a mysterious art that some can do and not many have mastered.  When it comes to a Web hosting web site &#8211; people expect to see certain things as customers and if your lacking in these areas it could hurt you down the road.  Sure fancy flash and really hot pictures of server racks are nice, but they won&#8217;t win you any clients.</p>
<p><font color="#008000"><strong>Keep it Simple</strong></font></p>
<p>Some web hosts out there like to fit as much content, flashing banners and overdone graphics on the front page as they can fit.  This is not the best way to go.  Personally, I like it when web hosts keep it simple.</p>
<p><font color="#008000"><strong>Give me the Basics</strong></font></p>
<p>I do not need to know every single detail about every single plan.  Here is a basic forumula for what I want to see on your front page:</p>
<ul>
<li>Company Name</li>
<li>Little Information About You</li>
<li>Plans  (Disk Space/Bandwidth at Least)</li>
<li> Links to Other Pages for More Information</li>
</ul>
<p>Finding the right balance between hype and helpful details is hard to do.  Once you have done it though, I promise your current and potential clients will really thank you.</p>
<p><font color="#008000"><strong> Sell Yourself in a Few Words</strong></font></p>
<p>If you doing something great it shouldn&#8217;t take that long to convey the message to others.  As much as having paragraph after paragraph about how good plan number one is or how great you are in general might look, keeping things short and sweet will go a long way.</p>
<p>Here are a few examples of web hosts <em>who do follow</em> all my rules:</p>
<p><a href="http://www.hostgator.com/">Hostgator.com</a> | <a href="http://www.lunarpages.com">Lunarpages.com</a> | <a href="http://www.hostmonster.com/">HostMonster.com</a> | <a href="http://www.startlogic.com">StartLogic.com<br />
</a><br />
It might take a while before you find the layout or design that is just right for your particular business.  The basics you need to remember though are to make sure you are different from the rest, touch base with everything that you cover and don&#8217;t be afraid to try something a little different.</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/2008/01/01/rules-for-any-web-hosts-front-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

