<?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>Loud Sign &#187; Web Hosting</title>
	<atom:link href="http://loudsign.com/blog/category/web-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://loudsign.com/blog</link>
	<description>::Internet Services Blog::</description>
	<lastBuildDate>Tue, 09 Feb 2010 21:59:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML Introduction</title>
		<link>http://loudsign.com/blog/2008/html-introduction/</link>
		<comments>http://loudsign.com/blog/2008/html-introduction/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 19:54:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Builder Site Web]]></category>
		<category><![CDATA[Business Hosting Web]]></category>
		<category><![CDATA[Cheap Hosting Web]]></category>
		<category><![CDATA[Web Hosting]]></category>
<category>html page</category><category>html tag</category><category>hyper text markup</category><category>hyper text markup language</category><category>page meta tags</category><category>web pages</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2008/html-introduction/</guid>
		<description><![CDATA[If you're a seasoned web designer/programmer, this is definitely not for you.  But, if you're new to the web and have no idea what HTML is or how web pages function, then this short primer will get you pointed in the right direction.

HTML is simply an acronym that stands for Hyper Text Markup Language. [...]]]></description>
			<content:encoded><![CDATA[<p>If you're a seasoned web designer/programmer, this is definitely not for you.  But, if you're new to the web and have no idea what HTML is or how web pages function, then this short primer will get you pointed in the right direction.</p>
<p><span id="more-54"></span></p>
<p>HTML is simply an acronym that stands for Hyper Text Markup Language.  It is simply a file that contains tags that tell a web server what to spit out.  You can create a web page in any text editor.  This includes notepad.  All you have to do is save it with the .html or .htm extension.  Well, you need tags in the document as well, but that goes without saying.</p>
<p>Okay, so you know that html is just an acronym.  And you know that html pages are simply text documents with tags in them.  Now, let me show you the bare bones html structure you need to use:</p>
<div class="igBar"><span id="lhtml-2"><a href="#" onclick="javascript:showPlainTxt('html-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-2">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/html.html" ><span style="color: #000000; font-weight: bold;">&lt;html&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/head.html" ><span style="color: #000000; font-weight: bold;">&lt;head&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/title.html" ><span style="color: #000000; font-weight: bold;">&lt;title&gt;</span></a></span>My first title<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/body.html" ><span style="color: #000000; font-weight: bold;">&lt;body&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">My first page and I'm stoked!</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/html&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Everything in brackets is a tag.  You have to have opening and closing tags.  We use the open tag first and then close it with the slash symbol in front of the tag name, enclosed with brackets.  It's the way the markup language works.  You have to start and end your pages with the html tag.  That just tells the web server, "Here comes my html page."  The header tag contains the title of the page, meta tags (we will explain in a later post), etc.  The body tag lets the server know that the main part of the page is coming.  This can contain text, pictures, tables, etc.  We will have to cover that at a later point.  But that's really the bare bones for you.  We'll also cover some free tools soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2008/html-introduction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Web Hosting</title>
		<link>http://loudsign.com/blog/2007/free-web-hosting/</link>
		<comments>http://loudsign.com/blog/2007/free-web-hosting/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 10:54:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Builder Site Web]]></category>
		<category><![CDATA[Cheap Hosting Web]]></category>
		<category><![CDATA[Web Hosting]]></category>
<category>free email</category><category>free web host</category><category>free web hosting</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/free-web-hosting/</guid>
		<description><![CDATA[One of the things that is highly sought after is free web hosting.  It seems that we always want something for free.  Well, we just so happen to offer free hosting when you buy a domain - but we don't just stop there!
 That's right, we offer a ton of extra stuff, including free web [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that is highly sought after is <a href="http://www.loudsign.com"  title="Free Web Hosting" target="_blank">free web hostin</a>g.  It seems that we always want something for free.  Well, we just so happen to offer free hosting when you buy a domain - but we don't just stop there!</p>
<p><span id="more-53"></span> That's right, we offer a ton of extra stuff, including <a href="https://www.securepaynet.net/gdshop/domain_offer.asp?isc=wwbb42&amp;prog%5Fid=293829&amp;ci=545&amp;app%5Fhdr="  title="Free Web Hosting" target="_blank">free web hosting</a>, when you buy or tranfer a domain through us!  This includes:</p>
<ul>
<li>Online Photo Filer</li>
<li>25MB email account</li>
<li>Free hosting</li>
<li>Web Site Builder</li>
<li>Quick Blogcast</li>
<li>100 Pack Email Forwarding</li>
<li>ETC!</li>
</ul>
<p>So, why not get started and <a href="https://www.securepaynet.net/gdshop/registrar/search.asp?isc=wwbb42&amp;ci=6935&amp;prog%5Fid=293829"  title="Register a Domain Name" target="_blank">register a domain name</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/free-web-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP Beginner Explanation</title>
		<link>http://loudsign.com/blog/2007/ftp-beginner-explanation/</link>
		<comments>http://loudsign.com/blog/2007/ftp-beginner-explanation/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 16:41:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business Web Hosting]]></category>
		<category><![CDATA[Cheap Hosting Web]]></category>
		<category><![CDATA[Web Hosting]]></category>
<category>file transfer protocol</category><category>free ftp clients</category><category>ftp tutorial</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/ftp-beginner-explanation/</guid>
		<description><![CDATA[It's fun getting your first website up.  It's exciting finally creating a design, or grabbing a blog template, or working in html.  But then comes the question of uploading that content to your hosting server.  And, for most beginners, this is where they don't understand where to go.  Don't worry, this step is incredibly easy, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://loudsign.com/blog/wp-content/uploads/2007/12/header-logo.jpg"  title="header-logo.jpg"><img src="http://loudsign.com/blog/wp-content/uploads/2007/12/header-logo.jpg" alt="header-logo.jpg" align="left" /></a>It's fun getting your first website up.  It's exciting finally creating a design, or grabbing a blog template, or working in html.  But then comes the question of uploading that content to your hosting server.  And, for most beginners, this is where they don't understand where to go.  Don't worry, this step is incredibly easy, once you understand what's going on.</p>
<p><span id="more-45"></span> The first thing you will need is your <strong>FTP</strong> login information.  <strong>FTP</strong> just stands for File Transfer Protocol.  It's just how files are transferred over the internet.  You don't need to know any more than that.  You may not know what your FTP login is.  Most of the time, you can find this if you login to your <a href="http://www.loudsign.com"  title="Web Host" target="_blank">web host</a>.  You will probably find that under your hosting information.  If not, give them a call and ask what your ftp info will be.  It is usually tied to your hosting login somehow.  Okay, once you have your FTP login it's time to get a FTP client.  The FTP client program will allow you to connect to the FTP server on your web hosting account.  Let me suggest some great, free FTP clients:</p>
<p><a href="http://www.smartftp.com/"  title="SmartFTP" target="_blank">SmartFTP</a> - I love this program and use it constantly.  It's free and easy to use.  It has a familiar file and folder look.  I highly recommend this FTP client.</p>
<p><a href="http://filezilla-project.org/download.php?type=client"  title="FileZilla" target="_blank">FileZilla</a> - A great program with a great name.  I know many people using this FTP program.  It's easy to use, but powerful.</p>
<p>Now, all you have to do is enter your site name and your FTP login information into one of these programs.  This will connect you to where you can upload your files.  If you are on a shared web host, then it should connect you straight into your web server file structure.  Just remember, if you are on windows, you will need an index.html file.  If you are on linux, you will need an index.php file if you are utilizing a php environment.  That's about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/ftp-beginner-explanation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here&#8217;s a quick way to stay in touch with your family</title>
		<link>http://loudsign.com/blog/2007/heres-a-quick-way-to-stay-in-touch-with-your-family/</link>
		<comments>http://loudsign.com/blog/2007/heres-a-quick-way-to-stay-in-touch-with-your-family/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 14:13:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Domain Registration]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://loudsign.com/blog/2007/heres-a-quick-way-to-stay-in-touch-with-your-family/</guid>
		<description><![CDATA[It's easy to lose track of what's going on with your family sometimes.  Especially if you have a large family, lots of kids and grandkids, and everyone is going in different directions.  I'm from a family that is spread all across the US also, which makes it even more difficult to keep in [...]]]></description>
			<content:encoded><![CDATA[<p>It's easy to lose track of what's going on with your family sometimes.  Especially if you have a large family, lots of kids and <a href="http://loudsign.com/blog/wp-content/uploads/2007/03/family-internet3.jpg"  title='family-internet3.jpg'><img src='http://loudsign.com/blog/wp-content/uploads/2007/03/family-internet3.jpg' alt='family-internet3.jpg' align ="right" /></a>grandkids, and everyone is going in different directions.  I'm from a family that is spread all across the US also, which makes it even more difficult to keep in touch.  </p>
<p>So, the thing most of us have done to keep in touch is to get in tune with email, or some have even gone the MySpace route to bridge the gap between us and the younger generation.  There are <a href="http://empty-nest.contentquake.com/category/electronics/" >lots of options out there to keep in touch with family</a> over the internet, but one that is easier than you might think is having your own website.  With your own website or blog, you are able to keep all of your loved ones informed about what is going on with you in your life at once.  This allows for consistent communication without the back and forth of email.</p>
<p>And it's much easier than you might think.  I recently set up a new site with a blog on it in about an hour with some help from the guys at <a href="http://loudsign.com/" >Loudsign</a>.  And it's also not nearly as expensive as you might imagine.  You can get out the door with a package from Loudsign, that covers two years of web hosting and your domain name for less than 70$!  It's true, head on over to <a href="https://www.securepaynet.net/gdshop/hosting/shared.asp?prog_id=293829&#038;ci=1783&#038;" >view all the packages Loudsign has to offer here.</a></p>
<p>If you don't have the time or energy for a website of your own, you can keep in touch with those family and friends with the Loudsign Online Photo Filer.  This is a great service that allows you to share, print and manage all your photos online.  More information about it <a href="https://www.securepaynet.net/gdshop/photo/landing.asp?prog_id=293829&#038;ci=7314&#038;" >can be found here.</a></p>
<p>So, don't mess with the spam zone that is MySpace, and save your email for personal conversations.  But if you want to keep in touch with all of your family at once, get a website started with the good folks here at Loudsign.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/heres-a-quick-way-to-stay-in-touch-with-your-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build A Website You Can Be Proud Of</title>
		<link>http://loudsign.com/blog/2007/build-a-website-you-can-be-proud-of/</link>
		<comments>http://loudsign.com/blog/2007/build-a-website-you-can-be-proud-of/#comments</comments>
		<pubDate>Thu, 08 Mar 2007 15:14:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Online Advertising]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://loudsign.com/blog/2007/build-a-website-you-can-be-proud-of/</guid>
		<description><![CDATA[The online marketplace is growing more and more everyday.  Online ad revenues are at an all time high right now.  In fact, in 2006, online ad spending in the US grew by 34% according to a recent article on Yahoo.  Also, ad spending is expected to total more than 19 billion in [...]]]></description>
			<content:encoded><![CDATA[<p>The online marketplace is growing more and more everyday.  Online ad revenues are at an all time high right now.  In fact, in 2006, online ad spending in the US grew by 34% <a rel="nofollow" href="http://news.yahoo.com/s/infoworld/20070307/tc_infoworld/86628" >according to a recent article on Yahoo</a>.  Also, <a href="http://www.emarketer.com/Article.aspx?1004635" >ad spending is expected to total more than 19 billion in 2007</a>.  With advertisers looking to place their banners and slogans across the web, the time is now to get a web site up and running.</p>
<p>It can seem like a daunting task if you are new to the web, or have just been lurking on the internet fringes, wondering if you have the ability to start a website that is attractive to advertisers.  Well, let me be the first to say, you do.  And the secret is, its not as hard as you might think.  </p>
<p>But, lets not get ahead of ourselves yet, as the only way to have a great website is to begin with a solid foundation.  Loudsign is equipped to help make it happen for you.  Here are a few bulleted ways to get started on a website you can be proud of.</p>
<p><strong>~</strong>  First of all, check out our last <a href="http://loudsign.com/blog/2007/domain-name-registration-the-how-tos-and-the-must-dos/" >post on Domain Registration</a>.</p>
<p><strong>~</strong>  Next, decide what kind of website you want.  Dream a little.  If you want to start a blog, think about what topics you are passionate about and would love to be writing about.  If you are interested in selling something, do some research, figure out what you could make a profit on and start crunching the numbers.</p>
<p><strong>~ </strong> Once you have your idea, and your domain, you need to think about a good web hosting package.  Loudsign has a really great variety of hosting options that range from 4$ a month all the way up to our dedicated server "website on steroids" plan.  All the details <a href="https://www.securepaynet.net/gdshop/hosting/landing.asp?prog_id=293829&#038;ci=1782&#038;" >can be found here</a>.</p>
<p><strong>~</strong> Now you are almost ready to start getting creative, whether you want to <a href="https://www.securepaynet.net/gdshop/blog/landing.asp?prog_id=293829&#038;ci=5845&#038;" >create blog content</a>, <a href="https://www.securepaynet.net/gdshop/pod/landing.asp?prog_id=293829&#038;ci=7021&#038;" >podcasts</a> or an e-commerce shop, Loudsign has you covered.  The creative process is yours to decide, but Loudsign has many ways to assist you through the process.</p>
<p>So, thats enough to keep you busy for awhile, keep checking back here for some more detailed info.....</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/build-a-website-you-can-be-proud-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

