<?xml version="1.0" encoding="UTF-8"?>
<rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>GoldVine Web Solutions</title>
	
	<link>http://www.goldvinewebsolutions.com</link>
	<description />
	<lastBuildDate>Fri, 12 Nov 2010 08:43:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/goldvine" /><feedburner:info uri="goldvine" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>CSS for Beginners: Introduction</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/TROVdwjq7WA/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/11/11/css-for-beginners-introduction/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 07:19:33 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[basic css]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[css for beginners]]></category>
		<category><![CDATA[css introduction]]></category>
		<category><![CDATA[how not to use tables]]></category>
		<category><![CDATA[html basics]]></category>
		<category><![CDATA[intro to css]]></category>
		<category><![CDATA[introduction to css]]></category>
		<category><![CDATA[learning css]]></category>
		<category><![CDATA[learning html and css]]></category>
		<category><![CDATA[learning web design]]></category>
		<category><![CDATA[modern web design]]></category>
		<category><![CDATA[web design basics]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.goldvinewebsolutions.com/?p=717</guid>
		<description><![CDATA[What is CSS? CSS stands for Cascading Style Sheets and it can be used to style your HTML files. HTML, or HyperText Markup Language, is responsible for the structure of your document. HTML tags are used to semantically divide your page content into meaningful sections. These sections and elements are then styled, and given layout [...]]]></description>
			<content:encoded><![CDATA[<h2>What is CSS?</h2>
<p>CSS stands for Cascading Style Sheets and it can be used to style your HTML files.  HTML, or HyperText Markup Language, is responsible for the structure of your document.  HTML tags are used to semantically divide your page content into meaningful sections.  These sections and elements are then styled, and given layout characteristics via a separate .css file.<br />
<span id="more-717"></span></p>
<h2>The Benefits of Using CSS</h2>
<p>The alternative to using external CSS files consists of styling individual elements within your .html page&#8230;but this poses one major problem.  Imagine you start out with a simple website; a few headings, images and paragraphs (nothing too crazy).  Then, a couple weeks later, you decide to add some more pages.  You will find yourself restyling many elements which you&#8217;ve already styled in your other file.  For example, the font sizes of headings, the spacing below images, the width of your sidebar, etc.  Fast forward another couple months&#8230;and you decide to change the color of the links throughout your website.  Without an external CSS file declaring the styles for your entire website, you will need to go through and change the style for each individual link.  Let&#8217;s start with a few examples:</p>
<pre><code>a {
&nbsp;&nbsp;&nbsp;&nbsp;font-size: 12px;
&nbsp;&nbsp;&nbsp;&nbsp;color: #FFFFFF;
}</code></pre>
<p>Here, you can see an example of a style declaration within a .css file.  You start with a <b>selector</b>, in this case &#8216;a&#8217; which targets all hyperlinks.  Then, you type a pair of curly braces, and within these braces you list off the specific styles you would like to apply to the selected element(s).  As you can see above, I have set the size of my hyperlinks to be 12 pixels, and the color to be white (#FFFFFF).</p>
<p>You can also select elements based off of their class or ID.  Here are some examples of assigning a class or ID to HTML elements, followed by some examples of how to style those elements:</p>
<pre><code>&lt;div id="sidebar"&gt;This is a div tag with an ID.&lt;div&gt;
&lt;h1 class="blog-title"&gt;This is an h1 heading tag with a class.&lt;div&gt;
</code></pre>
<pre><code>#sidebar {
&nbsp;&nbsp;&nbsp;&nbsp;width: 310px;
&nbsp;&nbsp;&nbsp;&nbsp;background-color: #EFEFEF;
}

.blog-title {
&nbsp;&nbsp;&nbsp;&nbsp;font-size: 48px;
&nbsp;&nbsp;&nbsp;&nbsp;font-weight: bold;
}
</code></pre>
<p>There are several other selectors which are more advanced and can target elements more specifically.  I will delve into the details of these in a future post.</p>
<p>Lastly, in any .html file which uses CSS styling, you will need to link to the .css file in the <code>&lt;head&gt;</code> section of the .html file.  This lets the HTML document know where to look on your server for the styles necessary to display the page.</p>
<pre><code>&lt;link rel="stylesheet" type="text/css" href="styles.css" /&gt;
</code></pre>
<p>When this code is placed in the <code>&lt;head&gt;</code> section of your .html file, the server will know to open the styles.css file and to apply any applicable styles to the current document.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=TROVdwjq7WA:AFhOjmi--Qk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=TROVdwjq7WA:AFhOjmi--Qk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=TROVdwjq7WA:AFhOjmi--Qk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=TROVdwjq7WA:AFhOjmi--Qk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=TROVdwjq7WA:AFhOjmi--Qk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=TROVdwjq7WA:AFhOjmi--Qk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=TROVdwjq7WA:AFhOjmi--Qk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=TROVdwjq7WA:AFhOjmi--Qk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=TROVdwjq7WA:AFhOjmi--Qk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/TROVdwjq7WA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/11/11/css-for-beginners-introduction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/11/11/css-for-beginners-introduction/</feedburner:origLink></item>
		<item>
		<title>PHP Function that Chooses a Singular or Plural Word based on an Input Number</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/QcXpSdZuFsw/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/11/11/php-function-that-chooses-a-singular-or-plural-word-based-on-an-input-number/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 05:55:30 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[php function]]></category>
		<category><![CDATA[plural word function]]></category>
		<category><![CDATA[singular plural word function php]]></category>
		<category><![CDATA[singular word function]]></category>

		<guid isPermaLink="false">http://www.goldvinewebsolutions.com/?p=815</guid>
		<description><![CDATA[The other day, I needed a PHP function to display a word either singular or plural based on a number referring to that word. For example, this could be used on a blog post which may have 0 comments, 1 comment, or 2 comments. Feel free to use this in your projects, or modify it [...]]]></description>
			<content:encoded><![CDATA[<p>The other day, I needed a PHP function to display a word either singular or plural based on a number referring to that word.  For example, this could be used on a blog post which may have 0 comments, 1 comment, or 2 comments.  Feel free to use this in your projects, or modify it as needed.</p>
<pre><code>function word_choice($number, $singular, $plural) {
&nbsp;&nbsp;&nbsp;&nbsp;if($number == 0 OR $number >= 2) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return $number . " " . $plural;
&nbsp;&nbsp;&nbsp;&nbsp;}else{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return $number . " " . $singular;
&nbsp;&nbsp;&nbsp;&nbsp;}
}

//Implementation
$number = 32;

echo word_choice($number, 'comment', 'comments');
//This will show "32 comments"

$number = 1;

echo word_choice($number, 'comment', 'comments');
//This will show "1 comment"
</code></pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=QcXpSdZuFsw:JMZ7X-JVpBs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=QcXpSdZuFsw:JMZ7X-JVpBs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=QcXpSdZuFsw:JMZ7X-JVpBs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=QcXpSdZuFsw:JMZ7X-JVpBs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=QcXpSdZuFsw:JMZ7X-JVpBs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=QcXpSdZuFsw:JMZ7X-JVpBs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=QcXpSdZuFsw:JMZ7X-JVpBs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=QcXpSdZuFsw:JMZ7X-JVpBs:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=QcXpSdZuFsw:JMZ7X-JVpBs:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/QcXpSdZuFsw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/11/11/php-function-that-chooses-a-singular-or-plural-word-based-on-an-input-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/11/11/php-function-that-chooses-a-singular-or-plural-word-based-on-an-input-number/</feedburner:origLink></item>
		<item>
		<title>Exclusive Promotion for Newsletter Subscribers</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/qtGwm8Db2V8/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/10/16/exclusive-promotion-for-newsletter-subscribers/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 22:14:09 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Customer Service]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[domain name registrar]]></category>
		<category><![CDATA[e-mail campaign]]></category>
		<category><![CDATA[e-mail marketing newsletter]]></category>
		<category><![CDATA[email campaign]]></category>
		<category><![CDATA[email marketing newsletter]]></category>
		<category><![CDATA[exclusive promotion]]></category>
		<category><![CDATA[free domain name]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[san diego deal]]></category>
		<category><![CDATA[san diego domain registration]]></category>
		<category><![CDATA[san diego hosting]]></category>
		<category><![CDATA[san diego promotion]]></category>
		<category><![CDATA[san diego web design]]></category>
		<category><![CDATA[web design newsletter]]></category>

		<guid isPermaLink="false">http://www.goldvinewebsolutions.com/?p=783</guid>
		<description><![CDATA[If you are currently receiving my monthly newsletter&#8230;.congratulations! You get a free 1 year domain name registration ($24.95 value). Have you been waiting to register your business name as a domain name, or even your personal name? Now is the perfect time to reserve your favorite domain before someone else takes it! Just call (619) [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.goldvinewebsolutions.com/wp-content/themes/Bluelight/images/2010/10/email-coupon.jpg" alt="GoldVine Free Domain Registration Promotion" title="GoldVine Free Domain Registration Promotion" width="520" height="300" class="size-full wp-image-784" /></p>
<p>If you are currently receiving my monthly newsletter&#8230;.congratulations!  You get a free 1 year domain name registration ($24.95 value).  Have you been waiting to register your business name as a domain name, or even your personal name?  Now is the perfect time to reserve your favorite domain before someone else takes it!</p>
<p><span id="more-783"></span></p>
<p>Just call (619) 793-4645 or send an e-mail to hello@goldvine.biz and I&#8217;ll help you find an available domain name.  This is the first <b>exclusive promotion</b> I&#8217;m running, and I&#8217;ll be running more in the future.  If you haven&#8217;t signed up to receive my newsletter, I&#8217;m afraid you&#8217;re out of luck!  But you can sign up below to be notified of future exclusives, and to stay in the loop on what I&#8217;m working on:</p>

                <div class='gform_wrapper' id='gform_wrapper_7' ><form method='post' enctype='multipart/form-data' target='gform_ajax_frame_7' id='gform_7' class='' action=''>
                        <div class='gform_body'>
                            <input type='hidden' class='gform_hidden' name='is_submit_7' value='1'/>
                            <ul id='gform_fields_7' class='gform_fields top_label'><li id='field_7_1' class='gfield' ><label class='gfield_label' for='input_7_1'>Name<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_1' id='input_7_1' type='text' value='' class='medium' tabindex='1' /></div></li><li id='field_7_2' class='gfield' ><label class='gfield_label' for='input_7_2'>E-Mail Address<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_2' id='input_7_2' type='text' value='' class='medium'  tabindex='2'  /></div></li><li id='field_7_3' class='gfield' ><label class='gfield_label' for='input_7_3'>Confirmation<span class='gfield_required'>*</span></label><div class='ginput_container'><ul class='gfield_checkbox' id='input_7_3'><li class='gchoice_3_1'><input name='input_3.1' type='checkbox'  value='Yes, I would like to receive your monthly newsletter!' checked='checked' id='choice_3_1' tabindex='3'  /><label for='choice_3_1'>Yes, I would like to receive your monthly newsletter!</label></li></ul></div></li><li id='field_7_4' class='gfield    gform_validation_container' ><label class='gfield_label' for='input_7_4'>Phone</label><div class='ginput_container'><input name='input_4' type='text' value=''/></div><div class='gfield_description'>This field is for validation purposes and should be left unchanged.</div></li>
                            </ul>
                        </div>
                        <div class='gform_footer top_label'><input type='submit' id='gform_submit_button_7' class='button' value='Sign up!' tabindex='4'/><iframe style='display:none; width:0px; height:0px;' src='about:blank' name='gform_ajax_frame_7' id='gform_ajax_frame_7'></iframe><script type='text/javascript'>jQuery(document).ready(function(){jQuery('#gform_7').submit(function(){jQuery('#gform_submit_button_7').attr('disabled', 'disabled').after('<img id="gform_ajax_spinner_7"  class="gform_ajax_spinner" src="http://www.goldvinewebsolutions.com/wp-content/plugins/gravityforms/images/spinner.gif" />');jQuery('#gform_ajax_frame_7').load( function(){var form_content = jQuery(this).contents().find('#gform_wrapper_7');var confirmation_content = jQuery(this).contents().find('#gforms_confirmation_message');jQuery('#gform_submit_button_7').removeAttr('disabled');if(form_content.length > 0){jQuery('#gform_wrapper_7').html(form_content.html());gformInitDatepicker();}else if(confirmation_content.length > 0){setTimeout(function(){jQuery('#gform_wrapper_7').replaceWith('<' + 'div id=\'gforms_confirmation_message\'' + '>' + confirmation_content.html() + '<' + '/div' + '>');}, 50);}else{jQuery('#gform_wrapper_7').append(jQuery(this).contents().find('*').html());gformRedirect();}});});});</script><input type='hidden' name='gform_ajax' value='form_id=7&title=&description=' /><input type='hidden' name='gform_ajax_field_values' value='' />
                        </div>
                </form>
                </div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=qtGwm8Db2V8:UW73PuFZ6ko:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=qtGwm8Db2V8:UW73PuFZ6ko:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=qtGwm8Db2V8:UW73PuFZ6ko:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=qtGwm8Db2V8:UW73PuFZ6ko:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=qtGwm8Db2V8:UW73PuFZ6ko:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=qtGwm8Db2V8:UW73PuFZ6ko:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=qtGwm8Db2V8:UW73PuFZ6ko:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=qtGwm8Db2V8:UW73PuFZ6ko:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=qtGwm8Db2V8:UW73PuFZ6ko:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/qtGwm8Db2V8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/10/16/exclusive-promotion-for-newsletter-subscribers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/10/16/exclusive-promotion-for-newsletter-subscribers/</feedburner:origLink></item>
		<item>
		<title>HTML for Beginners: Introduction</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/-2WrsjWDY6o/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/10/05/html-for-beginners-introduction/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 16:14:23 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[california]]></category>
		<category><![CDATA[css beginners tutorial]]></category>
		<category><![CDATA[how do i build a website]]></category>
		<category><![CDATA[how to design a website]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html body tag]]></category>
		<category><![CDATA[html css tutorial]]></category>
		<category><![CDATA[html head tag]]></category>
		<category><![CDATA[html meta tags]]></category>
		<category><![CDATA[hypertext markup language]]></category>
		<category><![CDATA[intro to html]]></category>
		<category><![CDATA[intro to web design]]></category>
		<category><![CDATA[introduction]]></category>
		<category><![CDATA[introduction to html]]></category>
		<category><![CDATA[learning css]]></category>
		<category><![CDATA[learning html]]></category>
		<category><![CDATA[learning web design]]></category>
		<category><![CDATA[san diego]]></category>
		<category><![CDATA[web design tips]]></category>
		<category><![CDATA[what is html]]></category>

		<guid isPermaLink="false">http://www.goldvinewebsolutions.com/?p=685</guid>
		<description><![CDATA[An article I was reading recently compared trying to build a website without knowing any HTML to attempting to build a house without knowing what a brick is. It&#8217;s extremely useful to know a bit about HTML even if it&#8217;s just the basics. In this tutorial series, I hope to give you a basic understanding [...]]]></description>
			<content:encoded><![CDATA[<p>An article I was reading recently compared trying to build a website without knowing any HTML to attempting to build a house without knowing what a brick is.  It&#8217;s extremely useful to know a bit about HTML even if it&#8217;s just the basics.  In this tutorial series, I hope to give you a basic understanding of HTML and CSS, as well as to point you in the direction of several other great resources for learning about these topics.</p>
<p><span id="more-685"></span></p>
<h2>So what is HTML?</h2>
<p>HTML stands for hyper-text markup language which probably means nothing to you.  It doesn&#8217;t mean much to me, either!  Basically, HTML is responsible for taking the content you would like to display on a webpage and structuring it into semantic sections which can then by styled using CSS (Cascading Style Sheets), which I&#8217;ll cover later in this series.</p>
<h2>Structuring your HTML documents</h2>
<p>Every HTML document starts with the same basic structure.  The first thing on every page should be the DOCTYPE.  This is a line of code which often looks like gibberish.  It&#8217;s sole purpose is to tell your internet browser (Firefox, Safari, Internet Explorer, etc.) which version of HTML the page is using.  Browsers have long struggled to operate under the same standards leading to a page being displayed consistently in various browsers.  The DOCTYPE is the first stepping stone in ensuring cross-browser compatibility for your webpages.  For this tutorial series, I will be using HTML5 which is fairly new and isn&#8217;t even fully finished or supported in older browsers.  However, all of the major browsers can interpret HTML5 and it is fairly safe to use it in your projects from this point forward.</p>
<p>So the first code that should go into any of your webpages is the HTML5 DOCTYPE (which they finally shortened and made pretty easy to remember):</p>
<pre><code>&lt;!DOCTYPE html&gt;</code></pre>
<p>Now that you&#8217;ve told the browser that you&#8217;ll be using HTML5 to code your page, you can begin structuring the document.  Every HTML file has the same basic structure:</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
     &lt;head&gt;
          &lt;title&gt;San Diego Pet Store&lt;/title&gt;
          &lt;meta name="keywords" content="dogs, dog treats, san diego pet store, animal shop"&gt;
          &lt;meta name="description" content="San Diego Pet Store was established in 1943 and has been making pets happy ever since.  Come visit us in Mission Valley Shopping Mall and bring your pet along for a fun afternoon!"&gt;
     &lt;/head&gt;

     &lt;body&gt;
          &lt;h1&gt;This is a Sample Heading&lt;/h1&gt;

          &lt;p&gt;This is some sample text inside of a paragraph.  Dogs rule!&lt;/p&gt;
     &lt;/body&gt;
&lt;/html&gt;</code></pre>
<p>This may look a bit confusing at first glance, but it is actually fairly self-explanatory once you look at each tag individually:</p>
<ul>
<li><b><code>&lt;html&gt;&lt;/html&gt;</code>:</b> This tag surrounds all of the code in a document besides the DOCTYPE.
<ul>
<li><b><code>&lt;head&gt;&lt;/head&gt;</code>:</b> This tag includes several sub-tags which can do any of the following: declare the title of the page, associate keywords/a description/other meta information with the page, and include styles from another file which describe the layout/visual characteristics of the page.
<ul>
<li><b><code>&lt;title&gt;&lt;/title&gt;</code>:</b> This tag is the only tag in the head section which will create a visual output.  The title you set here will appear in several places such as the title bar of your browser, your taskbar (when you minimize the window), and as the default title if you bookmark the page in your browser.  Also, it is used on SERPs (Search Engine Results Pages) as the title of your webpage.  All other tags in the &lt;head&gt; section simply describe the content and are invisible to visitors.  Many of the tags either help search engines or internet browsers to classify your content.</li>
<li><b><code>&lt;meta name="keywords" content=""&gt;</code>:</b> This tag was once very important in achieving high search engine rankings, and many still consider it to be important.  But in reality, search engines don&#8217;t put much weight (if any) on this tag thanks to &#8220;black hat&#8221; deceptive practices by search engine optimizers.  There is no harm in using the tag as long as the keywords you put in are reflective of the content on that specific page.</li>
<li><b><code>&lt;meta name="description" content=""&gt;</code>:</b> The description tag is more beneficial than the keywords tag as long as you use it properly.  When your website shows up in search engines, one of two things will appear below the title: a random snippet of text from your website that matches what the person was searching for, or the description set in this tag.  No two pages in your website should have the same description, and your description should be a 1-2 sentence account of what is on the page and why someone should visit your page rather than someone else&#8217;s.</li>
</ul>
</li>
<li><b><code>&lt;body&gt;&lt;/body&gt;</code>:</b> This tag holds all of the content which is visible on any page.  It is usually broken down into specific sections which refer to the layout of the page such as: header, navigation, main section, sidebar, and footer.  CSS is then used to define the sizes of each section as well as their layout, backgrounds, colors, font sizes, etc.</li>
</ul>
</li>
</ul>
<h2>What now?</h2>
<p>For the next post in this tutorial series, I&#8217;ll be going over some common tags in HTML and I will also help you write your first HTML document.</p>
<p>If you have any questions, or would like me to cover something specific in a future tutorial, please call (619) 793-4645 or send an e-mail to <a href="http://www.goldvinewebsolutions.com/contact">hello@goldvine.biz</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=-2WrsjWDY6o:uv0WJ8HO2iA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=-2WrsjWDY6o:uv0WJ8HO2iA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=-2WrsjWDY6o:uv0WJ8HO2iA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=-2WrsjWDY6o:uv0WJ8HO2iA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=-2WrsjWDY6o:uv0WJ8HO2iA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=-2WrsjWDY6o:uv0WJ8HO2iA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=-2WrsjWDY6o:uv0WJ8HO2iA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=-2WrsjWDY6o:uv0WJ8HO2iA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=-2WrsjWDY6o:uv0WJ8HO2iA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/-2WrsjWDY6o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/10/05/html-for-beginners-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/10/05/html-for-beginners-introduction/</feedburner:origLink></item>
		<item>
		<title>The Effect the Internet is Having on Communities</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/EjOEz4AwQxw/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/07/04/the-effect-the-internet-is-having-on-communities/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 22:41:13 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Customer Service]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[negative experience]]></category>
		<category><![CDATA[positive experience]]></category>
		<category><![CDATA[PR]]></category>
		<category><![CDATA[public relations]]></category>
		<category><![CDATA[relationship marketing]]></category>
		<category><![CDATA[small town rules]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[southwest airlines]]></category>
		<category><![CDATA[united airlines]]></category>

		<guid isPermaLink="false">http://www.goldvinewebsolutions.com/?p=630</guid>
		<description><![CDATA[Times are changing, and it&#8217;s time for you and your business to adapt. There was a time when customer service wasn&#8217;t crucial because if a customer was upset, they didn&#8217;t have much reach to spread negative word-of-mouth about your business. Sure, they might have told a friend or two, but that wouldn&#8217;t crush your company. [...]]]></description>
			<content:encoded><![CDATA[<p>Times are changing, and it&#8217;s time for you and your business to adapt.  There was a time when customer service wasn&#8217;t crucial because if a customer was upset, they didn&#8217;t have much reach to spread negative word-of-mouth about your business.  Sure, they might have told a friend or two, but that wouldn&#8217;t crush your company.  Nowadays, no matter who your customers are&#8230;with the internet, they can bring about dramatically positive or negative PR towards your company.  And with the increasing use of smartphones, it&#8217;s even easier for consumers to share a negative (or positive) experience with thousands of listeners from anywhere in the world.</p>
<p><span id="more-630"></span>  </p>
<p>Here are some examples of some recent customer service blunders which gained much more attention than they would have a few years ago:</p>
<ol>
<li>Southwest Airlines vs. Kevin Smith<br />
<object width="600" height="475"><param name="movie" value="http://www.youtube.com/v/_NyqtUi5uRg&amp;hl=en_US&amp;fs=1?rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/_NyqtUi5uRg&amp;hl=en_US&amp;fs=1?rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="475"></embed></object></p>
<p></li>
<li>United Airlines vs. Dave Carroll<br />
<object width="600" height="362"><param name="movie" value="http://www.youtube.com/v/5YGc4zOqozo&amp;hl=en_US&amp;fs=1?rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5YGc4zOqozo&amp;hl=en_US&amp;fs=1?rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="362"></embed></object></p>
<p></li>
</ol>
<h2>The internet is growing at breakneck speeds, but it feels like it&#8217;s getting smaller&#8230;</h2>
<p>Thanks to various online communities and social networks, the internet has broken down into smaller communities.  This has taken away from the anonymity that existed several years ago, and it encourages individuals and businesses alike to develop and present their brand positively online.  This can exist in the form of monitoring Twitter and other networks for mentions of your brand, writing a blog and teaching your customers something new, or even contributing to other websites and getting to know others within your industry.</p>
<h2>Do you actually care that your customers are happy?  Then show them!</h2>
<p>The companies that are getting the most out of using social media are the ones who are genuinely interested in building relationships with their customers and others in the community.  There isn&#8217;t any immediate return on investment that comes out of answering a random person&#8217;s question online, or recommending a useful service you&#8217;ve found.  But who will that person consider when they need help with something you happen to offer.  You guessed it, YOU!  Can you think of anyone who has taught you something, and how grateful you were for their help?</p>
<p>Regardless of the method you choose, it is important for you to represent your brand online.  And if you can interact with your customers, build relationships, and actually CARE about them you will be way ahead of your competition.  In a world dominated with poor customer service, long wait times, and rude employees, customers who are active internet users are happy to blog/tweet/spread the word about a positive experience.</p>
<p><b>Are you working to provide positive experiences for your customers?  Do you strive to go above and beyond what&#8217;s required to make a customer ecstatic&#8230;not just &#8220;satisfied?&#8221;</b></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=EjOEz4AwQxw:r8YdEVwGh-A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=EjOEz4AwQxw:r8YdEVwGh-A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=EjOEz4AwQxw:r8YdEVwGh-A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=EjOEz4AwQxw:r8YdEVwGh-A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=EjOEz4AwQxw:r8YdEVwGh-A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=EjOEz4AwQxw:r8YdEVwGh-A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=EjOEz4AwQxw:r8YdEVwGh-A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=EjOEz4AwQxw:r8YdEVwGh-A:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=EjOEz4AwQxw:r8YdEVwGh-A:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/EjOEz4AwQxw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/07/04/the-effect-the-internet-is-having-on-communities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/07/04/the-effect-the-internet-is-having-on-communities/</feedburner:origLink></item>
		<item>
		<title>New Beer Promotion Effective Immediately</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/jsvU64T_PDk/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/06/30/new-beer-promotion-effective-immediately/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 07:08:58 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Customer Service]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[beer recipe]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[homemade beer]]></category>
		<category><![CDATA[new clients]]></category>
		<category><![CDATA[san diego homebrew]]></category>
		<category><![CDATA[san diego web design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.goldvinewebsolutions.com/?p=626</guid>
		<description><![CDATA[Today, I was thinking about how I could integrate my homebrewing hobby with my freelance business. After coming up with many ridiculous ideas, I&#8217;ve finally decided on a new promotion for all new website design clients. Once you have hired me to design/redesign your website, I will also ask a few questions about your favorite [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I was thinking about how I could integrate my homebrewing hobby with my freelance business.  After coming up with many ridiculous ideas, I&#8217;ve finally decided on a new promotion for all new website design clients.</p>
<p>Once you have hired me to design/redesign your website, I will also ask a few questions about your favorite beers.  I&#8217;ll go on to craft a custom top-notch beer recipe and brew it while I work on your new website.  Upon completion of your website, there&#8217;ll be one more deliverable that wasn&#8217;t included before (a batch of hand-crafted homebrew made just for you&#8230;..with custom labels and everything)!</p>
<p>Mmmm&#8230;..websites have never tasted so darn good!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=jsvU64T_PDk:6--GQAZLdEU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=jsvU64T_PDk:6--GQAZLdEU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=jsvU64T_PDk:6--GQAZLdEU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=jsvU64T_PDk:6--GQAZLdEU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=jsvU64T_PDk:6--GQAZLdEU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=jsvU64T_PDk:6--GQAZLdEU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=jsvU64T_PDk:6--GQAZLdEU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=jsvU64T_PDk:6--GQAZLdEU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=jsvU64T_PDk:6--GQAZLdEU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/jsvU64T_PDk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/06/30/new-beer-promotion-effective-immediately/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/06/30/new-beer-promotion-effective-immediately/</feedburner:origLink></item>
		<item>
		<title>Here’s a Quick Way to Improve Your E-Mail Campaigns</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/b9ru0wbvDYA/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/06/01/heres-a-quick-way-to-improve-your-email-campaigns/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 02:44:51 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[E-Mail Marketing]]></category>
		<category><![CDATA[building email list]]></category>
		<category><![CDATA[can-spam]]></category>
		<category><![CDATA[direct mail]]></category>
		<category><![CDATA[e-mail campaign]]></category>
		<category><![CDATA[improve email campaigns]]></category>
		<category><![CDATA[opt-in]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[permission-based]]></category>

		<guid isPermaLink="false">http://www.goldvinewebsolutions.com/?p=587</guid>
		<description><![CDATA[E-mail spam is something that everyone HATES, but as soon as they start sending their own e-mail campaigns, they don&#8217;t consider it to be spam. Sending to a list of random &#8220;leads&#8221; may be common ground for many businesses using direct mail, but should not be considered when using e-mail marketing. Here are some guidelines [...]]]></description>
			<content:encoded><![CDATA[<p>E-mail spam is something that everyone HATES, but as soon as they start sending their own e-mail campaigns, they don&#8217;t consider it to be spam.  Sending to a list of random &#8220;leads&#8221; may be common ground for many businesses using direct mail, but should not be considered when using e-mail marketing.  Here are some guidelines you can follow to make sure you&#8217;re getting the most out of your e-mail campaigns:</p>
<p><span id="more-587"></span></p>
<h2>You should only be sending campaigns to people who fall into the following categories:</h2>
<ol>
<li><b>People who have specifically signed up through your website:</b> For example, if one of the forms on your website has a checkbox where customers can opt-in to receive your newsletter.</li>
<li><b>People who completed offline forms &amp; indicated they wanted to be e-mailed:</b> For example, if the person filled in a competition form or a survey where they specifically agreed to receive email campaigns from you.</li>
<li><b>People who gave you their business card and asked to receive email:</b> If someone gives you their business card and after hearing about your newsletter, they show an interest and ask to receive it&#8230;you can contact them.</li>
<li><b>They purchased something from you in the last 2 years:</b> By purchasing a product or service from your store, the customer has implicitly agreed to receive correspondence from you.  However, it is much better to get explicit permission from each customer.</li>
</ol>
<p><b>The underlying concept here is that they <u>asked to receive e-mails</u> from you.</b>  I always say, &#8220;a list of 10 loyal fans of your company with open ears is better than 1,000 strangers who couldn&#8217;t care less about you.&#8221;</p>
<h2>E-Mail is NOT Direct Mail</h2>
<p>Technology has given anti-spam organizations the ability to track and attempt to prevent people from sending unwanted mail to massive lists.  One of the reasons e-mail marketing has such a higher conversion rate than direct mail is that people have asked to receive correspondence from you.  With direct mail, many people throw your mail away and become frustrated, linking that anger with <u>your</u> brand.  But there isn&#8217;t anything they can really do about it.  They could try calling and complaining, but would it really accomplish much? No.</p>
<p>With e-mails, <b>people can show their frustration</b> by either unsubscribing from your list, or worse&#8230;marking it as junk mail in their e-mail program.  Each time someone marks an e-mail as spam, the e-mail marketing provider is notified and may suspend your account if too many spam complaints are received.  Also, the reputation of your domain decreases the more you are flagged as being a spammy sender and this may lead to legitimate e-mails ending up in your customers&#8217; junk folders.</p>
<h2>So, when building your lists, always consider these guidelines:</h2>
<ul>
<li><b>Never buy a list of leads for e-mail marketing purposes:</b> You will regret it.  Not only will it lower the reputation of your domain name, it will also generate little to no revenue compared to a list of genuinely interested customers.</li>
<li><b>Don&#8217;t assume people care about you just because they&#8217;ve purchased from you:</b> Yes, many e-mail marketing providers, including <a href="http://www.goldvinewebsolutions.com/services/e-mail-marketing">GoldVine E-Mail Marketing</a>, allow you to send e-mails to past customers, but not all of these customers want to hear from you.  You will experience a much stronger response rate if you ask your customers first.  This is as simple as adding an option to sign up for your newsletter that they&#8217;ll see when they are completing their purchase on your website.  Or if you&#8217;re selling out of a physical space, just tell your customers you have an <b>awesome newsletter</b> with promotions, hot news, etc.  How could they say no to that?!</li>
<li><b>If it doesn&#8217;t feel right&#8230;it probably isn&#8217;t:</b> In these sorts of situations, just put yourself in the recipient&#8217;s shoes.  How would you feel if you received the e-mail considering the relationship you share with the customer?  Would you mark it as spam, or would you be truly interested in reading what the person has to say?</li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=b9ru0wbvDYA:O85_Muz-4TA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=b9ru0wbvDYA:O85_Muz-4TA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=b9ru0wbvDYA:O85_Muz-4TA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=b9ru0wbvDYA:O85_Muz-4TA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=b9ru0wbvDYA:O85_Muz-4TA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=b9ru0wbvDYA:O85_Muz-4TA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=b9ru0wbvDYA:O85_Muz-4TA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=b9ru0wbvDYA:O85_Muz-4TA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=b9ru0wbvDYA:O85_Muz-4TA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/b9ru0wbvDYA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/06/01/heres-a-quick-way-to-improve-your-email-campaigns/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/06/01/heres-a-quick-way-to-improve-your-email-campaigns/</feedburner:origLink></item>
		<item>
		<title>What Every Business Owner Should Know About Website Maintenance</title>
		<link>http://feedproxy.google.com/~r/goldvine/~3/dfwPLPmXbv4/</link>
		<comments>http://www.goldvinewebsolutions.com/2010/05/29/what-every-business-owner-should-know-about-website-maintenance/#comments</comments>
		<pubDate>Sat, 29 May 2010 23:17:36 +0000</pubDate>
		<dc:creator>Matt Goldman</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Website Maintenance]]></category>
		<category><![CDATA[outsourcing]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[website updates]]></category>

		<guid isPermaLink="false">http://67.227.192.187/~newgv/?p=425</guid>
		<description><![CDATA[The benefits of website maintenance are measurable and are being proven daily by successful websites. These days it&#8217;s impossible to make a profit from your website if it doesn&#8217;t constantly feature fresh content. If you own an online shop, you should be adding new products or featuring different products with promotions. If you have knowledge [...]]]></description>
			<content:encoded><![CDATA[<p>The benefits of website maintenance are measurable and are being proven daily by successful websites. These days it&#8217;s impossible to make a profit from your website if it doesn&#8217;t constantly feature fresh content. If you own an online shop, you should be adding new products or featuring different products with promotions. If you have knowledge to share with the community, you should be writing periodic blog posts or e-mail newsletters. Every website is different and requires a different type of maintenance. However, all websites do have one thing in common &#8211; if they aren&#8217;t updated with fresh content&#8230;.they will FAIL!</p>
<p><span id="more-425"></span></p>
<p>Now the tricky decision is whether you need to <b>hire a full-time in-house webmaster</b>, delegate the new duties to <b>current employees</b>, or <b>outsource the maintenance work</b> to an experienced web development company.</p>
<h1>Issues with In-House Website Maintenance</h1>
<h2>Training and Employee Retention</h2>
<p>If you choose one of the first two options, you will need to either train current employees, or be sure to hire a qualified website expert. Both of these options can be expensive, and time-consuming. Also, when employees eventually leave your company, the process starts over and you need to train new employees. You may think that maintaining a website is simple, but without knowledge of multiple coding languages, how to develop with support for all browsers and operating systems, and the proper design skills&#8230;.simple updates can become very complex and cause delays.</p>
<h2>Fluctuating Levels of Work</h2>
<p>Once your employees get used to managing your website, will they be able to handle increases or decreases in the level of work required? What if the website crashes? Or your database gets hacked? Will your employees have the time and knowledge to quickly take care of these issues?</p>
<h2>Hardware and Software Costs</h2>
<p>I have thousands invested in the necessary hardware and graphics software enabling me to design, market, and manage websites on a daily basis. Even if your systems are capable of testing and deploying new content to the website, do you have the software necessary to make these changes? Adobe CS4 alone costs $2,499, not to mention the time it takes to learn how to use these programs.</p>
<h2>Staying Current with Trends and Technologies</h2>
<p>This is by far the most important issue with in-house website maintenance. When employees are updating the website as a side project, they can&#8217;t dedicate their time to learning all about the internet. When your website isn&#8217;t treated as a high priority, the content and updates you publish won&#8217;t be high quality either. When you outsource your website maintenance tasks to a web development company, you know they will be staying current with market trends and technologies. It&#8217;s their job. It&#8217;s their focus. And the work they produce leads to stronger results for your business.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/goldvine?a=dfwPLPmXbv4:R80ZumycWlA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=dfwPLPmXbv4:R80ZumycWlA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/goldvine?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=dfwPLPmXbv4:R80ZumycWlA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/goldvine?i=dfwPLPmXbv4:R80ZumycWlA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=dfwPLPmXbv4:R80ZumycWlA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/goldvine?i=dfwPLPmXbv4:R80ZumycWlA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=dfwPLPmXbv4:R80ZumycWlA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/goldvine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=dfwPLPmXbv4:R80ZumycWlA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/goldvine?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/goldvine?a=dfwPLPmXbv4:R80ZumycWlA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/goldvine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/goldvine/~4/dfwPLPmXbv4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.goldvinewebsolutions.com/2010/05/29/what-every-business-owner-should-know-about-website-maintenance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.goldvinewebsolutions.com/2010/05/29/what-every-business-owner-should-know-about-website-maintenance/</feedburner:origLink></item>
	</channel>
</rss>
