<?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; Business Hosting Web</title>
	<atom:link href="http://loudsign.com/blog/category/business-hosting-web/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>Does Your Business Need a Blog?</title>
		<link>http://loudsign.com/blog/2007/does-your-business-need-a-blog/</link>
		<comments>http://loudsign.com/blog/2007/does-your-business-need-a-blog/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 21:50:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business Hosting Web]]></category>
<category>building relationships</category><category>business relationships</category><category>customer relationship</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/does-your-business-need-a-blog/</guid>
		<description><![CDATA[I am often asked if businesses need blogs.  The short answer would be a definitive "Yes!"  The problem with most business owners is that they view blogs as frivolous.  I'm here to tell you that blogs are anything but frivolous - if you plan and execute it well.

"But aren't blogs for whiny [...]]]></description>
			<content:encoded><![CDATA[<p>I am often asked if businesses need blogs.  The short answer would be a definitive "Yes!"  The problem with most business owners is that they view blogs as frivolous.  I'm here to tell you that blogs are anything but frivolous - if you plan and execute it well.</p>
<p><span id="more-50"></span></p>
<p>"But aren't blogs for whiny little teenagers who have nothing else to do?"  Well, sure they are for whiny teenagers, but they can also be used for a ton of other things.  This also goes for businesses.  You see, businesses are horrendous at engaging customers.  That's because it's hard to have a public/private space for a company.  It's hard to arrange a place where owners, executives, directors, and employees can interact with multitudes of customers.  Well, blogs enable you to do this.</p>
<p><strong>Building Business Relationships<br />
</strong></p>
<p>Blogs excel at connecting people.  And if there is one thing that any business would love more of - it's building relationships.  You can connect with current customers and also build new relationships with potential customers.  But, and this is a big one, that relationship must be taken hand in hand with transparency.</p>
<p><strong>Business Transparency</strong></p>
<p>Before you launch a blog, you need to understand that doing so will open your business to a certain level of transparency.  This means that your posting <em>says and shows</em> something about who you are, what you value, and what you provide.  But, if you allow commenting, there is another level of transparency.  As soon as you allow folks to provide positive and negative feedback, you have an opportunity.  This opportunity is to build more trust and deepen the customer relationship.  But this kind of transparency can be very unnerving for established "brick 'n mortar" businesses.  This means that you must be willing to take criticism and answer to your customer base at times.  That's the way it goes.  But, the dividends for that type of transparency are invaluable.  Now, let's move onto how a blog can increase your visibility.</p>
<p><strong>Search Engines Love Blogs</strong></p>
<p>It's true.  They just love them.  Blogs create a steady stream of fresh content.  If you plan correctly, you can leverage this search engine love for your business.  This does take time, but it is really helpful.  You can set up link and marketing strategies that will increase your bottom line.</p>
<p><strong>Say "NO" to Perfection</strong></p>
<p>I know, I know - this sounds crazy.  But in the current age, you must throw this idea right out the window.  People are skeptical of institutions, businesses included.  And people are especially skeptical of "happy, shiny people."  That means that they expect non-perfection.  It's good to shed that marketed image and be personal.  Now, folks want you to deliver on your product.  Just be willing to let your guard down a little.</p>
<p>If you see the value of this idea, head on over to our <a href="https://www.securepaynet.net/gdshop/hosting/shared.asp?prog_id=293829&amp;ci=1783&amp;"  title="Hosting Plans" target="_blank">hosting plans</a> to get your blog going today.  I highly recommend signing up for Linux hosting plan and using the "value applications" to auto-install Wordpress.  Wordpress is the blogging platform we use for this blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/does-your-business-need-a-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome To The Loudsign Blog!</title>
		<link>http://loudsign.com/blog/2007/welcome-to-the-loudsign-blog/</link>
		<comments>http://loudsign.com/blog/2007/welcome-to-the-loudsign-blog/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 14:21:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business Hosting Web]]></category>
		<category><![CDATA[Domain Name Register]]></category>
		<category><![CDATA[Internet Domain Registration]]></category>
		<category><![CDATA[Web Site Design]]></category>

		<guid isPermaLink="false">http://loudsign.com/blog/2007/welcome-to-the-loudsign-blog/</guid>
		<description><![CDATA[Hello and welcome to the Loudsign Blog!  This is our stab at a weblog which will hopefully provide more information about Loudsign's services and expertise.  It will also serve as an informational guide to domain name registers, business web hosting and what is going on in our industry.  We hope to be [...]]]></description>
			<content:encoded><![CDATA[<p>Hello and welcome to the Loudsign Blog!  This is our stab at a weblog which will hopefully provide more information about Loudsign's services and expertise.  It will also serve as an informational guide to domain name registers, business web hosting and what is going on in our industry.  We hope to be able to better inform you before you decide to go out on that limb and make a purchase.</p>
<p>We will also be having some question and answer session for exisiting customer on how to get the most from your hosting plans.  And some announcements when <a href="http://www.loudsign.com" >Loudsign</a> trots out a sharp new service or feature.</p>
<p>So get ready, we have lots to talk about!</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/welcome-to-the-loudsign-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

