<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Design, SEO &#38; Email Marketing Tips &#187; Website Design</title>
	<atom:link href="http://www.mplswebguy.com/blog/category/website-design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mplswebguy.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 08 Mar 2010 02:28:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Get An Up-To-Date Copyright</title>
		<link>http://www.mplswebguy.com/blog/get-an-up-to-date-copyright</link>
		<comments>http://www.mplswebguy.com/blog/get-an-up-to-date-copyright#comments</comments>
		<pubDate>Sat, 28 Feb 2009 02:44:33 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.mplswebguy.com/?p=84</guid>
		<description><![CDATA[Get a copyright on your website and make sure it's showing the current year. Or you'll leave customers frustrated, angry and wondering if your business has closed.<p><a href="http://www.mplswebguy.com/blog/get-an-up-to-date-copyright">Get An Up-To-Date Copyright</a> is a post from: <a href="http://www.mplswebguy.com/blog">Web Designer in Minneapolis, MN</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<h2><img class="aligncenter size-full wp-image-96" title="website-copyright" src="http://mplswebguy.com/blog/wp-content/uploads/2009/04/website-copyright.jpg" alt="website-copyright" width="569" height="308" />A current, visible and readable copyright and year tell your potential customers 2 things; Your website &amp; your business is “up-to-date” and the page has finished loading.</h2>
<p>Does your website have the wrong year in the copyright? Or worse – is your website missing a copyright completely? Let’s find out why it’s important to fix your copyright immediately…</p>
<h3>Get More People to Actually Use Your Website</h3>
<p>Google discovered the importance of the copyright back in 1998. They watched people use Google.com with and without a copyright and the results were incredible. Marissa Mayer, vice president of search products and user experience at Google talks about the testing (<a href="http://www.grokdotcom.com/2008/06/05/google-homepage-split-testing/">read the entire article here</a>):</p>
<blockquote><p>[Our beta testers] would sit in front of the Google screen for 15 seconds, 30 seconds, 45 seconds, a minute&#8230; Google was perplexed.</p>
<p>So Mayer would eventually intervene and ask what was holding up the searchers. “I’m waiting for the rest of it,” they’d say.</p>
<p>Without the copyright, internet users didn’t use the site because they weren’t sure if the site was finished&#8230;</p>
<p>As a result, the company put a copyright notice at the bottom of the page. “It’s not there for legal reasons,” Mayer said. “It’s there as punctuation. That’s it. (It tells the searcher) ‘Nothing else is coming; please start searching now.’”</p></blockquote>
<p><strong>What’s this got to do with your small business website?</strong></p>
<p>Don’t let customers sit and wonder if your website will ever finish downloading. Tell your customers it’s ready by adding a copyright.</p>
<h3>Let Customers Know You’re Still Open for Business!</h3>
<p>Yesterday, I found a website with a copyright that said “2004.” It’s now 2009. I didn’t know if the company was still in business because the copyright was 5 years old – that’s a long time in internet years!</p>
<p>Did they shut down and forget to pull the plug on the website?</p>
<p>Determined to find out what was going on, I found an email address on the contact page and sent an email. However, I didn’t know if the email address was still working because it <em><strong>looked</strong></em> like they hadn’t done anything to the website in 5 years – how stressful?</p>
<p>Please update the year in your copyright. Make it current – or you risk losing a few customers (and making them wonder if you’re still open for business.)</p>
<h3>How to Automatically Update the Year in Your Copyright</h3>
<p>For all you small business website masters and do-it-yourself types, here’s how you add code to automatically update the year – every year – without ever having to touch it again.</p>
<p>The code reads the year on your web server, then writes the correct year on web page – sweet!</p>
<p>First, you need to find out if your website hosting service is using PHP or ASP. The fastest way to find out is to look at the URL of a page on your website (but, not the home page.)  Then look at the very end of the URL.</p>
<p>If you see .asp or .php then you know exactly what you’re working with.</p>
<p><strong>Examples:</strong><br />
www.yourwebsite.com/contact.<strong>php</strong> ← You’ve got PHP<br />
www.yourwebsite.com/contact.<strong>asp</strong> ← You’ve got ASP<br />
www.yourwebsite.com/contact.<strong>html</strong> ← Call your web developer<br />
www.yourwebsite.com/contact.<strong>htm</strong> ← Call your web developer</p>
<p><strong>PHP</strong><br />
Got PHP? Paste this text into the CODE of your web page where you want the year to be displayed: &lt;?php echo date(&#8220;Y&#8221;); ?&gt;<br />
<strong>Example:</strong> Copyright &lt;?php echo date(&#8220;Y&#8221;); ?&gt; Minneapolis Web Guy<br />
This will show up as:  Copyright 2009 Minneapolis Web Guy</p>
<p><strong>ASP</strong><br />
Got ASP? Paste this text into the CODE of your web page where you want the year to be displayed: &lt;% Response.Write Year(now) %&gt;<br />
<strong>Example: </strong> Copyright &lt;% Response.Write Year(now) %&gt; Minneapolis Web Guy<br />
This will show up as:  Copyright 2009 Minneapolis Web Guy</p>
<p><strong>What the??</strong></p>
<p>If you need help, <a href="../contact.php">contact me</a> or <a href="http://www.twitter.com/mplswebguy">DM me on Twitter</a>.</p>
<p><a href="http://www.mplswebguy.com/blog/get-an-up-to-date-copyright">Get An Up-To-Date Copyright</a> is a post from: <a href="http://www.mplswebguy.com/blog">Web Designer in Minneapolis, MN</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mplswebguy.com/blog/get-an-up-to-date-copyright/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Website Design Killed by PDFs</title>
		<link>http://www.mplswebguy.com/blog/good-website-design-killed-by-pdfs</link>
		<comments>http://www.mplswebguy.com/blog/good-website-design-killed-by-pdfs#comments</comments>
		<pubDate>Sat, 31 Jan 2009 02:30:26 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Jakob Nielsen]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.mplswebguy.com/?p=60</guid>
		<description><![CDATA[PDFs destroy websites and your visitors hate hate them. Turn PDFs into pages on your website for more search engine traffic and more love from your customers and clients.<p><a href="http://www.mplswebguy.com/blog/good-website-design-killed-by-pdfs">Good Website Design Killed by PDFs</a> is a post from: <a href="http://www.mplswebguy.com/blog">Web Designer in Minneapolis, MN</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<h2><img class="aligncenter size-full wp-image-94" title="rip-your-website" src="http://mplswebguy.com/blog/wp-content/uploads/2009/04/rip-your-website.jpg" alt="rip-your-website" width="569" height="308" />Most website designers think PDFs enhance a website, but the truth is, visitors hate PDFs.</h2>
<p>At the  <a href="http://www.nngroup.com/events/">San Francisco Usability Week</a> in 2008, a website designer asked Jakob Nielsen (the world’s most well-known website design guru) if she should use PDFs on a corporate website. Jakob’s reply…</p>
<p>“PDFs suck.”</p>
<p>Jakob Nielsen has been testing website designs for years. He found that PDFs kill website design because of the huge negative impact on the person using your website.</p>
<p>Jakob said that website designers don’t realize website visitors hate using PDFs &#8211; for many reasons:</p>
<ol>
<li><strong>Jarring User Experience</strong> &#8211; Internet Explorer (and other web browsers) have their own set of commands and tools to print, save, etc. PDFs have a completely different set of tools &amp; rules that confuse people.</li>
<li><strong>Boring Content</strong> &#8211; The typical PDF is a document that was meant for print and is full of long, boring content that visitors don’t want to read.</li>
<li><strong>Broken Flow</strong> &#8211; You have to wait for Adobe Acrobat to open before you can read the file. After Acrobat opens, you still have to wait for the PDF to download.</li>
</ol>
<p>Find out why <a href="http://www.useit.com/alertbox/20030714.html">“PDFs are Unfit for Human Consumption”</a></p>
<p>Does your website designer only care what the website looks like and ignore how real people use your site?</p>
<p>Talk to me about designing a website for your small business &#8211; that people will love to use &#8211; and like the way it looks.</p>
<p>Main photo credit:  <a href="http://www.flickr.com/photos/44165698@N00/61422611/">A.M. Kuchling</a></p>
<p><a href="http://www.mplswebguy.com/blog/good-website-design-killed-by-pdfs">Good Website Design Killed by PDFs</a> is a post from: <a href="http://www.mplswebguy.com/blog">Web Designer in Minneapolis, MN</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mplswebguy.com/blog/good-website-design-killed-by-pdfs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
