<?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>Pro Web Marketing</title>
	<atom:link href="http://www.prowebmarketing.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.prowebmarketing.com/blog</link>
	<description>Web Development &#38; SEO Experts</description>
	<lastBuildDate>Wed, 03 Mar 2010 17:16:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Save time with PHP!  Create photo galleries automatically.</title>
		<link>http://www.prowebmarketing.com/blog/web-site-design/save-time-with-php-create-photo-galleries-automatically</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-design/save-time-with-php-create-photo-galleries-automatically#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:06:04 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Web Content]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Website Tools]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=417</guid>
		<description><![CDATA[Large photo galleries can be a pain to set up and manage.  When you are dealing with 100 or more images, you are in for some serious HTML data entry – tons of lines of code with only a few differences in each line.
In this article, I’ll provide a sample script that I have [...]]]></description>
			<content:encoded><![CDATA[<p>Large photo galleries can be a pain to set up and manage.  When you are dealing with 100 or more images, you are in for some serious HTML data entry – tons of lines of code with only a few differences in each line.</p>
<p>In this article, I’ll provide a sample script that I have used and adapted for several galleries and other similar tasks.  This article is meant for developers, but I will do my best to take as much of the “lingo” out of it as I can, and explain and document it well.  Even if you don’t know programming or PHP <em>at all</em>, this should be a useful tool for you.   I developed this with only a basic knowledge of PHP syntax and a bit of guess and check.  <a href="http://www.prowebmarketing.com/examples/phpgallery/">Check out the example!</a><span id="more-417"></span></p>
<h2>Robot work</h2>
<p>If you are a web developer, you’ve probably been in this situation before, and this code snippet might look familiar:</p>
<pre name="code" class="php">&lt;li&gt;&lt;a href=”images/gallery/01/01.jpg” title=”Caption” rel=”lightbox”&gt;&lt;img src=”images/gallery/01/thumbs/01.jpg” alt=”Click for Full Size” /&gt;&lt;/a&gt;&lt;/li&gt;</pre>
<p>For every image in your gallery, that line needs to be repeated, with the image source, link href, and caption changed.  Sounds like a wrist-cramp in the making – definitely what I’d call “Robot work”.</p>
<h2>A Scripted Solution</h2>
<p>This situation just begs to be automated.  Being a php enthusiast, I decided to embark on a small adventure – write a script that will produce this HTML automatically.  Here it is, in all its simplistic glory (Pardon any coding faux pas – I am not the most experienced PHP developer in the world).  This script is used with a lightbox gallery called “<a title="Sexy Light Box" href="http://www.coders.me/lang/en/web-html-js-css/javascript/sexy-lightbox-2" target="_blank">Sexy Light Box</a>”.  A grid of thumbnails which can be clicked on for larger view is our goal here.</p>
<pre name="code" class="php">
&lt;?php
$folder = 'images/gallery/';
$extension = '.jpg';
$group = '[group1]';
$caption = 'Caption';
$alt = '';
$title = '';
$iterations = 28;

$wrap1 = '&lt;li&gt;&lt;a href="';
$wrap2 = '" rel="sexylightbox';
$wrap3 = '" title="';
$wrap4 = '"&gt;&lt;img src="';
$wrap5 = '" alt="';
$wrap6 = '" /&gt;&lt;/a&gt;&lt;/li&gt;';
$i = 1;

while ($i &lt;= $iterations) {
if ($i &gt;= 10) {
$string = $wrap1 . $folder . "/" . $i . $extension . $wrap2 . $group . $wrap3 . $caption . $wrap4 . $folder . "/thumbs/" . $i . $extension . $wrap5 . $alt . $wrap6 . $title . $wrap7 . "\n";
} else {
$string = $wrap1 . $folder . "/" . "0" . $i . $extension . $wrap2 . $group . $wrap3 . $caption . $wrap4 . $folder . "/thumbs/" . "0" . $i . $extension . $wrap5 . $alt . $wrap6 . "\n";
}
echo ("$string");
$i++;
}
?&gt;</pre>
<h2>The Breakdown</h2>
<p>This script allows the developer to simply define the gallery directory, number of images, and an (optional &#8211; not included in this version) array of captions.  Below I will explain the code line by line.</p>
<pre name="code" class="php">$folder = 'media/gallery';</pre>
<p>Defines the folder in which the images are.</p>
<pre name="code" class="php">$extension = '.jpg';</pre>
<p>Image extension.  Currently the script requires that all images have the same filetype</p>
<pre name="code" class="php">$group = '[group1]';</pre>
<p>Most lightbox scripts support “groups” or galleries – matching “rel” tags define your gallery</p>
<pre name="code" class="php">$caption = 'Caption';</pre>
<p>Title tag of the linked full-size image.  Most lightbox scripts use this as a caption.</p>
<pre name="code" class="php">$alt = '';</pre>
<p>Alt tags for the images.  This could be converted to an array if you are concerned about unique alt tags for your gallery thumbnails</p>
<pre name="code" class="php">$iterations = 28;</pre>
<p>The number of images in the gallery.</p>
<pre name="code" class="php">$wrap1 - $wrap6</pre>
<p>these are just the chopped parts of the HTML that is being created and wrapped around the variables.</p>
<pre name="code" class="php">while ($i &lt;= $iterations) {</pre>
<p>$i is a placeholder variable known as an “index”.  It is increased by each time the while loop is completed.  Once $i is greater to or equal than $iterations, the loops condition becomes false and it is no longer repeated</p>
<pre name="code" class="php">if ($i &gt;= 10) {</pre>
<p>This line is deals with the naming scheme of the images.  I name my images 01.jpg, 02.jpg … instead of 1.jpg, 2.jpg etc.  Because of this, I had to include a line that would add a “0” to the code IF the image number is less than 10.</p>
<pre name="code" class="php">$string = $wrap1 . $folder . "/" . $i . $extension . $wrap2 . $group . $wrap3 . $caption . $wrap4 . $folder . "/thumbs/" . $i . $extension . $wrap5 . $alt . $wrap6 . $title . $wrap7 . "\n"; }</pre>
<p>This is the line where all of the HTML wraps and the variables you set earlier are combined.  This version of the command includes the “0” I mentioned earlier.  The final HTML that is about to be “echoed” is saved to the variable $string</p>
<pre name="code" class="php">else {</pre>
<p>If the image number is 10 or above…</p>
<pre name="code" class="php">$string = $wrap1 . $folder . "/" . "0" . $i . $extension . $wrap2 . $group . $wrap3 . $caption . $wrap4 . $folder . "/thumbs/" . "0" . $i . $extension . $wrap5 . $alt . $wrap6 . "\n";</pre>
<p>This familiar line of code has the same function as the previous “combiner” line.  The only difference is that this one leaves out the 0, to avoid getting “010.jpg”.</p>
<pre name="code" class="php">
echo ("$string");</pre>
<p>This prints the first line of the gallery!  Yay!  The echo command takes our “$string” variable and prints it to our webpage.</p>
<pre name="code" class="php">$i++; }</pre>
<p>The index variable $i is incremented, or increased by 1.  This keeps our script from looping infinitely and lets it know when we’re out of images.  Once the script hits this line, it goes back to the top of the “while” loop.  If the initiating condition (“$i &lt;= $iterations”) is true, the loop will run again, creating a new line for our gallery.</p>
<h2>Simple enough?</h2>
<p>This is a pretty basic script, and I’m sure it could be improved upon, but for now it definitely saves time, and is easily adapted to many purposes.</p>
<h2>Pros and Cons</h2>
<p><strong>Pros:</strong> Adaptable, time saving, and simple.  The script is re-usable several times on the same page if more than one gallery is on the page.</p>
<p><strong>Cons: </strong>Slight server overhead which is probably negligible.  Each time the page loads, the server has to generate that HTML.  In my opinion, this hardly matters for such a small-scale site.</p>
<h2>Wrapping Up</h2>
<p>Thanks for checking out this script.  I hope you&#8217;ve learned something from it!</p>
<p>You can download the example code <a title="PHP Gallery Download" href="http://www.prowebmarketing.com/examples/downloads/phpgallery.zip" target="_blank">HERE</a>.</p>
<p>To learn more about the javascript used to make the gallery fancy, <a title="Sexy Light Box" href="http://www.coders.me/lang/en/web-html-js-css/javascript/sexy-lightbox-2">check out Sexy Light Box</a> &#8211; compatible with jQuery AND mootools.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-design%2Fsave-time-with-php-create-photo-galleries-automatically&amp;linkname=Save%20time%20with%20PHP%21%20%20Create%20photo%20galleries%20automatically."><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-design/save-time-with-php-create-photo-galleries-automatically/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Designer Tools</title>
		<link>http://www.prowebmarketing.com/blog/uncategorized/web-designer-tools</link>
		<comments>http://www.prowebmarketing.com/blog/uncategorized/web-designer-tools#comments</comments>
		<pubDate>Tue, 23 Feb 2010 21:54:37 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css templates]]></category>
		<category><![CDATA[free photo gallery]]></category>
		<category><![CDATA[free tools]]></category>
		<category><![CDATA[web design tools]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=414</guid>
		<description><![CDATA[We have searched and found some great free tools for web designers.  Below are descriptions and where to find some great tools we have stumbled upon:
Free clipart
http://www.webweaver.nu/clipart/
Web Generator
http://www.ornj.net/webalbum/
Free Photo Gallery Generator
There are several programs to choose from at this link
http://www.web-album-maker.com/
Free CSS templates (Which we do not use)
http://www.freecsstemplates.org/
]]></description>
			<content:encoded><![CDATA[<p>We have searched and found some great free tools for web designers.  Below are descriptions and where to find some great tools we have stumbled upon:</p>
<p><strong><span style="text-decoration: underline;">Free clipart</span></strong></p>
<p><a href="http://www.webweaver.nu/clipart/" target="_blank">http://www.webweaver.nu/clipart/</a></p>
<p><strong><span style="text-decoration: underline;">Web Generator</span></strong></p>
<p><a href="http://www.ornj.net/webalbum/" target="_blank">http://www.ornj.net/webalbum/</a></p>
<p><strong><span style="text-decoration: underline;">Free Photo Gallery Generator</span></strong></p>
<p>There are several programs to choose from at this link</p>
<p><a href="http://www.web-album-maker.com/" target="_blank">http://www.web-album-maker.com/</a></p>
<p><strong><span style="text-decoration: underline;">Free CSS templates (Which we do not use)</span></strong></p>
<p><a href="http://www.freecsstemplates.org/" target="_blank">http://www.freecsstemplates.org/</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Funcategorized%2Fweb-designer-tools&amp;linkname=Web%20Designer%20Tools"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/uncategorized/web-designer-tools/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Streaming Music Services: Overview</title>
		<link>http://www.prowebmarketing.com/blog/tech-news/streaming-music-services-overview</link>
		<comments>http://www.prowebmarketing.com/blog/tech-news/streaming-music-services-overview#comments</comments>
		<pubDate>Tue, 23 Feb 2010 20:12:06 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Tech News]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=411</guid>
		<description><![CDATA[Being a tech worker, I am at my desk a large portion of the day.  In order to retain some peace of mind, I listen to a lot of music during these times.  Quite a bit of music &#8211; hours and hours more than I can count.  To get that music to my speakers with [...]]]></description>
			<content:encoded><![CDATA[<p>Being a tech worker, I am at my desk a large portion of the day.  In order to retain some peace of mind, I listen to a lot of music during these times.  Quite a bit of music &#8211; hours and hours more than I can count.  To get that music to my speakers with minimal effort or wasted time, I frequently use several music services.<span id="more-411"></span></p>
<h2>Grooveshark</h2>
<p>Grooveshark is a website with what I consider one of the best examples of flash interface design.  Grooveshark is easy to use and search, and find what you want.</p>
<p>Link: <a href="http://listen.grooveshark.com/" target="_blank">grooveshark.com</a></p>
<p>Pros:</p>
<ul>
<li>Easy to use and navigation</li>
<li>Looks great, and you can change your themes</li>
<li>Good selection of content</li>
</ul>
<p>Cons:</p>
<ul>
<li>&#8220;Radio&#8221; function is not great</li>
<li>Manual playlists are more or less necessary</li>
<li>Quality and seamlessness of playback are not constant</li>
</ul>
<h2>Playlist</h2>
<p>Playlist.com became popular by allowing users to embed a playlist on any website, including their MySpace profiles.  It&#8217;s functionality is limited, in that it has no radio feature, but it is still useful</p>
<p>Link: <a href="http://playlist.com" target="_blank">playlist.com</a></p>
<p>Pros:</p>
<ul>
<li>Simple.  Search and play or add to a list.</li>
<li>Good integration with social networking</li>
</ul>
<p>Cons:</p>
<ul>
<li>No radio function.  Requires manual playlists</li>
<li>Quality and seamlessness of playback  are not constant</li>
<li>Content selection is mostly user-provided &#8211; links can break</li>
</ul>
<h2>Pandora</h2>
<p>Pandora is the &#8220;biggest and baddest&#8221;  online radio service.  It is the most controlled, but provides the most &#8220;professional&#8221; experience, in my opinion.</p>
<p>Link: <a href="http://pandora.com">pandora.com</a></p>
<p>Pros:</p>
<ul>
<li>Fantastic radio feature.  Uses complex algorithms to play music that you will like.</li>
<li>Wide selection &#8211; Create a radio station based on any band or song</li>
</ul>
<p>Cons:</p>
<ul>
<li>Extremely limited &#8211; You may only skip a few songs an hour</li>
<li>No play-on-demand.  You can only listen to radio stations</li>
<li>40 hour per month limit &#8211; You have to pay for the premium service for unlimited listing.</li>
</ul>
<h2>Conclusion</h2>
<p>I prefer Pandora.  As someone who works long days, I can&#8217;t spend time making playlists and switching songs every minute.  Grooveshark has potential, but it needs to improve the radio functionality substantially before it can replace Pandora.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Ftech-news%2Fstreaming-music-services-overview&amp;linkname=Streaming%20Music%20Services%3A%20Overview"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/tech-news/streaming-music-services-overview/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft&#8217;s Free Live Sync Software</title>
		<link>http://www.prowebmarketing.com/blog/web-news/microsofts-free-live-sync-software</link>
		<comments>http://www.prowebmarketing.com/blog/web-news/microsofts-free-live-sync-software#comments</comments>
		<pubDate>Mon, 22 Feb 2010 16:25:01 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Web News]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[file shareing]]></category>
		<category><![CDATA[microsoft tools]]></category>
		<category><![CDATA[sync]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=409</guid>
		<description><![CDATA[If you are looking for an alternative to backing up your files or you need to have your files available on two or more computers, I recommend taking a look at Microsoft&#8217;s free tool &#8220;Live Sync&#8221;.  This is a small download that allows you to sync folders you choose to another computer.   Sign up free [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for an alternative to backing up your files or you need to have your files available on two or more computers, I recommend taking a look at Microsoft&#8217;s free tool &#8220;Live Sync&#8221;.  This is a small download that allows you to sync folders you choose to another computer.   Sign up free at https://www.foldershare.com/</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-news%2Fmicrosofts-free-live-sync-software&amp;linkname=Microsoft%26%238217%3Bs%20Free%20Live%20Sync%20Software"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-news/microsofts-free-live-sync-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing your Hosting Service</title>
		<link>http://www.prowebmarketing.com/blog/uncategorized/choosing-your-hosting-service</link>
		<comments>http://www.prowebmarketing.com/blog/uncategorized/choosing-your-hosting-service#comments</comments>
		<pubDate>Fri, 19 Feb 2010 14:26:25 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website Hosting]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[hosting service]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=406</guid>
		<description><![CDATA[Choosing which hosting service to use to host your site should not be taken lightly.  There are several factors to consider before signing up with the service.  Here are a few items you should consider before making your decision:


Is the hosting company reputable and well known?  For example, Godaddy has been around a few years [...]]]></description>
			<content:encoded><![CDATA[<p>Choosing which hosting service to use to host your site should not be taken lightly.  There are several factors to consider before signing up with the service.  Here are a few items you should consider before making your decision:</p>
<p><span id="more-406"></span></p>
<ul>
<li>Is the hosting company reputable and well known?  For example, Godaddy has been around a few years and has a good reputation for great customer service and a wealth of different hosting packages to choose from.  Try to avoid third-party small time hosting services because they just may decide not to continue the service and this could leave you stranded, unable to edit your web site or transfer your existing domain.</li>
<li>Does the hosting service have a package that is right for you?  Consider what it is you are going to have hosted on your web site.  For example, if you are going to provide lengthy video, you will need to choose a package that has a high rate of bandwith and lots of hosting space.  If you are hosting a simple 5 page text with a few pictures web site, you will only need to purchase a package with a small amount of space.</li>
<li>The best hosting service you can choose is one provided by your web designer.  You can most likely trust the designer of your web site to provide you with the right amount of web space for your site and great service.</li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Funcategorized%2Fchoosing-your-hosting-service&amp;linkname=Choosing%20your%20Hosting%20Service"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/uncategorized/choosing-your-hosting-service/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Points To Successful SEO</title>
		<link>http://www.prowebmarketing.com/blog/search-engine-optimization/9-points-to-successful-seo</link>
		<comments>http://www.prowebmarketing.com/blog/search-engine-optimization/9-points-to-successful-seo#comments</comments>
		<pubDate>Thu, 18 Feb 2010 14:05:22 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=402</guid>
		<description><![CDATA[Search Engine Optimization companies are making a fortune by doing the menial work that is overlooked by many designers. It is ridiculously easy to do most of the work done by most SEO companies, all you have to do is create good habits.

There are 9 main points you should focus on:
• Keywords
• URL Text
• Description, [...]]]></description>
			<content:encoded><![CDATA[<p>Search Engine Optimization companies are making a fortune by doing the menial work that is overlooked by many designers. It is ridiculously easy to do most of the work done by most SEO companies, all you have to do is create good habits.<br />
<span id="more-402"></span><br />
There are 9 main points you should focus on:</p>
<p>• Keywords<br />
• URL Text<br />
• Description, Meta tags<br />
• Title tags<br />
• Image Names<br />
• ALT tags<br />
• Heading tags<br />
• Content<br />
• Hyperlinks</p>
<p>The focus of these 8 steps is to load your pages with as many &#8220;keywords&#8221; as possible.</p>
<p>Keywords<br />
Keywords are the most important aspect of good SEO, this is where you tell the Search Engines what your site is about. Search Engines use an algorithm to determine the &#8220;Keyword Density&#8221; of your site, this formula is:</p>
<p>Total Words ÷ Keywords= Keyword Density</p>
<p>Use this formula on your competitors web site and see how they score, then aim to beat that score.</p>
<p>Choose keywords that best relate to the information, products or services that you are offering. For instance, if I am designing a site about &#8220;Web Design&#8221;, I want my site to include the words &#8220;Web Design&#8221; as many times as possible.</p>
<p>However, most people don&#8217;t just search for just one word, they type phrases, so you should consider the phrases that best suit your sites target market. For example, if I am creating a site about &#8220;Web Design&#8221; in New Orleans, I would include &#8220;New Orleans web design&#8221; in my keywords. Another way around this is to not separate my keywords with commas, just use spaces, and the Search Engines will make the phrases for you. The most important thing to remember is that the content of each page is different, so only use keywords pertaining to that page.</p>
<p>URL Text<br />
When you name a new page you have the option to call it anything you could possibly think of, why not se a keyword? After all, the URL address is the first things a search engine comes across when indexing your pages. You have to remember content doesn&#8217;t come easy to everyone, so you gotta slip in your keywords when the process gives you an easy one.</p>
<p>Description Meta tags<br />
These tags are dwindling in importance since Search Engines are now looking at content, but every little bit counts.</p>
<p>Optimize your meta tags to match your content, products, and services, and the Search Engines that still look at meta data will reward your efforts.</p>
<p>Title Tags<br />
Title tags are the tags that tell the Search Engine the title, or formal description of the document or page. This is the word or phrase that is seen at the top of the browser window. The most important rule about title tags is, don&#8217;t put anything in the title tags but keywords. Once again this is an easy time to slip in your keywords, so don&#8217;t miss out.</p>
<p>Image Names<br />
As I said before, content doesn&#8217;t come easy to everyone, so slip in your keywords whenever possible, this applies to image names. If you are saving a picture of a guy working on a computer for your web design web site, don&#8217;t call it &#8220;some_dude.jpg&#8221;, call it &#8220;web_site_design.jpg&#8221;. The Search engine will look at the code for the site and see the image pertains to the content of the site and this will be another relevant element on that particular page. You have to take the easy ones when you are given a chance.</p>
<p>ALT tags<br />
Alt tags are keywords that you can attach to images, giving more weight to the image since Search Engines can&#8217;t analyze the content of the image itself. Here is a chance to slip in more keywords without writing great content, use it.</p>
<p>Heading tags<br />
Heading tags are associated with the bold font that leads into a section of text. Like this:</p>
<p>Web Design<br />
Web Design Inc. offers custom web site designs&#8230;</p>
<p>Your heading tags should only be keywords, and should be presented in the order that your Meta tags follow.</p>
<p>H1= first meta tag, H2= second meta tag&#8230;</p>
<p>Try to utilize all 6 heading tags on each page to ensure maximum page optimization.</p>
<p>Content<br />
As every expert will tell you, &#8220;Content is King.&#8221; Each web page should have at least 350 words on it, and the more the better, but keep in mind the formula for keyword density. You don&#8217;t want to fill a page with 1500 words of jibba-jabba and only 5 keywords in it. Some people get hung-up on how browsers display text, and use images with text in them because they want a cool font, but browsers can&#8217;t read the text embedded in images, so this content ads no weight to the page in a Search Engines eyes.</p>
<p>Linkbaiting is the new trend among high ranking sites. Linkbaiting means writing quality content, or articles that other web sites can display on their pages as long as they give credit, and a link to your site.</p>
<p>You don&#8217;t have to be a vi or emac expert to write good web content, just be thoughtful of how you word things and incorporate your keywords.</p>
<p>Hyperlinks<br />
Hyperlinks are text links to other pages on your site. The rules of SEO and hyperlinks are easy:</p>
<p>• Use hyperlinks so the Search Engine will have a text link to follow to the next page<br />
• Don&#8217;t use one word links, use long link phrases, preferably keyword phrases<br />
• Use bullets, or some sort of small image that you can attach an ALT tag to, this will ad more importance to the link, and throw in a couple of free keywords for you.</p>
<p>Keep these 9 aspects in mid when designing a site, and you are sure to have a leg up on the competition.</p>
<p>Murry Daniels</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fsearch-engine-optimization%2F9-points-to-successful-seo&amp;linkname=9%20Points%20To%20Successful%20SEO"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/search-engine-optimization/9-points-to-successful-seo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s Ipad Release</title>
		<link>http://www.prowebmarketing.com/blog/tech-news/apples-ipad-release</link>
		<comments>http://www.prowebmarketing.com/blog/tech-news/apples-ipad-release#comments</comments>
		<pubDate>Wed, 17 Feb 2010 16:48:16 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=396</guid>
		<description><![CDATA[I am sure you have heard all the buzz about the new Ipad that Apple has released. The iPad has a 9.7-inch touch screen, is a half-inch thick, weighs 1.5 pounds and comes with 16, 32 or 64 gigabytes of flash memory storage. It comes with Wi-Fi and Bluetooth connectivity built in.
It seems to be [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.prowebmarketing.com/blog/wp-content/uploads/2010/02/ipad.jpg"><img class="size-medium wp-image-397 alignleft" title="Apple Ipad" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2010/02/ipad-227x300.jpg" alt="" width="227" height="300" /></a>I am sure you have heard all the buzz about the new Ipad that Apple has released. The iPad has a 9.7-inch touch screen, is a half-inch thick, weighs 1.5 pounds and comes with 16, 32 or 64 gigabytes of flash memory storage. It comes with Wi-Fi and Bluetooth connectivity built in.</p>
<p>It seems to be the next generation of iphone. I give kudos to apple for introducing the iphone and ipod first, getting consumers accustom to using the interactive touch functionality. It now only makes sense to come out with a hybrid like the ipad. If you don&#8217;t like to lug around a bulky laptop or hate using a small device like the iphone, the ipad is just the ticket. This device not only has the functionality of a phone, laptop and computer but as also can be used by all walks of life including professionals, students and the general public.</p>
<p><span id="more-396"></span></p>
<p>Can you believe the price point!? Starting out at $499! The basic iPad models will cost $499, $599 and $699, depending on the storage size. Those 3G (for the phone)  iPad models will cost more — $629, $729 and $829, depending on the amount of memory — and will be out in April.</p>
<p>We will probably wait to purchase the second generation model to allow them to work out all the hardware and software bugs. Although Apple always seems to offer very stable, secure products from the onset. Being a business professional, the the ipad will be a great compliment to our day to day business.</p>
<p>Look forward to the ipad being available to the public in March 2010!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Ftech-news%2Fapples-ipad-release&amp;linkname=Apple%26%238217%3Bs%20Ipad%20Release"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/tech-news/apples-ipad-release/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery&#8217;s New API Docs + 1.4</title>
		<link>http://www.prowebmarketing.com/blog/web-site-tools/jquerys-new-api-docs-1-4</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-tools/jquerys-new-api-docs-1-4#comments</comments>
		<pubDate>Tue, 16 Feb 2010 22:09:15 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Website Tools]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=393</guid>
		<description><![CDATA[jQuery, one of the most popular and diversely adapted JavaScript libraries, has released a new version, and a gigantic wiki to document the api.  The new version boasts huge performance boosts and tons of new functionality.
What does this mean for developers?
The new documentation is so thorough that anyone should be able to make simple scripts, [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery, one of the most popular and diversely adapted JavaScript libraries, has released a new version, and a gigantic wiki to document the api.  The new version boasts huge performance boosts and tons of new functionality.<span id="more-393"></span></p>
<h3>What does this mean for developers?</h3>
<p>The new documentation is so thorough that anyone should be able to make simple scripts, even with minimal programming knowledge.  Every function is documented, complete with code snippets, examples, and common questions and answers.</p>
<p>There are also new functions that allow very simple manipulation of HTML elements &#8211; allowing for very easy presentational JavaScript.  These new functions simplify previously difficult actions.</p>
<p>Check it out today!</p>
<p>http://api.jquery.com/</p>
<p>http://jquery14.com/day-01/jquery-14</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-tools%2Fjquerys-new-api-docs-1-4&amp;linkname=jQuery%26%238217%3Bs%20New%20API%20Docs%20%2B%201.4"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-tools/jquerys-new-api-docs-1-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips on Shooting Interior Photographs</title>
		<link>http://www.prowebmarketing.com/blog/photography/tips-on-shooting-interior-photographs</link>
		<comments>http://www.prowebmarketing.com/blog/photography/tips-on-shooting-interior-photographs#comments</comments>
		<pubDate>Thu, 04 Feb 2010 18:08:09 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=389</guid>
		<description><![CDATA[** Always use a tripod **

Use a Tripod or something equivalent to assist you
Set the camera to aperture mode (if available)
Set the aperture to either 8 or more
Set the camera ISO (if available) to lowest possible setting (ex:100) / Turn off AUTO ISO (if available)
Turn off Image Stabilization (if available) for either lens/body or both
Set [...]]]></description>
			<content:encoded><![CDATA[<p>** Always use a tripod **</p>
<ul>
<li>Use a Tripod or something equivalent to assist you</li>
<li>Set the camera to aperture mode (if available)</li>
<li>Set the aperture to either 8 or more</li>
<li>Set the camera ISO (if available) to lowest possible setting (ex:100) / Turn off AUTO ISO (if available)</li>
<li>Turn off Image Stabilization (if available) for either lens/body or both</li>
<li>Set the camera to timer &#8220;optional&#8221;</li>
<li>Take the shot!</li>
</ul>
<p>Always remember what you see on the camera screen is not always perfect, transfer the photographs to the computer to see the REAL results.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fphotography%2Ftips-on-shooting-interior-photographs&amp;linkname=Tips%20on%20Shooting%20Interior%20Photographs"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/photography/tips-on-shooting-interior-photographs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Tips for Making Your Online Store Successful</title>
		<link>http://www.prowebmarketing.com/blog/e-commerce/5-tips-for-making-your-online-store-successful</link>
		<comments>http://www.prowebmarketing.com/blog/e-commerce/5-tips-for-making-your-online-store-successful#comments</comments>
		<pubDate>Thu, 24 Dec 2009 15:22:14 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=383</guid>
		<description><![CDATA[Have you ever wanted to create and run an online store? Not sure where to start or what to be mindful of?  This article will share tips that will help you to make your online store more successful.
Before you read further, please remember that it is not important to follow the steps. Every person has [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to create and run an online store? Not sure where to start or what to be mindful of?  This article will share tips that will help you to make your online store more successful.</p>
<p>Before you read further, please remember that it is not important to follow the steps. Every person has his own way to do things. These are some helpful tips which may be useful to you too.</p>
<p>1. <strong>Attractive: </strong> Many beginners make the mistake of writing a lot of matter on the homepage. Try and avoid doing this. Put a good sales page instead and tell the customers about your products you want to sell. Give them links to the inner pages of your website. Make the homepage interesting. Get to the point straight and tell customers all good things about your store. Make it attractive by putting images on it.</p>
<p><img title="More..." src="../wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><span id="more-383"></span></p>
<p>2. <strong>Simple:</strong> Make your online stores simple. Do not confuse your customers. Google is a successful website because it has a very simple homepage. Follow it. It will help you a lot.</p>
<p>3. <strong>Try spreading it:</strong> Tip number one is difficult to follow because of lack in text. The search engines are unable to pick your website because the search engines are unable to read videos and images. Search engines can only read text. Put up text, but just make sure that they are not in a one single place. Spread the text out in different web pages. This tip is very useful and has helped many online stores.</p>
<p>4. <strong>See where you want to go:</strong> This is very important to make your online store successful. Make sure that you do your research well before you start. This works if you do not want to land up in a overcrowded place where everyone is promoting the same things. Make sure your eyes are open. Also make sure that you are not in a place where there is no else offering the same products.</p>
<p>5. <strong>Relax:</strong> This is the last tip. Relax and do things and do not over go it if you want to grow. Never force your customers to buy. Advertisements are important, but try not to overdo it.</p>
<p>These are some important tips which helps in e-commerce and will help you to make your online store and successful one.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fe-commerce%2F5-tips-for-making-your-online-store-successful&amp;linkname=5%20Tips%20for%20Making%20Your%20Online%20Store%20Successful"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/e-commerce/5-tips-for-making-your-online-store-successful/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Non-Standard Fonts &#8211; Solutions and Issues</title>
		<link>http://www.prowebmarketing.com/blog/web-site-tools/using-non-standard-fonts-solutions-and-issues</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-tools/using-non-standard-fonts-solutions-and-issues#comments</comments>
		<pubDate>Mon, 21 Dec 2009 17:55:06 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[non]]></category>
		<category><![CDATA[standard]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=375</guid>
		<description><![CDATA[One of the more challenging obstacles in website design are the limits imposed on designers by the idea of &#8220;web fonts&#8221;.  Web fonts are the few type faces which are installed on every system globally.  To maintain a consistent look to all users, most designers will stick to using those few fonts (Verdana, Arial, Times, [...]]]></description>
			<content:encoded><![CDATA[<p>One of the more challenging obstacles in website design are the limits imposed on designers by the idea of &#8220;web fonts&#8221;.  Web fonts are the few type faces which are installed on every system globally.  To maintain a consistent look to all users, most designers will stick to using those few fonts (Verdana, Arial, Times, Georgia, and Palatino are most common) or use images to replace headers.  This former solution causes a very stale, plain look that users see on every website they visit.  The latter can seriously hurt your search engine rankings.  Neither of those sound very appealing!</p>
<p>Innovative and curious as the developers are Pro Web Marketing are, we&#8217;ve found several alternatives that can avoid the downsides of traditional solutions.</p>
<p><span id="more-375"></span></p>
<h3>Fahrner Image Replacement</h3>
<p>Fahrner Image Replacement is a technique that was originally thought up by Todd Fahrner, but it is simple and obvious enough that many other designers and developers have thought of it on their own (Us included!)  The idea is that you may use CSS (Cascading Style Sheets) to &#8220;Hide&#8221; the heading, and superimpose the graphic version of that text over it.  This is good for basic header replacement, but it requires a lot of manual work.   The text is also impossible to &#8220;copy&#8221; for an end-user, which is bad for accessibility.</p>
<p><a title="FIR" href="http://en.wikipedia.org/wiki/Fahrner_Image_Replacement" target="_blank">&#8230;Read more about FIR</a></p>
<h3>(Scalable) Inman Flash Replacement (sIFR)</h3>
<p>sIFR is a technique which uses Adobe&#8217;s Flash Player to replace text with a dynamic flash layer automatically.  It utilizes Flash, JavaScript, and CSS to create what is probably the most full-featured option to show your fonts in their full glory.  The only downsides?  It is a real pain to set up, and it requires that your users have a modern version of the flash player.  It can also cause havoc on slower PCs!</p>
<p><a title="sIFR" href="http://en.wikipedia.org/wiki/Sifr" target="_blank">&#8230;Read more about sIFR</a></p>
<h3>Cufon &#8211; My personal favorite!</h3>
<p>Cufon is a project designed to replace sIFR.  It uses JavaScript and a custom &#8220;Generator&#8221; to create a script directly from your font.  All you have to do is generate the script, include it, and deploy it at specified selector tags (headings, etc).</p>
<p>Cufon works in all major browsers and does not interfere with any text interaction such as copying and pasting, and even allows for perfect search engine spidering.</p>
<p><a title="Cufon" href="http://cufon.shoqolate.com/generate/" target="_blank">Check it out here</a></p>
<h3>Looking to the future &#8211; CSS3 and Modern Browsers</h3>
<p>CSS3 includes the &#8220;@font-face&#8221; property as part of its specification.  This will allow developers to specify which font they want to use by uploading a copy of it to their server.  The code will work like this:</p>
<pre style="padding-left: 30px;">@font-face {
  font-family: &lt;a-remote-font-name&gt;;
  src: &lt;source&gt; [,&lt;source&gt;]*;
  [font-weight: &lt;weight&gt;];
  [font-style: &lt;style&gt;];
}
<!--more--></pre>
<p>Once all major browser vendors have implemented this into their specification, this technique will become more popular.  <a title="https://developer.mozilla.org/index.php?title=En/CSS/%40font-face" href="http://" target="_blank">Learn more about the spec here.</a></p>
<h3>Conclusion</h3>
<p>Using non-standard fonts still requires a bit of extra work at this point, and all of these techniques should only be used sparingly.  Your pages main body text should still be a web-standard font, for most cases.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-tools%2Fusing-non-standard-fonts-solutions-and-issues&amp;linkname=Using%20Non-Standard%20Fonts%20%26%238211%3B%20Solutions%20and%20Issues"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-tools/using-non-standard-fonts-solutions-and-issues/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website Project For Northern Granite</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-website-project-for-northern-granite</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-website-project-for-northern-granite#comments</comments>
		<pubDate>Thu, 17 Dec 2009 19:28:15 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[granite]]></category>
		<category><![CDATA[michigan]]></category>
		<category><![CDATA[northern]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=312</guid>
		<description><![CDATA[We are wrapping up a new website for Northern Granite. Located in Northern Michigan, Northern Granite leads the way in great products and services in the tabletop industry. We chose a great color palette the suit type of company they are. We kept it earthy and also fresh vibrant. keep a look out for the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_313" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.northerngranite.com"><img class="size-full wp-image-313" title="Northern Granite" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/NorthernGranite.jpg" alt="Northern Granite Website" width="450" height="242" /></a><p class="wp-caption-text">Northern Granite Website</p></div>
<p>We are wrapping up a new website for Northern Granite. Located in Northern Michigan, Northern Granite leads the way in great products and services in the tabletop industry. We chose a great color palette the suit type of company they are. We kept it earthy and also fresh vibrant. keep a look out for the live site in the next few weeks.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-website-project-for-northern-granite&amp;linkname=New%20Website%20Project%20For%20Northern%20Granite"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-website-project-for-northern-granite/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website Project For Concrete Central Inc</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-website-project-for-concrete-central-inc</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-website-project-for-concrete-central-inc#comments</comments>
		<pubDate>Thu, 17 Dec 2009 18:56:40 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=306</guid>
		<description><![CDATA[This week we designed a new great looking website for Concrete Central. They are based out of Grand Rapids and also have a Traverse City location. They are a supplier of concrete products for large commercial and retail development. Due to the nature of Concrete Centrals work, we wanted to put together a hard hitting [...]]]></description>
			<content:encoded><![CDATA[<p>This week we designed a new great looking website for Concrete Central. They are based out of Grand Rapids and also have a Traverse City location. They are a supplier of concrete products for large commercial and retail development. Due to the nature of Concrete Centrals work, we wanted to put together a hard hitting design that was edgy but yet rock solid when it came to stability for web browsers. We used darker colors and transparent .png imaging to create a nice clean see through content area. The site will feature new projects in the works and also a rotating gallery of products and industry materials.</p>
<p>Look for www.concretecentralinc.com to launch in the next few weeks!</p>
<div id="attachment_310" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.concretecentralinc.com/"><img class="size-full wp-image-310" title="Concrete Central Inc" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/ConcreteCentral.jpg" alt="Concrete Central Inc" width="450" height="242" /></a><p class="wp-caption-text">Concrete Central Inc</p></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-website-project-for-concrete-central-inc&amp;linkname=New%20Website%20Project%20For%20Concrete%20Central%20Inc"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-website-project-for-concrete-central-inc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Branding is an essential tool for online businesses</title>
		<link>http://www.prowebmarketing.com/blog/branding-identity/branding-is-an-essential-tool-for-online-businesses</link>
		<comments>http://www.prowebmarketing.com/blog/branding-identity/branding-is-an-essential-tool-for-online-businesses#comments</comments>
		<pubDate>Thu, 17 Dec 2009 17:14:23 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Brand and Identity]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[business branding]]></category>
		<category><![CDATA[Identity]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=367</guid>
		<description><![CDATA[Branding is an essential and an integral part of marketing, which at times is ignored and overlooked by small entrepreneurs. Importance of branding has still not been fully exploited (rather it is needs a thrust) by the online webmasters for their websites and website networks, this is despite the fact that branding one’s online business [...]]]></description>
			<content:encoded><![CDATA[<p>Branding is an essential and an integral part of marketing, which at times is ignored and overlooked by small entrepreneurs. Importance of branding has still not been fully exploited (rather it is needs a thrust) by the online webmasters for their websites and website networks, this is despite the fact that branding one’s online business can give very rich dividends, if done in a strategic manner. Branding one’s online business is much easier than branding a product because most of the branding material can be uploaded on the site directly and therefore the web page should be considered and designed as the face of a particular website. But we still see that most of the online entrepreneurs leave the branding part on luck and chance and they rarely pay attention as far as the branding aspect is concerned.</p>
<p><span id="more-367"></span></p>
<p>Branding a product or services is solely done with the aim of how others will recognize and distinguish your business or services and the other major factor in branding is to develop goodwill in the market. Proper branding ensures that your customer base will remain intact and you will start getting word of mouth publicity, this is the ultimate form of advertising and branding. One of the main reasons why big company’s have become so huge is because they have had a very clear cut marketing and branding strategies and over and above this they have delivered on what they had promised (last part is also very important in case you want credibility in the market).</p>
<p>Branding done by Xerox or IBM is generally termed as B2B branding/ marketing. They spend a lot of money on branding and advertising, and vice versa, just to ensure that the companies, clients and customers perceive them fit and sound, both in terms of their products as well as their services. In case of online businesses all you need to do is make sure that you have an attractive logo and your content (on the web page/ website) is designed keeping the branding perspective in mind.</p>
<p>To start with you have to pin point the main and important values that your online business promises to offer. In case you have a web-designing site then you should mainly concentrate on the creativity and innovative aspect (this should be your first priority) and of course you should be professional enough to convey to your clients that they will get their money’s worth in case they approach you and your company. This is where your branding (of your website) starts taking shape.</p>
<p>Your logo, content of your web page and the design or layout of the page should convey what all you can provide to your potential clients, all this has to be done in a very professional way. Building a brand is like gaining somebody’s trust hence you have to ensure that you deliver on all your promises, this is of utmost importance. Once you ensure that these things are in place and you can deliver as per your promises your online business will soon see the vertical graph as far as the growth of your business is concerned. You can plan to start your online business from the comfort of your home but never compromise on the quality and promises that you make.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fbranding-identity%2Fbranding-is-an-essential-tool-for-online-businesses&amp;linkname=Branding%20is%20an%20essential%20tool%20for%20online%20businesses"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/branding-identity/branding-is-an-essential-tool-for-online-businesses/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Bang For Your Buck</title>
		<link>http://www.prowebmarketing.com/blog/graphic-design/more-bang-for-your-buck</link>
		<comments>http://www.prowebmarketing.com/blog/graphic-design/more-bang-for-your-buck#comments</comments>
		<pubDate>Fri, 11 Dec 2009 21:42:05 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=354</guid>
		<description><![CDATA[Let &#8216;&#8217;s just take a minute and talk about budgeting your next design project. I understand that this year has been rough but I think it&#8217;&#8217;s true when I say we should all be proactive when it comes to running a business this year. This holds true to revamping advertising ideas and marketing strategies to [...]]]></description>
			<content:encoded><![CDATA[<p>Let &#8216;&#8217;s just take a minute and talk about budgeting your next design project. I understand that this year has been rough but I think it&#8217;&#8217;s true when I say we should all be proactive when it comes to running a business this year. This holds true to revamping advertising ideas and marketing strategies to reinvent how to generate larger revenue. I would like to talk about a few things that will make revamping your next project to be more streamlined and to also help you save cost on a professional designer.<span id="more-354"></span></p>
<ol>
<li>Communication: This is very important before starting a project and laying out all the correct information in the beginning will help things go much quicker. Also convey aspects of the project that you just don&#8221;t want to see or thing you do want to see. If you know something specific you want then let the designer know. They will also consult you on why or why not that is a good idea or not. Also be sure to describe the whole project before hand.</li>
<li>Invest In An Expert: Let them do exactly what you paid them to do. Give them time to figure out the best solution to your needs. A good designer will be upfront and let you know the time it will take to do the project. If the time is surprising, don&#8221;t worry it&#8217;&#8217;s for a good reason. They will call you with questions and or concerns in the process.</li>
<li>Do You Have A Budget: Of course you do, so stick with that and lay it out on the table to the designer. When doing this you give the designer the information to decide what will be needed for the project and how to cut costs. Any good designer can work with a budget and still be able to design a great end product. If something comes up for an extra costs; yes this does happen so please don&#8221;t be surprised, they will let you know about it.</li>
<li>Let The Professional Do The Work: Let them give you options of what they know will be the best solution. If you don&#8221;t like something then communicate that to them as best you can.</li>
<li>Be Organized: This will also save time which can also save money. Be organized with your information. If you have photos you want to incorporate, then categorize them into folder by name. This leaves out time that the designer will need to organize them himself when they don&#8221;t know anything about your image.</li>
</ol>
<p>After taking these initial steps to starting your next design project with a professional this will sure be a productive investment to saving money long term and creating some great work.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fgraphic-design%2Fmore-bang-for-your-buck&amp;linkname=More%20Bang%20For%20Your%20Buck"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/graphic-design/more-bang-for-your-buck/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Invest In Expert Design</title>
		<link>http://www.prowebmarketing.com/blog/graphic-design/invest-in-expert-design</link>
		<comments>http://www.prowebmarketing.com/blog/graphic-design/invest-in-expert-design#comments</comments>
		<pubDate>Fri, 11 Dec 2009 21:06:10 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[expert]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=352</guid>
		<description><![CDATA[Of course we all want more for a decent price this year. Now when this topic comes to design and web development it is always a good thing to invest wise when it comes to your upcoming design project. Whether your representing your company with a new brand or advertising with print ads, you will [...]]]></description>
			<content:encoded><![CDATA[<p>Of course we all want more for a decent price this year. Now when this topic comes to design and web development it is always a good thing to invest wise when it comes to your upcoming design project. Whether your representing your company with a new brand or advertising with print ads, you will want to make sure you get a professional to do the work. <span id="more-352"></span>Due to the recent advances in software, computers and also online education there has been many people proclaiming they know how to design a brand for your business, or layout a 20,000 piece order for a point of purchase display. They claim they can because they bought a logo design software program from Office Max for $40 now they can charge people a low cost logo. Sure they can do that but let me lay out real quick what they are getting from that software.</p>
<ul>
<li>Clip Art Designs</li>
<li>Cookie Cutter Marks</li>
<li>Limited Color Options</li>
<li>No Creative Control</li>
<li>Same Logo That Competitor Has</li>
</ul>
<p>These are just some of the factors. Designers are creative people that know advanced software inside and out so that they can get out of their heads onto a digital art board their creative ideas. They go to design school, take color theory and print production classes. Create a their own creative process for dealing with problems like print time demands and money limitations. They are experience and know what color scheme and logo marks will work best for a businesses brand.</p>
<p>In the industry of design you get what you pay for and if you need to invest wisely in someone who is an expert in their field of work and can create something for your businesses needs that is visually compelling and jaw dropping. Doing this will help an owner save money in the long run and be able to generate a larger clientele with a long lasting, time tested design.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fgraphic-design%2Finvest-in-expert-design&amp;linkname=Invest%20In%20Expert%20Design"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/graphic-design/invest-in-expert-design/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Marketing Strategies</title>
		<link>http://www.prowebmarketing.com/blog/advertising/internet-marketing-strategies</link>
		<comments>http://www.prowebmarketing.com/blog/advertising/internet-marketing-strategies#comments</comments>
		<pubDate>Thu, 10 Dec 2009 14:06:58 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[marketing tips]]></category>
		<category><![CDATA[web marketing]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=348</guid>
		<description><![CDATA[There are many and varied methods to bring your business to as many people as possible online. Using the following tips will increase website traffic and allow your business to expand rapidly.
Video Marketing
It has become very easy to embed video, and they are relatively easy to make. Videos give a touch of class, can be [...]]]></description>
			<content:encoded><![CDATA[<p>There are many and varied methods to bring your business to as many people as possible online. Using the following tips will increase website traffic and allow your business to expand rapidly.</p>
<p><strong>Video Marketing</strong><br />
It has become very easy to embed video, and they are relatively easy to make. Videos give a touch of class, can be viewed in seconds, and cover the same amount of information as an hour’s writing.</p>
<p><strong>Social Media</strong><br />
Although you will need to work to build strong, permanent relationships, social sites cannot be beaten for free traffic. You will receive, in return for the work you put in, a much focussed stream of customers, all very relevant to your business.</p>
<p><span id="more-348"></span></p>
<p><strong>Article marketing</strong><br />
The backbone of any marketing strategy, and always will be in some form. It stands to reason that a well written article full of pertinent information will sell a product and build trust with readers. Article directories give a further dimension. They allow your article to be picked up and posted to somebody else’s site giving free links and traffic from elsewhere. This tactic will help you build traffic and increase search engine rankings.</p>
<p><strong>Forums</strong><br />
Links are not allowed on many forums today, an effort to combat spam. Some do, though, and as long as the posts are useful and informative, a link can usually be added in a signature. As long as you do not start spamming, trust can be built relatively easy as you piggyback the trust the reader already has with the forum, which in turn allows you to build trust with them.<br />
<strong><br />
Blog Commenting</strong><br />
Pick good quality blogs that fit within your sales niche. Be intelligent about the whole thing: ask questions, build relationships with other readers.</p>
<p><strong>Email Marketing</strong><br />
Every email address you pick up in the course of your marketing efforts should be logged. Each time somebody visits your website, get the email address there too. Don’t be pushy about it, remain businesslike. Once you have a good list, you can promote your products again and again. Do not over-promote, however, a good relationship is far more important. Inform potential customers how they can solve their need with your product. Remember, also, that they may well refer your website to their own contacts, invaluable business.</p>
<p><strong>PPC Advertising</strong><br />
A very popular method, pay-per-click advertising can lose you money in the short-term but could prove a real money-spinner in the long-term. It is possible to spend lots on this method, so you need to keep a tight rein on what you spend. It may take time, but once your PPC campaign is up and running, it could prove to be extremely profitable.</p>
<p><strong>Viral Reports and EBooks</strong><br />
Spend some time writing reports and eBooks. They should be filled with good quality content, not with a profusion of links. Allow as many people as you can to pass them around. As long as they are filled with great quality, useful information, people will be happy to do so. A truly successful report or eBook will not need to be pushed around. It all comes back to building relationships: if you produce great content, customers will want to give you their business. As long as the links you do add are only of the very useful kind, people will still have a route to your website. Best practice is to place the most important link in the footer so it appears on every page.</p>
<p><strong>Guest Writing</strong><br />
Always be open to writing posts for other people’s blogs. This takes a bit of research as you will have to find several, say 10-20, people with blogs that fall within your niche. The main emphasis should be with those blogs that receive good traffic, not necessarily the biggest. Simply ask them if they want a free article post, build up the trust until you can ask them if you can post a couple of quality links within the post you write. Long-term, guest writing will allow your own website to become more well-known, always good.</p>
<p><strong>SEO</strong><br />
Search engine optimization will always be one of the most important tactics you will use in marketing your website. In excess of 80% of all internet traffic uses a major search engine. Good links to your website are, therefore, crucial. Your long-term goal here is to get a good search engine results page (SERPS) ranking, and to get your website to move up these rankings constantly.</p>
<p>Good quality marketing should be in your sights from the first day you set up your website. All marketing should be top quality. Never spam as this will alienate people that could possibly give you business. Worse, every person you alienate could be someone that could come back to you again and again.<br />
Relationships, therefore, are a crucial key for any marketing strategy. Really good customers will refer your website on, also.</p>
<p>Keep content informative and ensure quality is sufficient that it will keep a potential customer reading, hopefully all the way to a purchase.</p>
<p>Finally, it is imperative that your website is easy to reach. Whether through SEO and SERPS rankings, or through other forms of advertising such as guest writings, forums and blogs, the more links there are anywhere on the internet, the more chance of pulling in a potential customer.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fadvertising%2Finternet-marketing-strategies&amp;linkname=Internet%20Marketing%20Strategies"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/advertising/internet-marketing-strategies/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Pro Web Marketing Video</title>
		<link>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/new-pro-web-video</link>
		<comments>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/new-pro-web-video#comments</comments>
		<pubDate>Tue, 24 Nov 2009 18:12:27 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Pro Web Marketing News]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[pro web]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=328</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_pwm-video-blog4_801342148"
			class="flashmovie"
			width="440"
			height="370">
	<param name="movie" value="http://www.prowebmarketing.com/pwm-video-blog4.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.prowebmarketing.com/pwm-video-blog4.swf"
			name="fm_pwm-video-blog4_801342148"
			width="440"
			height="370">
	<!--<![endif]-->
		


	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
]]></description>
			<content:encoded><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_pwm-video-blog4_623082916"
			class="flashmovie"
			width="440"
			height="370">
	<param name="movie" value="http://www.prowebmarketing.com/pwm-video-blog4.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.prowebmarketing.com/pwm-video-blog4.swf"
			name="fm_pwm-video-blog4_623082916"
			width="440"
			height="370">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fpro-web-marketing-company-news%2Fnew-pro-web-video&amp;linkname=New%20Pro%20Web%20Marketing%20Video"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/new-pro-web-video/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rifle Season is in Full Swing</title>
		<link>http://www.prowebmarketing.com/blog/traverse-city/rifle-season-is-full-swing</link>
		<comments>http://www.prowebmarketing.com/blog/traverse-city/rifle-season-is-full-swing#comments</comments>
		<pubDate>Fri, 20 Nov 2009 21:21:36 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Traverse City]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=326</guid>
		<description><![CDATA[Even though we all are thinking about how bad the economy is, people are still making it out this Rifle season to bring home the meat! The season is in full swing and local area hunting enthusiasts are bringing down bucks. The department of Natural Resources announces that 34 deer were brought through there station [...]]]></description>
			<content:encoded><![CDATA[<p>Even though we all are thinking about how bad the economy is, people are still making it out this Rifle season to bring home the meat! The season is in full swing and local area hunting enthusiasts are bringing down bucks. The department of Natural Resources announces that 34 deer were brought through there station on Wednesday alone. I myself went out on opening day and sat with a friend of mine and got his input on last years hunt from. He said that there just wasn&#8217;t as many hunters out that he usually has seen in previous year. He wasn&#8217;t really sure yet what that meant or even if this season was going to be great at all for hunting. This really makes me believe that<span id="more-326"></span>the population of deer in Northern Michigan has decreased as obviously as it sounds. There are also other factors that play into this as well, the coats on deer in the warmer weather can also mean that deer won&#8217; t move during the day time as much as usual. Maybe people are trying to save a little money on permits and shells and not going out this year. It is also much harder to see deer which there is no snow on the ground too. Another factor is more people are choosing to work on these days rather than taking the time off of work.</p>
<p>Well whatever the reason may be this season on the hunt or lack of hunting, I think it&#8217;s safe to say that regardless of economy and lack of snow the first week of the season the hunting will continue on.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Ftraverse-city%2Frifle-season-is-full-swing&amp;linkname=Rifle%20Season%20is%20in%20Full%20Swing"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/traverse-city/rifle-season-is-full-swing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>City Plans to Sue Charter Over channels</title>
		<link>http://www.prowebmarketing.com/blog/traverse-city/city-plans-to-sue-charter-over-channels</link>
		<comments>http://www.prowebmarketing.com/blog/traverse-city/city-plans-to-sue-charter-over-channels#comments</comments>
		<pubDate>Fri, 20 Nov 2009 21:08:28 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Traverse City]]></category>
		<category><![CDATA[charter]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=324</guid>
		<description><![CDATA[Charter communications is planning to rearrange certain public broadcasting channels. They are trying to move the channels 2 and 13 up to 96 and 97 as early as the first of December. It seems that Charter has decline talking to the record eagle about the whole thing. As they try to continue supporting themselves as [...]]]></description>
			<content:encoded><![CDATA[<p>Charter communications is planning to rearrange certain public broadcasting channels. They are trying to move the channels 2 and 13 up to 96 and 97 as early as the first of December. It seems that Charter has decline talking to the record eagle about the whole thing. As they try to continue supporting themselves as a company it doesn&#8217;t seem like that have any interest in supporting local initiatives for our area. This type of move could severely damage the non profit stations mass of viewers.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Ftraverse-city%2Fcity-plans-to-sue-charter-over-channels&amp;linkname=City%20Plans%20to%20Sue%20Charter%20Over%20channels"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/traverse-city/city-plans-to-sue-charter-over-channels/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typography and the Web</title>
		<link>http://www.prowebmarketing.com/blog/graphic-design/typography-and-the-web</link>
		<comments>http://www.prowebmarketing.com/blog/graphic-design/typography-and-the-web#comments</comments>
		<pubDate>Fri, 20 Nov 2009 20:50:41 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[graphic desgin]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=319</guid>
		<description><![CDATA[Throughout the past few years Typography for the web has been going through some changes. Before designers were unable to work with fonts they wanted without using images of the text. Most browsers will only read certain types of system fonts which has hindered the designers creativity. We have been constantly searching new tricks and [...]]]></description>
			<content:encoded><![CDATA[<p>Throughout the past few years Typography for the web has been going through some changes. Before designers were unable to work with fonts they wanted without using images of the text. Most browsers will only read certain types of system fonts which has hindered the designers creativity. We have been constantly searching new tricks and ways to display better fonts in browsers and nothing has really seemed to work well with search engines. Until recently there has been a new way to create editable text in web browsers&#8230;..<span id="more-319"></span>The &#8220;Scalable Inman Flash Replacement&#8221; or sIFR for short. This technique uses a combination of images text and flash to create editable text content readable by search engines for web browsers. Compatible on Macs, Windows and Linux machines with javascript on.</p>
<p>So with all that being said lets talk a moment about good Typography practices. Every web page or design needs to first start with a clear a readable font. I mean readable especially at smaller text sizes. When you have smaller text your height or &#8220;x-height&#8221; as we call it needs to be higher and also the space between the letters needs to be a bit larger. Ok now for contrast and why we thrive on it. It is important to keep in mind that you should switch it up and have different types of fonts in a design to generate interest and a personality. But don&#8217;t go crazy with this idea because some fonts can just as easily resist each other. But also having them very similar will not create enough contrast which can make for a weak design. So I recommend keeping it simple and fun. Sans serif fonts are great for heading areas to display call to action for posters, flyers, business cards and many other print work. These sans serif fonts can be read easily when larger in size and the letters are closer together. Serif fonts are better for body copy and smaller heading areas. Hope this information helps with any of your Typography questions.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fgraphic-design%2Ftypography-and-the-web&amp;linkname=Typography%20and%20the%20Web"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/graphic-design/typography-and-the-web/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Project for Hertler Construction</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-hertler-construction</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-hertler-construction#comments</comments>
		<pubDate>Thu, 19 Nov 2009 21:44:34 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[contruction]]></category>
		<category><![CDATA[hertler]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=240</guid>
		<description><![CDATA[We are in the works of a new Website for Hertler Construction. This Website has been specifically designed to keep the consistent brand of the logo and the company&#8217;s mission of how they work inline with each other. They are recognized for being a well organized, clean and efficient company. They create high end construction [...]]]></description>
			<content:encoded><![CDATA[<p>We are in the works of a new Website for Hertler Construction. This Website has been specifically designed to keep the consistent brand of the logo and the company&#8217;s mission of how they work inline with each other. They are recognized for being a well organized, clean and efficient company. They create high end construction projects on any scale. This site clearly showcases two galleries of work consisting of Residential and Commercial projects. The site displays some new project sections to display what Hertler Construction has been up to.</p>
<p>Look for <a title="Hertler Construction" href="http://www.hertlerconstruction.com" target="_blank">www.hertlerconstruction.com</a> to launch in the next few weeks!</p>
<div id="attachment_243" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.hertlerconstruction.com"><img class="size-full wp-image-243" title="Hertler Construction" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/HertlerConstruction.jpg" alt="Hertler Constructions Website" width="450" height="286" /></a><p class="wp-caption-text">Hertler Constructions Website</p></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-project-for-hertler-construction&amp;linkname=New%20Project%20for%20Hertler%20Construction"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-hertler-construction/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brand New Website Finished for Creative Stone Designs</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/brand-new-website-finished-for-creative-stone-designs</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/brand-new-website-finished-for-creative-stone-designs#comments</comments>
		<pubDate>Thu, 19 Nov 2009 21:43:05 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[completed]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[stone]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=247</guid>
		<description><![CDATA[We just finished a new Website for Creative Stone Designs in Traverse City. The client wanted a very clean and simple Website that really emphasized the work that they have done. This is exactly what we did for them. The site is a showcases all aspects of their business in galleries. These galleries use jquery [...]]]></description>
			<content:encoded><![CDATA[<p>We just finished a new Website for <a title="Creative Stone Designs" href="http://www.creativestonedesignsinc.com" target="_blank">Creative Stone Designs</a> in Traverse City. The client wanted a very clean and simple Website that really emphasized the work that they have done. This is exactly what we did for them. The site is a showcases all aspects of their business in galleries. These galleries use jquery galleries to slide you through each image. The images are navigated by the viewer at their own speed. The site also has two clearly viewed Google maps to show each company location. There is also information regarding detailed services along with frequently asked questions about the business.</p>
<p>Visit <a title="Creative Stone Designs" href="http://www.creativestonedesignsinc.com" target="_blank">www.creativestonedesignsinc.com</a> to view the site!!</p>
<div id="attachment_252" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.creativestonedesignsinc.com"><img class="size-full wp-image-252" title="Creative Stone Designs" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/CreativeStoneDesigns1.jpg" alt="Creative Stone Designs Website" width="450" height="242" /></a><p class="wp-caption-text">Creative Stone Designs Website</p></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fbrand-new-website-finished-for-creative-stone-designs&amp;linkname=Brand%20New%20Website%20Finished%20for%20Creative%20Stone%20Designs"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/brand-new-website-finished-for-creative-stone-designs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily Share/Promote Your Web Site</title>
		<link>http://www.prowebmarketing.com/blog/web-site-tools/easily-sharepromote-your-web-site</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-tools/easily-sharepromote-your-web-site#comments</comments>
		<pubDate>Wed, 18 Nov 2009 15:44:21 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[social networking business networking]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=300</guid>
		<description><![CDATA[You have your web site up and running or you have just added some important posts to your Blog.  How do you make it as easy as possible to for people to share this information?
Here is a free web-based tool that does just that.  It is called &#8216;Add This&#8217; and can be seen here at [...]]]></description>
			<content:encoded><![CDATA[<p>You have your web site up and running or you have just added some important posts to your Blog.  How do you make it as easy as possible to for people to share this information?</p>
<p>Here is a free web-based tool that does just that.  It is called &#8216;Add This&#8217; and can be seen here at this web site:</p>
<p>http://www.addthis.com/</p>
<p>You pick the options you want and the site will automatically generate the HTML code needed. You simply copy/paste this this code and place it on your Web site or with-in the template of your blog.</p>
<p><span id="more-300"></span></p>
<p>If you are not exactly sure where to place the code, contact a friend that has basic HTML skills and they can help you. It should only take about 15 mins.</p>
<p>Now when someone wants to share an interesting blog post or page on your web site, they simply click on the icon that they have an account with. For example, if someone has a Facebook account, they click on the Facebook icon, login to there Facebook account, and they post a brief mention of your content. This generates more exposure for your site and is a great way to get traffic. It basically allows other people to promote your web site and blog, for no cost!</p>
<p>The other benefit of this tool is that once a person posts a mention of your content on there social networking account, it creates what is called a &#8216;back link&#8217;. A back link is simply a link on a web site that links to your web site. The more back links that you have from sites that have relevant, similar content, the better. Google and other search engines put a decent amount of weight on how many quality back links you have. Basically the more quality back links, the more important you site must be in the eyes of the search engines.</p>
<p>So if your looking for a free, easy to use tool that allows others to share and promote your site, then I would highly recommend using this service.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-tools%2Feasily-sharepromote-your-web-site&amp;linkname=Easily%20Share%2FPromote%20Your%20Web%20Site"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-tools/easily-sharepromote-your-web-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS and Divs vs Tables</title>
		<link>http://www.prowebmarketing.com/blog/web-standards/css-and-divs-vs-tables</link>
		<comments>http://www.prowebmarketing.com/blog/web-standards/css-and-divs-vs-tables#comments</comments>
		<pubDate>Wed, 18 Nov 2009 04:19:37 +0000</pubDate>
		<dc:creator>brad</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[divs]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=282</guid>
		<description><![CDATA[When it comes to building sites some people are still using tables to create their layouts.  While these still may work they are outdated and can look unprofessional.  This is where CSS and Divs come in.  Not only are they the new and latest design technique but they also can give your site a superior [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to building sites some people are still using tables to create their layouts.  While these still may work they are outdated and can look unprofessional.  This is where CSS and Divs come in.  Not only are they the new and latest design technique but they also can give your site a superior look.  Some other benefits to using CSS and Divs include faster load times, cross-browser compatibility, lower hosting costs, less time spent, consistency maintained, easier for SEO, etc.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-standards%2Fcss-and-divs-vs-tables&amp;linkname=CSS%20and%20Divs%20vs%20Tables"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-standards/css-and-divs-vs-tables/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maximizing Your Website&#8217;s Full Potential</title>
		<link>http://www.prowebmarketing.com/blog/web-site-design/maximizing-your-websites-full-potential</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-design/maximizing-your-websites-full-potential#comments</comments>
		<pubDate>Tue, 17 Nov 2009 15:19:40 +0000</pubDate>
		<dc:creator>brad</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=231</guid>
		<description><![CDATA[Whether your website is for business or personal use its important to follow certain guidelines to ensure users have a good experience .
Theme/Color - This is the first impression the user gets when visiting your site and can be the determining factor if they stay or leave.  When creating a theme for your site keep [...]]]></description>
			<content:encoded><![CDATA[<p>Whether your website is for business or personal use its important to follow certain guidelines to ensure users have a good experience .</p>
<p><strong>Theme/Color </strong>- This is the first impression the user gets when visiting your site and can be the determining factor if they stay or leave.  When creating a theme for your site <em>keep it simple</em>.  The easiest way to do this is by designating areas for your header (logo/banner), navigation, content, and footer (copyright, contact info, etc) that fit together to create a square/rectangle on the page.  When picking colors try picking ones that flow together and are easy on the users eyes.  There are many tools on the web that can assist with this such as a <a href="http://colorschemedesigner.com/" target="_blank">color wheel</a> which help with getting lighter/darker shades and colors that compliment each other.</p>
<p><strong>Navigation/Menu </strong>- This is another crucial part to your site and should be visible on all pages near the top or in a sidebar for easy access.  A menu may also be placed at the bottom for your users convenience if your site content is long or you have a flash (elderly users or older browsers may not recognize this) navigation.  However the bottom of your page shouldn&#8217;t  be the primary source of navigation.  Another thing to remember is to <em>never have broken links</em> because they look unprofessional and can frustrate the user.  Even if a page is not up yet you should still never leave the link broken.  Simply create a page letting the user know the page is currently under construction and to check back.</p>
<p><strong>Content</strong> &#8211; This can also make or break your website.  When adding content be sure to <em>break it up</em> with line breaks, bullets, images, different alignment, etc.  A user does not want to sit and read a wall of text, they want to get the key information easily.  If a page is really long there may be a chance that you could take a section and place it on its own page.  You also want to make sure you keep related information together and unrelated information apart to avoid confusion from the user.</p>
<p><strong>Footer</strong> &#8211; The final thing in maximizing your sites potential is creating a footer for the bottom of your pages.  A footer should contain copyright information and your contact information such as address, phone, e-mail, etc for quick access to the user.   The footer should not however replace a contact page.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-design%2Fmaximizing-your-websites-full-potential&amp;linkname=Maximizing%20Your%20Website%26%238217%3Bs%20Full%20Potential"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-design/maximizing-your-websites-full-potential/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Clients &#8211; Redmond Automotive</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-clients-redmond-automotive</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-clients-redmond-automotive#comments</comments>
		<pubDate>Mon, 16 Nov 2009 21:24:51 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[Local Business]]></category>
		<category><![CDATA[New Projects]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[Traverse City]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=273</guid>
		<description><![CDATA[Redmond Automotive is a great example of a long time Traverse City local business.  They have been serving customers for their automotive needs for 25 years, and are located on 14th street in the middle of Traverse City.  We have been working with them to create a website that is extremely straightforward, simple, and easy [...]]]></description>
			<content:encoded><![CDATA[<p>Redmond Automotive is a great example of a long time Traverse City local business.  They have been serving customers for their automotive needs for 25 years, and are located on 14th street in the middle of Traverse City.  We have been working with them to create a website that is extremely straightforward, simple, and easy to use for their potential customers.<span id="more-273"></span> Their goals were to make sure the visitors to their website understood all of the services they offer while maintaining a crisp, solid look that really catches the eye.  We used some cutting edge photoshop techniques to make this site stick in the minds of the people who view it.  Redmond Automotive has two locations, so this website is essentially a &#8220;two-in-one&#8221;.  It showcases the services at their auto repair shop on 14th Street and also promotes the services of their Cass Street automotive accessories shop.</p>
<p>We used custom hand-drawn gradients and lighting effects to make every part of the site unique.</p>
<div id="attachment_274" class="wp-caption aligncenter" style="width: 278px"><img class="size-full wp-image-274" title="specials" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/specials.jpg" alt="Specials Box Sidebar" width="268" height="106" /><p class="wp-caption-text">Specials Box Sidebar</p></div>
<p>The site uses a lot of imagery while not removing prominence from the textual information.  The photos below the header rotate through several pictures of their location and their staff.</p>
<div id="attachment_275" class="wp-caption aligncenter" style="width: 360px"><img class="size-full wp-image-275" title="preview" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/preview.jpg" alt="Site Design Not Finalized" width="350" height="245" /><p class="wp-caption-text">Site Design Not Finalized</p></div>
<p>Look for Redmond Automotive to launch in the coming weeks.  <a title="Redmond Automotive" href="http://www.redmondautotc.com" target="_blank">http://www.redmondautotc.com</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-clients-redmond-automotive&amp;linkname=New%20Clients%20%26%238211%3B%20Redmond%20Automotive"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-clients-redmond-automotive/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Project For Cedar Creek Interiors</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-cedar-creek-interiors</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-cedar-creek-interiors#comments</comments>
		<pubDate>Thu, 12 Nov 2009 18:31:24 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[cedar]]></category>
		<category><![CDATA[creek]]></category>
		<category><![CDATA[interiors]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=268</guid>
		<description><![CDATA[We have been working on a another new and exciting Website for Cedar Creek Interiors. We have put together for them  a very unique Website that will display there vast inventory of in-house products and also catalog only items. The site has a break down of four categories; Cottages, Rustic, Traditional and Transitional. Each page [...]]]></description>
			<content:encoded><![CDATA[<p>We have been working on a another new and exciting Website for Cedar Creek Interiors. We have put together for them  a very unique Website that will display there vast inventory of in-house products and also catalog only items. The site has a break down of four categories; Cottages, Rustic, Traditional and Transitional. Each page will highlight the category and give a brief view of what they offer. As a customer your able to just scratch the surface of the site or you can dive in deep to get full catalog views of all products available. Cedar Creek Interiors originally wanted a site that gave a very strong sense of who they were in the design. We took this in mind and created a site that is elegant and informational at the same time.</p>
<p>Look back later for the new <a title="Cedar Creek Interiors" href="http://www.cedarcreekinteriors.com" target="_blank">www.cedarcreekinteriors.com</a> Website in a few weeks!!</p>
<div id="attachment_269" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.cedarcreekinteriors.com"><img class="size-full wp-image-269" title="Cedar Creek Interiors" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/CedarCreekInteriors.jpg" alt="Cedar Creek Interiors" width="450" height="277" /></a><p class="wp-caption-text">Cedar Creek Interiors</p></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-project-for-cedar-creek-interiors&amp;linkname=New%20Project%20For%20Cedar%20Creek%20Interiors"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-cedar-creek-interiors/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Project for Daddy Mac&#8217;s Snacks</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-daddy-macs-snacks</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-daddy-macs-snacks#comments</comments>
		<pubDate>Thu, 12 Nov 2009 18:04:34 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[daddy]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[snacks]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=234</guid>
		<description><![CDATA[Another one of our newest client Websites is for Daddy Mac&#8217;s Snacks. Located in Traverse City, Daddy Mac&#8217;s has been a large part of the snack industry in the area and decided it was time to take his business to the next level. That meant taking sales online with a great looking Website that would [...]]]></description>
			<content:encoded><![CDATA[<p>Another one of our newest client Websites is for Daddy Mac&#8217;s Snacks. Located in Traverse City, Daddy Mac&#8217;s has been a large part of the snack industry in the area and decided it was time to take his business to the next level. That meant taking sales online with a great looking Website that would attract new customers and generate interest in his many products. The site consists mainly of the company information and will soon be taking sales of his snacks online.</p>
<p>Check back at <a title="Daddy Mac's Snacks" href="http://www.daddymacsnacks.com" target="_blank">www.daddymacsnacks.com</a> for the Website launch!</p>
<div id="attachment_238" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.daddymacsnacks.com"><img class="size-full wp-image-238" title="DaddyMacSnacks" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/DaddyMacSnacks.jpg" alt="Daddy Mac's Snacks Website" width="450" height="357" /></a><p class="wp-caption-text">Daddy Mac&#39;s Snacks Website</p></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-project-for-daddy-macs-snacks&amp;linkname=New%20Project%20for%20Daddy%20Mac%26%238217%3Bs%20Snacks"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-for-daddy-macs-snacks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIM Group &#8211;  An Extensive Re-Design Project</title>
		<link>http://www.prowebmarketing.com/blog/web-site-re-design/fim-group-an-extensive-re-design-project</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-re-design/fim-group-an-extensive-re-design-project#comments</comments>
		<pubDate>Tue, 10 Nov 2009 20:00:11 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Website Re-designs]]></category>
		<category><![CDATA[FIM]]></category>
		<category><![CDATA[Group]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=225</guid>
		<description><![CDATA[FIM Group is a fee-only investment management firm located in Traverse City.  They serve a lot of high-profile clientele and bring a lot of online functionality to their services with their website.  One of the challenges of this project was maintaining that functionality while adding ease of use and a new design to the entire FIM Group network.]]></description>
			<content:encoded><![CDATA[<p>FIM Group is a fee-only investment management firm located in Traverse City.  They serve a lot of high-profile clientele and bring a lot of online functionality to their services with their website.  <span id="more-225"></span>One of the challenges of this project was maintaining that functionality while adding ease of use and a new design to the entire FIM Group network.  Their old site was hard to navigate and even harder to update.  We redesigned the site based on a content management system to make it easy for developers and FIM Group staff alike to update their content.</p>
<div class="wp-caption aligncenter" style="width: 421px"><img title="FIM Group Old Site" src="http://i36.tinypic.com/nfk1s5.jpg" alt="FIM Group Old Site" width="411" height="273" /><p class="wp-caption-text">FIM Group Old Site</p></div>
<div class="wp-caption aligncenter" style="width: 422px"><img title="FIM Group Re-Design" src="http://i38.tinypic.com/2dv1ipz.jpg" alt="FIM Group Re-Design" width="412" height="274" /><p class="wp-caption-text">FIM Group Re-Design</p></div>
<p><br style="clear: both;" /><br />
Look for the new FIM Group website to launch in the next few weeks!</p>
<p><a title="FIM Group" href="http://www.fimg.net/" target="_blank">http://www.fimg.net/</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-re-design%2Ffim-group-an-extensive-re-design-project&amp;linkname=FIM%20Group%20%26%238211%3B%20%20An%20Extensive%20Re-Design%20Project"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-re-design/fim-group-an-extensive-re-design-project/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Iceman Race Results</title>
		<link>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/iceman-race-results</link>
		<comments>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/iceman-race-results#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:20:13 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Pro Web Marketing News]]></category>
		<category><![CDATA[iceman]]></category>
		<category><![CDATA[race]]></category>
		<category><![CDATA[results]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=212</guid>
		<description><![CDATA[The race had an amazing turnout. The venue was packed with vendors, hundreds of spectators and close to 4,500 racers. The event went all day. They released the racers in waves, based on age and skill level. Our racer Rob took off at 10:20am and had a strong finish 2 hours and 22 minutes later. [...]]]></description>
			<content:encoded><![CDATA[<p>The race had an amazing turnout. The venue was packed with vendors, hundreds of spectators and close to 4,500 racers. The event went all day. They released the racers in waves, based on age and skill level. Our racer Rob took off at 10:20am and had a strong finish 2 hours and 22 minutes later. We congratulate Rob and look forward to sponoring him again next year!</p>
<div id="attachment_213" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-213" title="DSCF4197" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/11/DSCF4197-300x225.jpg" alt="Rob Iceman Race 2009" width="300" height="225" /><p class="wp-caption-text">Rob Iceman Race 2009</p></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fpro-web-marketing-company-news%2Ficeman-race-results&amp;linkname=Iceman%20Race%20Results"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/iceman-race-results/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro Web Marketing optimizes Clark RV Center</title>
		<link>http://www.prowebmarketing.com/blog/search-engine-optimization/pro-web-marketing-optimizes-clark-rv-center</link>
		<comments>http://www.prowebmarketing.com/blog/search-engine-optimization/pro-web-marketing-optimizes-clark-rv-center#comments</comments>
		<pubDate>Mon, 09 Nov 2009 15:49:31 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=206</guid>
		<description><![CDATA[Pro Web Marketing has recently performed search engine optimization for Clark RV Center&#8217;s web site at
http://mtpleasantrvcenter.com/ Pro Web Marketing uses the latest optimization strategies when optimizing for the search engines, especially when it comes to Google.  We strive to make your web site reach its highest potential when an individual searches a specific keyword or [...]]]></description>
			<content:encoded><![CDATA[<p>Pro Web Marketing has recently performed search engine optimization for Clark RV Center&#8217;s web site at</p>
<p><a href="http://mtpleasantrvcenter.com/">http://mtpleasantrvcenter.com/</a> Pro Web Marketing uses the latest optimization strategies when optimizing for the search engines, especially when it comes to Google.  We strive to make your web site reach its highest potential when an individual searches a specific keyword or phrase that pertains to your product or service.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fsearch-engine-optimization%2Fpro-web-marketing-optimizes-clark-rv-center&amp;linkname=Pro%20Web%20Marketing%20optimizes%20Clark%20RV%20Center"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/search-engine-optimization/pro-web-marketing-optimizes-clark-rv-center/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro Web Marketing Sponors Iceman Race</title>
		<link>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/pro-web-marketing-sponors-iceman-race</link>
		<comments>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/pro-web-marketing-sponors-iceman-race#comments</comments>
		<pubDate>Thu, 05 Nov 2009 05:33:28 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Pro Web Marketing News]]></category>
		<category><![CDATA[iceman]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[pro]]></category>
		<category><![CDATA[race]]></category>
		<category><![CDATA[sponsors]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=198</guid>
		<description><![CDATA[We are proud to announce that Pro Web Marketing is sponsoring a mountain bike racer Rob Hulwick, in the annual 2009 Iceman Cometh Challenge Race. Rob is an avid biker, enjoys training with his wife Robin Hulwick and has prepared for this race all year.
The race is to begin this weekend, Sat. Nov. 7th, 2009.  [...]]]></description>
			<content:encoded><![CDATA[<p>We are proud to announce that Pro Web Marketing is sponsoring a mountain bike racer Rob Hulwick, in the annual 2009 Iceman Cometh Challenge Race. Rob is an avid biker, enjoys training with his wife Robin Hulwick and has prepared for this race all year.</p>
<p>The race is to begin this weekend, Sat. Nov. 7th, 2009.  The trail route is a grueling, off-road 28 miles starting in Kakaska, Michigan and ending at Timber Ridge RV &amp; Recreation Resort on the eastern edge of Traverse City, Michigan. Ages range from 3 years to 82 years old and range in all skill levels.  The race attracts thousands of spectators and athletes from all over the country and in 2008 3,001 athletes from 36 states competed.</p>
<p>We wish Rob the best of luck and are happy to be apart of this event. For more information about this race please visit: <a title="Iceman Race" href="http://www.iceman.com" target="_blank">www.iceman.com</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fpro-web-marketing-company-news%2Fpro-web-marketing-sponors-iceman-race&amp;linkname=Pro%20Web%20Marketing%20Sponors%20Iceman%20Race"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/pro-web-marketing-company-news/pro-web-marketing-sponors-iceman-race/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracey Madder Photography</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/tracey-madder-photography</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/tracey-madder-photography#comments</comments>
		<pubDate>Wed, 04 Nov 2009 19:43:12 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[madder]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[tracey]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=196</guid>
		<description><![CDATA[One of our newest clients, Tracey Madder, came to us to design a website that portrayed her artistic abilities as well as her experience.  We came up with a solution that offers a lot of functionality through website tools.  We are using JavaScript and Flash techniques to display her photography in an interesting and easily [...]]]></description>
			<content:encoded><![CDATA[<p>One of our newest clients, Tracey Madder, came to us to design a website that portrayed her artistic abilities as well as her experience.  We came up with a solution that offers a lot of functionality through website tools.  We are using JavaScript and Flash techniques to display her photography in an interesting and easily accessible way.<span id="more-196"></span></p>
<p><img class="alignnone" title="Tracey Madder Website Screenshot" src="http://i35.tinypic.com/2drdxfs.jpg" alt="" width="300" height="201" /><br />
We will also be implementing a unique image upload service so that her clients can view and download their photos.</p>
<p>Look for <a title="Tracey Madder Photography" href="http://traceymadder.com/" target="_blank">www.traceymadder.com</a> to launch in the next few weeks!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Ftracey-madder-photography&amp;linkname=Tracey%20Madder%20Photography"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/tracey-madder-photography/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visiting, Living and Working in Traverse City</title>
		<link>http://www.prowebmarketing.com/blog/traverse-city/the-city-of-traverse-city</link>
		<comments>http://www.prowebmarketing.com/blog/traverse-city/the-city-of-traverse-city#comments</comments>
		<pubDate>Wed, 04 Nov 2009 04:48:49 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Traverse City]]></category>
		<category><![CDATA[city]]></category>
		<category><![CDATA[living]]></category>
		<category><![CDATA[traverse]]></category>
		<category><![CDATA[visiting]]></category>
		<category><![CDATA[working]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=191</guid>
		<description><![CDATA[If you have never visited Traverse City, Michigan; I highly recommend it. The area offers many attractions including beautiful shores lines, rolling hills of cherry orchards, an active downtown area, outdoor recreation, wine tours and much more.
There are two main events held every year; the Traverse City film festival and the Cherry Festival. The film [...]]]></description>
			<content:encoded><![CDATA[<p>If you have never visited Traverse City, Michigan; I highly recommend it. The area offers many attractions including beautiful shores lines, rolling hills of cherry orchards, an active downtown area, outdoor recreation, wine tours and much more.</p>
<p>There are two main events held every year; the Traverse City film festival and the Cherry Festival. The film festival brings celebrities from all over the world and a lot of attraction to the city. The recent Michigan film incentives should work in tandem with Traverse City film festival and help bring activity to Michigan as whole. The Traverse City Cherry Festival began in 1910 and can bring over 500,00o visitors over an eight day period. The festival includes 150 activities and events to participate in. Its a great time of year to celebrate cherries, tourism, and community involvement.</p>
<p><span id="more-191"></span></p>
<p>The city is located on the northwest region of Michigan. The sits at the head of Grand Traverse Bay, a water of Lake Michigan and also sits at the base of Leelanau and Old Mission Peninsulas. The two bays, East and West, are a scene of sail boats, power boats and kayaking during the summer months. The are many hotels lining the coast of the two bays and make for a very nice retreat.</p>
<p>There is nothing like taking a scenic drive down the peninsula on a warm summer day. You will see a nice mix of cherry orchards, wine distilleries,  beautiful homes, and passing bicyclists. There are restaurants to eat at and many scenic stops to take pictures.   After about a 30 minute drive you will end up at the end of the peninsula where you will find a lighthouse. A very pleasant summer experience in Traverse City.</p>
<p>Its also a great place to live. The city offer a variety of restaurants, recreation activities, education, and shopping. Cost of living and property is reasonably priced. Traverse City has ordinances in place to make sure there is a certain percentage of green space. There are not many rundown buildings and you will see construction and development throughout.</p>
<p>Overall, Traverse City is a great place to visit, live, work and play.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Ftraverse-city%2Fthe-city-of-traverse-city&amp;linkname=Visiting%2C%20Living%20and%20Working%20in%20Traverse%20City"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/traverse-city/the-city-of-traverse-city/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Want to Start a Blog?</title>
		<link>http://www.prowebmarketing.com/blog/social-networking-media/want-to-start-a-blog</link>
		<comments>http://www.prowebmarketing.com/blog/social-networking-media/want-to-start-a-blog#comments</comments>
		<pubDate>Tue, 03 Nov 2009 14:14:02 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Social Networking and Media]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[start]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=188</guid>
		<description><![CDATA[Blogs are really a great thing to have. Especially if your an aspiring Photographer. Having a blog up will help prospective new clients see what your working on from day to day. Photographers can go out into the field, snap some photos then return to post them and tell about your experiences with your outing. [...]]]></description>
			<content:encoded><![CDATA[<p>Blogs are really a great thing to have. Especially if your an aspiring Photographer. Having a blog up will help prospective new clients see what your working on from day to day. Photographers can go out into the field, snap some photos then return to post them and tell about your experiences with your outing. You can explain pros and cons to educate following newbie photographers.</p>
<p><span id="more-188"></span></p>
<p>This will pull you in a good base of readers which will then lead to networking with people in the industry. A Blog is also a place to see your progression of work and see where you were six months ago with your work. Due to advances in technology, Photographers have really needed to keep up on evolving trends and industry new comings. Cameras have been getting so advanced that they are marketing them as anyone can take a good photo now.</p>
<p>Another great aspect of having the Blog is the added extra bonuses you can have behind-the-scenes videos and photos. Your visitors can comment about your work. You can market the link to your Blog on other websites and web articles. keeping up on a Blog is also important and is a lot of work, but it can also get much easier once you get into the swing of it. Here are a couple main points to remember when doing a Blog.</p>
<ul>
<li>Post often, probably at least once a week.</li>
<li>Use images in your posts to illustrate your point.</li>
<li>Encourage feedback.</li>
<li>Have fun with it!</li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fsocial-networking-media%2Fwant-to-start-a-blog&amp;linkname=Want%20to%20Start%20a%20Blog%3F"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/social-networking-media/want-to-start-a-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Collaborating Files &amp; Projects Safely &amp; Securely</title>
		<link>http://www.prowebmarketing.com/blog/email/collaborating-files-projects-safely-securely</link>
		<comments>http://www.prowebmarketing.com/blog/email/collaborating-files-projects-safely-securely#comments</comments>
		<pubDate>Mon, 02 Nov 2009 20:10:09 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Security News]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[groove]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=186</guid>
		<description><![CDATA[Today, communication goes way beyond the telephone and &#8220;snail mail.&#8221;  Businesses have changed the way they conduct transactions both with their staff and clients.  E-mail has now surpassed all other conventional communications and with that comes security issues that arise when the email is being transferred from the sender to the recipient.  Hackers love emails [...]]]></description>
			<content:encoded><![CDATA[<p>Today, communication goes way beyond the telephone and &#8220;snail mail.&#8221;  Businesses have changed the way they conduct transactions both with their staff and clients.  E-mail has now surpassed all other conventional communications and with that comes security issues that arise when the email is being transferred from the sender to the recipient.  Hackers love emails with attachments.  They are able to break into secure hubs and snatch your files.</p>
<p><span id="more-186"></span>There are two secure programs that enable you to securily share your files and documents with staff and clients.</p>
<p>Microsoft Groove is by far the best collaboration program.  It allows you to collaborate calendars, documents, meetings, and much more.  If you have Microsoft Office 2007 Professional, you already have Groove available.</p>
<p>If you do not have Groove, <a href="http://www.dropbox.com" target="_blank">Dropbox</a> is a great little collaboration program that allows you to share and transfer up to 2 gig of space for free.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Femail%2Fcollaborating-files-projects-safely-securely&amp;linkname=Collaborating%20Files%20%26%23038%3B%20Projects%20Safely%20%26%23038%3B%20Securely"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/email/collaborating-files-projects-safely-securely/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Should Upgrade Your Web Browser</title>
		<link>http://www.prowebmarketing.com/blog/web-news/why-you-should-upgrade-your-web-browser</link>
		<comments>http://www.prowebmarketing.com/blog/web-news/why-you-should-upgrade-your-web-browser#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:48:44 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Web News]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=155</guid>
		<description><![CDATA[The fact of the matter is that technology is changing at a rate now of exponential capacities. So this also means that the web is changing as too. Along with these changes are modifications to how browsers display Websites. The one browser that is really giving many Web developers problems these days is the old [...]]]></description>
			<content:encoded><![CDATA[<p>The fact of the matter is that technology is changing at a rate now of exponential capacities. So this also means that the web is changing as too. Along with these changes are modifications to how browsers display Websites. The one browser that is really giving many Web developers problems these days is the old fashioned Internet Explorer 6, which ships with Windows XP. This browser also still holds around 15.3% of the total market share in browsers since September of this year. Still think that this is a decent market share? No its not considering that just this year it held around 25% of the market share. Yep, people are upgrading that fast. Just last year it held around 50% of the market share. The fact is that<span id="more-155"></span>Internet Explorer 6 does not recognize many modern techniques for building Website these days. Developers are starting to leave old techniques that IE6 employs in the dust. IE6 can&#8217;t recognize certain types of image transparencies which is now a huge part of how Web pages are now designed. Lacking these techniques it limits the creative genius that Web designers are needing to introduce to the world.</p>
<p>Other reasons why you should be upgrading are as follows:</p>
<ul>
<li>IE6 is much less secure.</li>
<li>Support for this browser will not continue much longer.</li>
<li>It also has less features. Such as no tabbed browsing.</li>
<li>More Websites you browse will appear broken.</li>
</ul>
<p>So for you sake and the sake of the internet please upgrade today and see the joy in the newest in Web design and how beautiful it really is. Don&#8217;t worry this won&#8217;t cost you a cent to upgrade either. It&#8217;s a free download from <a href="http://www.microsoft.com/windows/internet-explorer/" target="_blank">Microsoft</a> or you can download <a href="http://www.mozilla.com/en-US/" target="_blank">Mozillas Firefox</a> which also a very nice browser which has many great add-ons to enhance your browsing experience.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-news%2Fwhy-you-should-upgrade-your-web-browser&amp;linkname=Why%20You%20Should%20Upgrade%20Your%20Web%20Browser"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-news/why-you-should-upgrade-your-web-browser/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Crimes</title>
		<link>http://www.prowebmarketing.com/blog/security-news/social-media-crimes</link>
		<comments>http://www.prowebmarketing.com/blog/security-news/social-media-crimes#comments</comments>
		<pubDate>Sat, 31 Oct 2009 16:43:16 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Security News]]></category>
		<category><![CDATA[internet crime]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[social networking business networking]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=153</guid>
		<description><![CDATA[Now that more and more people and also businesses are signing up with Social Media networks such as Linkedin, Facebook and Myspace, these sites are starting to get hit by cyber criminals. In 2006 nearly 3,200 account hijacking cases have been reported at the Internet Crime Complaint Center. Ok so here is how this is [...]]]></description>
			<content:encoded><![CDATA[<p>Now that more and more people and also businesses are signing up with Social Media networks such as Linkedin, Facebook and Myspace, these sites are starting to get hit by cyber criminals. In 2006 nearly 3,200 account hijacking cases have been reported at the Internet Crime Complaint Center. Ok so here is how this is now happening and how you can be aware of this and protect yourself from harm.<span id="more-153"></span>With Facebook it starts within your wall or your news feed. Hackers are updating feeds with bogus text and video links to sites that get you reveal personal information such as passwords and addresses. Once the criminals have account access they will can then go into your account to send out more links with your friends and family. All the time your account is compromised they are acting as you in your account. They will have access to all of your friends to infiltrate.</p>
<p>Typically these thieves are exploiting the distress factor to lure in their potential victims.  &#8220;Please help me out&#8221;, &#8220;I am stranded in Germany and someone stole my money&#8221;. &#8220;click here to help me out&#8221;. Exploiting the trust you have between your friends is how their doing this.</p>
<p>Also now that Twitter is becoming more and more popular I see this site getting hit the most. It is so easy to shorten links to any site with out even having the name of the link in it. So even though Facebook and other sites have specialized software to detect malicious activity in your account it doesn&#8217;t always work that great. So please be careful with what links you open and do not fill out any of your account information on site that link out of social networking websites.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fsecurity-news%2Fsocial-media-crimes&amp;linkname=Social%20Media%20Crimes"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/security-news/social-media-crimes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Motorola Droid Phone Hits the Market Soon</title>
		<link>http://www.prowebmarketing.com/blog/tech-news/new-motorola-droid-phone-hits-the-market-soon</link>
		<comments>http://www.prowebmarketing.com/blog/tech-news/new-motorola-droid-phone-hits-the-market-soon#comments</comments>
		<pubDate>Fri, 30 Oct 2009 21:59:10 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[google android os]]></category>
		<category><![CDATA[motorola]]></category>
		<category><![CDATA[motorola droid phone]]></category>
		<category><![CDATA[verizon]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=151</guid>
		<description><![CDATA[The new Motorola Droid phone is set to hit the market on the sixth of November. This phone is based off of the Google&#8217;s Android OS. The newest feature  about the the Droid will be it&#8217;s Google Maps with voice-enabled turn-by-turn directions. The phone comes with an optional car mount kit for easy dashboard vehicle [...]]]></description>
			<content:encoded><![CDATA[<p>The new Motorola Droid phone is set to hit the market on the sixth of November. This phone is based off of the Google&#8217;s Android OS. The newest feature  about the the Droid will be it&#8217;s Google Maps with voice-enabled turn-by-turn directions. The phone comes with an optional car mount kit for easy dashboard vehicle mounting.<span id="more-151"></span></p>
<p>The new Droid will be offered only through Verizon Wireless for around $199 U.S. The specs are also something to rave about boasting a stunning 3.7-inch touchscreen with a slide down Qwerty keyboard.</p>
<p><strong>Specs include:</strong></p>
<p>CAMERA &#8211; real-time color, scene modes, location tagging. (5 megapixels)<br />
DIGITAL ZOOM &#8211; 4x<br />
FLASH &#8211; Dual LED<br />
FOCUS &#8211; Automatic<br />
IMAGE EDITING TOOLS &#8211; Cropping, rotating, Geo Tagging</p>
<p>- Social networking integration.<br />
- MMS messaging and SMS.<br />
- WIFI.<br />
- Bluetooth Technology</p>
<p>Plus much more. Check out the reviews online.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Ftech-news%2Fnew-motorola-droid-phone-hits-the-market-soon&amp;linkname=New%20Motorola%20Droid%20Phone%20Hits%20the%20Market%20Soon"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/tech-news/new-motorola-droid-phone-hits-the-market-soon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Project Friday</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-friday</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-friday#comments</comments>
		<pubDate>Fri, 30 Oct 2009 20:13:31 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=148</guid>
		<description><![CDATA[Another new project we have been working on here is for Sherwood Manufacturing out of Northport Michigan. Manufacturer using robots to weld parts and products for Ford, GM, Volkswagen and many other major companies. Their needs were pretty clear when they came to us with the job. They are a technical class of company and [...]]]></description>
			<content:encoded><![CDATA[<p>Another new project we have been working on here is for Sherwood Manufacturing out of Northport Michigan. Manufacturer using robots to weld parts and products for Ford, GM, Volkswagen and many other major companies. Their needs were pretty clear when they came to us with the job. They are a technical class of company and needed to represent this in a new Website. A crisp clear robotic type of look and feel to show they mean business and that just because there located in a small town they mean big business when it comes to manufacturing.</p>
<div id="attachment_317" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-317" title="Sherwood Manufacturing" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/10/SherwoodManufacturing.jpg" alt="Sherwood Manufacturing" width="450" height="242" /><p class="wp-caption-text">Sherwood Manufacturing</p></div>
<p>With the use of darker colors and a sophisticated layered background texture that tiles the page I fashioned up a site developed for fast loading strong text information and a clean navigation that gets the user to where they need to go for their information. Check back soon for updates on the this new project as it evolves and I reveal the link to their new Website!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-project-friday&amp;linkname=New%20Project%20Friday"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-friday/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Project in the Works &#8211; Sounds Environments</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-in-the-works</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-in-the-works#comments</comments>
		<pubDate>Fri, 30 Oct 2009 20:04:11 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[environments]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=146</guid>
		<description><![CDATA[Another new and very exciting project were working on is for Traverse City Sound Environments. In the interest of the owner I gathered what information they wanted and what he wanted to accomplish with the website. I then put together a plan to incorporate their needs as a business and make sure the design of [...]]]></description>
			<content:encoded><![CDATA[<p>Another new and very exciting project were working on is for Traverse City Sound Environments. In the interest of the owner I gathered what information they wanted and what he wanted to accomplish with the website. I then put together a plan to incorporate their needs as a business and make sure the design of the site was the very best it could be. I used a split header design to section</p>
<div id="attachment_315" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-315" title="Sound Environments" src="http://www.prowebmarketing.com/blog/wp-content/uploads/2009/10/SoundEnvironments.jpg" alt="Traverse City Sound Environments" width="450" height="242" /><p class="wp-caption-text">Traverse City Sound Environments</p></div>
<p><span id="more-146"></span>the logo and then contact information to one side. I also knew that they were needing quite a few pages so i broke up the navigation into two section, creating an eyebrow navigation area on the top above the contact information. This information is not as important as the main nav and can be set aside but still very visible to the users eye.</p>
<p>I then wanted to create an interactive style to really bring in a connection between the visitor and the user interface of the site. I did this by creating three main feature project areas. When your mouse is hovered over them the image drop down to reveal that featured section and then a link to the page. Almost like a peek-a-boo effect.</p>
<p>Then i go right into the main information telling a brief summary of the company and what they offer. Every page also highlights the most important information as well. The right column has a list of all the services they offer. Each page also consists of a news section. This area is updated a few times a month to keep clients and new customers interested in what TC Sound Environments is doing now.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-project-in-the-works&amp;linkname=New%20Project%20in%20the%20Works%20%26%238211%3B%20Sounds%20Environments"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-in-the-works/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Quick Guide to Video Blogging</title>
		<link>http://www.prowebmarketing.com/blog/social-networking-media/a-quick-guide-to-video-blogging</link>
		<comments>http://www.prowebmarketing.com/blog/social-networking-media/a-quick-guide-to-video-blogging#comments</comments>
		<pubDate>Wed, 28 Oct 2009 21:03:35 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Social Networking and Media]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[video blogging]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=142</guid>
		<description><![CDATA[If you haven&#8217;t tried any video blogging yet, also called vlogging, you really should try it out. If you haven&#8217;t tried this out yet I know exactly what your thinking. Why would I want to put up a video of me so that the world can see me? Well there are lots of reasons why. [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t tried any video blogging yet, also called vlogging, you really should try it out. If you haven&#8217;t tried this out yet I know exactly what your thinking. Why would I want to put up a video of me so that the world can see me? Well there are lots of reasons why. Here a quick list to get started.<span id="more-142"></span></p>
<ul>
<li>It is fun once you try it (seriously it is)</li>
<li>You can voice your own opinions on certain topics and have them stand out over text content.</li>
<li>You don&#8217;t have to be in the video. You can tape something your talking about behind the camera.</li>
<li>It&#8217;s inexpensive to get started.</li>
<li>Allows you to reach a larger audience.</li>
<li>Anyone can do it. Even using a video enabled phone.</li>
</ul>
<p>Now that you know why you should try this out let me tell you how you can get started. Anyone with a video camera or decent video capability on their phone can get starting video blogging. Next step find something you want to blog about. It&#8217;s best to choose something your interested in or something such as a hobby. Lets say you enjoy skiing during the winter months. So the next time your in Vail, make sure to tape some of your experience then post it later. Your video can relay information about your experience to the already popular resort destination. Maybe you want to show people how to cook an apple pie, everyone loves apple pie right? Ok maybe not but showing a step by step process of a how to would be very helpful for anyone who wants to learn.</p>
<p>Now that you have done your video, you will need to decide what your going to do with your video. You can upload it to many different sites such as YouTube, Blip.tv, Vimeo, Flickr or google video. Once you have created an account and uploaded your video, most of these site will also allow you to use the video on your own Web site or blog. Find the area where you can copy the link code to the video then you can add the code to your site or blog. Bam! your now video blogging. It&#8217;s fun and easy to do.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fsocial-networking-media%2Fa-quick-guide-to-video-blogging&amp;linkname=A%20Quick%20Guide%20to%20Video%20Blogging"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/social-networking-media/a-quick-guide-to-video-blogging/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Our Newest Project &#8211; Creative Stone Designs</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/our-newest-project</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/our-newest-project#comments</comments>
		<pubDate>Wed, 28 Oct 2009 20:36:27 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[stone]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=139</guid>
		<description><![CDATA[The latest project we are working on is for Creative Stone Designs. This initial concept has proven to be very challenging so far. The site will need to be heavy in imagery and the style will also need to reflect what their business primarily does. My strategy will be a solid combination of images with [...]]]></description>
			<content:encoded><![CDATA[<p>The latest project we are working on is for Creative Stone Designs. This initial concept has proven to be very challenging so far. The site will need to be heavy in imagery and the style will also need to reflect what their business primarily does. My strategy will be a solid combination of images with just enough text to tell about their core business. They have done many projects around the area and this Web site needs to reflect the work that they have done. The site will be clearly navigable by the user that will easily take anyone to where they want to be from any page. With the use of javascript and css I will use techniques to take the image galleries to the next level.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Four-newest-project&amp;linkname=Our%20Newest%20Project%20%26%238211%3B%20Creative%20Stone%20Designs"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/our-newest-project/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphic Design Branding</title>
		<link>http://www.prowebmarketing.com/blog/branding-identity/graphic-design-branding</link>
		<comments>http://www.prowebmarketing.com/blog/branding-identity/graphic-design-branding#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:12:00 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Brand and Identity]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[graphic desgin]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[web branding]]></category>
		<category><![CDATA[web graphics]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=137</guid>
		<description><![CDATA[When creating a logo design for your business you should always keep in mind that what ever color scheme or design you choose will carry through to your business advertising campaigns, letterhead, and other materials.  Your logo will brand your business and create a visual for your customers to remember who you are and what [...]]]></description>
			<content:encoded><![CDATA[<p>When creating a logo design for your business you should always keep in mind that what ever color scheme or design you choose will carry through to your business advertising campaigns, letterhead, and other materials.  Your logo will brand your business and create a visual for your customers to remember who you are and what products or services your business provides them.  Choose a design that sets your business off from the rest of your competition.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fbranding-identity%2Fgraphic-design-branding&amp;linkname=Graphic%20Design%20Branding"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/branding-identity/graphic-design-branding/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quality Web Content and Why it&#8217;s Important!</title>
		<link>http://www.prowebmarketing.com/blog/web-content/quality-web-content-and-why-its-important</link>
		<comments>http://www.prowebmarketing.com/blog/web-content/quality-web-content-and-why-its-important#comments</comments>
		<pubDate>Tue, 27 Oct 2009 15:53:35 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Web Content]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[quality]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=135</guid>
		<description><![CDATA[Many people believe that content on the web is just text that has been added to a site to tell about the company. It information is actually much much more than this. A Web sites content is the backbone of what a Web site is there to do. All of this important content needs to [...]]]></description>
			<content:encoded><![CDATA[<p>Many people believe that content on the web is just text that has been added to a site to tell about the company. It information is actually much much more than this. A Web sites content is the backbone of what a Web site is there to do. All of this important content needs to be relevant to the business and quickly and directly tell the target market what it is this business does before losing there interest in a sea of letters and paragraphs.<span id="more-135"></span>Good content is comprised of a combination of text, professional photographs, well thought out graphics and also the overall layout of the Web site. A good combination of these factors will result in a &#8220;sticky&#8221; page. What does being sticky have to do with a Web site? This basically just means that you want people to stay for a while and take a look around. They want to see what your site has to offer them. Brains process information quicker with images, so this is where these come in handy. Having to much text with lose the interest of your visitors. They didn&#8217;t come to your site to read a novel and frankly they really just don&#8217; t care to put in the extra effort. So make content straight forward, short and to the point using keywords that are relative to the type of business.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-content%2Fquality-web-content-and-why-its-important&amp;linkname=Quality%20Web%20Content%20and%20Why%20it%26%238217%3Bs%20Important%21"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-content/quality-web-content-and-why-its-important/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Positives of having an E-Commerce Web site</title>
		<link>http://www.prowebmarketing.com/blog/e-commerce/positives-of-having-an-e-commerce-web-site</link>
		<comments>http://www.prowebmarketing.com/blog/e-commerce/positives-of-having-an-e-commerce-web-site#comments</comments>
		<pubDate>Tue, 27 Oct 2009 15:33:52 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Ecommerce]]></category>
		<category><![CDATA[internet business]]></category>
		<category><![CDATA[store design]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[web store]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=132</guid>
		<description><![CDATA[I am sure you have noticed by now that many individuals have been starting up new businesses and trying to make there own income at home. Whatever the case might be, whether a family member lost a job,  you just thought is was the right time to venture out on your own or you already [...]]]></description>
			<content:encoded><![CDATA[<p>I am sure you have noticed by now that many individuals have been starting up new businesses and trying to make there own income at home. Whatever the case might be, whether a family member lost a job,  you just thought is was the right time to venture out on your own or you already own your own business and just want to take it to the next level. There are many reasons why starting up your own online business would be very beneficial to you and your businesses success.<span id="more-132"></span>The potential for an online business is very vast. Consumers now are looking more and more towards the Web to save money and also take advantage of the convenience of an online purchase. No hassling sales people crouched in  attack position hovering over your every move. Maybe shopping late at night is the only time they have to take a look at things they need to purchase. If a store closes at 6pm on Thursday and you work til 6pm then I guess you can&#8217;t make that purchase. Now if you had an online business then your customers could shop at any time with their needs in mind. Here is my top 10 list of reason why your business and customers needs an online experience.</p>
<ol>
<li>People want convenience with their shopping experience.</li>
<li>Keep ahead of your competitors.</li>
<li>Reach out to your online shopping audience.</li>
<li>Cost effective to start an online business.</li>
<li>You can manage it from anywhere.</li>
<li>Sell your products to a wider range of consumers.</li>
<li>The number of online people shopping has doubled in one year.</li>
<li>After hours shopping.</li>
<li>Hands off residual income.</li>
<li>Use data obtained from online purchasing to focus and build a repeat customer base.</li>
</ol>
<p>Now what are you waiting for. Get your business and all your great ideas up online now!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fe-commerce%2Fpositives-of-having-an-e-commerce-web-site&amp;linkname=Positives%20of%20having%20an%20E-Commerce%20Web%20site"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/e-commerce/positives-of-having-an-e-commerce-web-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Reasons Your Business Should Have a Web Site</title>
		<link>http://www.prowebmarketing.com/blog/web-site-design/9-reasons-your-business-should-have-a-web-site</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-design/9-reasons-your-business-should-have-a-web-site#comments</comments>
		<pubDate>Mon, 26 Oct 2009 20:27:31 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[web design marketing]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=130</guid>
		<description><![CDATA[1.  Your web site provides customers with basic contact information.
2.  Many people research products and services on the internet prior to their purchase.

3.  You are able to update important information about your business.
4.  A web site allows a business to reach their local market.
5.  By having your customers utilize your web site to answer frequently [...]]]></description>
			<content:encoded><![CDATA[<p>1.  Your web site provides customers with basic contact information.</p>
<p>2.  Many people research products and services on the internet prior to their purchase.</p>
<p><span id="more-130"></span></p>
<p>3.  You are able to update important information about your business.</p>
<p>4.  A web site allows a business to reach their local market.</p>
<p>5.  By having your customers utilize your web site to answer frequently asked questions, you will be reducing costs.</p>
<p>6.  Information about your business is available 24 hours a day, seven days a week.</p>
<p>7.  Obtain important feedback from your customers.</p>
<p>8.  Stay in contact with your customers.</p>
<p>9.  Promote your business by allowing your customers to view your product or market.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-design%2F9-reasons-your-business-should-have-a-web-site&amp;linkname=9%20Reasons%20Your%20Business%20Should%20Have%20a%20Web%20Site"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-design/9-reasons-your-business-should-have-a-web-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery JavaScript Library</title>
		<link>http://www.prowebmarketing.com/blog/web-site-tools/jquery-javascript-library</link>
		<comments>http://www.prowebmarketing.com/blog/web-site-tools/jquery-javascript-library#comments</comments>
		<pubDate>Wed, 21 Oct 2009 20:56:58 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[library]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=127</guid>
		<description><![CDATA[jQuery is a javascript library complete with a great plugin repository.  It&#8217;s motto &#8220;Write Less, Do More&#8221; is indeed very accurate.  We have been able to utilize both the plugins and the core of the library to create a lot of useful features for our websites.  jQuery has a wide selection of lightboxes, photo galleries, [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery is a javascript library complete with a great plugin repository.  It&#8217;s motto &#8220;Write Less, Do More&#8221; is indeed very accurate.  We have been able to utilize both the plugins and the core of the library to create a lot of useful features for our websites.  jQuery has a wide selection of <a href="http://plugins.jquery.com/search/node/lightbox+type%3Aproject_project" target="_blank">lightboxes</a>, <a href="http://plugins.jquery.com/search/node/gallery+type%3Aproject_project" target="_blank">photo galleries</a>, and <a href="http://plugins.jquery.com/project/Plugins/category/48" target="_blank">animation effects</a> that can really bring a site to life.</p>
<p><img class="alignnone" title="jQuery logo" src="http://static.jquery.com/files/rocker/images/logo_jquery_blueblack_81x23.gif" alt="" width="81" height="23" /><br />
Check out jQuery today &#8211; <a href="http://jquery.com/" target="_blank">http://jquery.com/</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-site-tools%2Fjquery-javascript-library&amp;linkname=jQuery%20JavaScript%20Library"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-site-tools/jquery-javascript-library/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Project &#8211; Sports Mitt</title>
		<link>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-sports-mitt</link>
		<comments>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-sports-mitt#comments</comments>
		<pubDate>Wed, 21 Oct 2009 19:52:04 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[New Web Design Projects]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=123</guid>
		<description><![CDATA[Coming soon is one of our newest clients, Sports Mitt.  Sports Mitt is an informational site that promotes Michigan professional and high school sports.  It will be run on a content management system and will integrate a lot of data feed technologies.  Keep an eye on this site, it&#8217;s sure to be a great resource!
http://www.sportsmitt.com/
]]></description>
			<content:encoded><![CDATA[<p>Coming soon is one of our newest clients, Sports Mitt.  Sports Mitt is an informational site that promotes Michigan professional and high school sports.  It will be run on a content management system and will integrate a lot of data feed technologies.  Keep an eye on this site, it&#8217;s sure to be a great resource!</p>
<p><a href="http://www.sportsmitt.com/" target="_blank">http://www.sportsmitt.com/</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fnew-web-design-projects%2Fnew-project-sports-mitt&amp;linkname=New%20Project%20%26%238211%3B%20Sports%20Mitt"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/new-web-design-projects/new-project-sports-mitt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
