
<?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>A Website to Love</title>
	<atom:link href="http://www.awebsitetolove.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.awebsitetolove.com</link>
	<description>High tides raise all ships.</description>
	<lastBuildDate>Thu, 09 Feb 2012 19:15:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8220;Things&#8221; come and go</title>
		<link>http://www.awebsitetolove.com/2012/02/things-come-and-go/</link>
		<comments>http://www.awebsitetolove.com/2012/02/things-come-and-go/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 19:15:58 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=139</guid>
		<description><![CDATA[&#8220;Things&#8221; come and go in life. Best not to get too attached to any of them. Health, happiness, friends and family are all that really matters.]]></description>
			<content:encoded><![CDATA[<p>&#8220;Things&#8221; come and go in life. Best not to get too attached to any of them. Health, happiness, friends and family are all that really matters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/02/things-come-and-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Basics</title>
		<link>http://www.awebsitetolove.com/2012/02/css-basics/</link>
		<comments>http://www.awebsitetolove.com/2012/02/css-basics/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 00:34:55 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Learning]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=136</guid>
		<description><![CDATA[More web design fundamental goodness from the Treehouse videos. CSS stands for Cascading Style Sheets. CSS is a separate language from HTML that allows you to override boring default web browser styles and make web pages look any way you want them &#8230; <a href="http://www.awebsitetolove.com/2012/02/css-basics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>More web design fundamental goodness from the <a href="http://teamtreehouse.com" target="_blank">Treehouse videos</a>.</em></p>
<p><strong>CSS</strong> stands for <strong>C</strong>ascading <strong>S</strong>tyle <strong>S</strong>heets. CSS is a separate language from HTML that allows you to override boring default web browser styles and make web pages look any way you want them to.</p>
<p>CSS describes the presentation of a web page, not the structure/content (HTML does that).</p>
<p>Separating structure and presentation makes changes to an entire site easy. It also increases accessibility, flexibility and reduces complexity, of websites.</p>
<p>CSS is typically placed in a separate file with a .css extension.</p>
<p>CSS uses a priority scheme to determine which style rules apply to an element. Style rules can override one another. Style rules that come later (in page loading) can override styles that come earlier.</p>
<p>W3C maintains the CSS standard. Current recommended version is 2.1, but CSS 3 is in draft form and is being adopted by web browsers quickly.</p>
<p>Including CSS: it&#8217;s best not to mix presentation and structure. Even though you can include CSS in HTML (inline), it&#8217;s better to do it through an included stylesheet file. This provides maximum accessibility, flexibility and simplicity.</p>
<p>An example style rule:</p>
<p><code>p {<br />
color: red;<br />
}</code></p>
<p>p = selector<br />
color = property<br />
red = value</p>
<h2>Basic Selectors</h2>
<p><strong>type selector</strong> matches every instance of the element type specified</p>
<p><strong>descendent selector</strong> matches elements nested inside other elements. HTML is structured like a tree, start at a large branch, work your way down.</p>
<p><strong>ID selector</strong> matches a single element by it&#8217;s ID attribute</p>
<p><strong>class selector</strong> matches a subset of elements based on their class attributes</p>
<p><em>IDs should be used for major site components that will only appear once on a page. Classes can be used many times, is good for multiple elements you want to apply the same styling to.</em></p>
<h2>Other Selectors</h2>
<p><strong>pseudo class</strong> matches an element only when it&#8217;s in a specific state</p>
<ul>
<li>:first-child selects the first child in an element</li>
<li>:link matches an anchor tag if it&#8217;s not yet been visited</li>
<li>:hover selects elements being hovered by the user</li>
<li>:active selects link being clicked by the user</li>
<li>:focus good for improving accessibility for people who use keyboards to navigate webpages</li>
</ul>
<p><strong>child selector</strong> matches child elements of the specified parent element. example: <code>ul &gt; li</code><br />
<strong>adjacent selector</strong> matches elements immediately preceded by a specified sibling element. example: <code>h2 + p</code><br />
<strong>attribute selector</strong>matches element attributes based on attribute name and value. example: <code>h2[class="foo"]</code> (<code>h2[class~="foo"]</code> will match all h2s with class &#8220;foo&#8221;, even if more classes are listed. In other words: <code>class="foo bar"</code> and <code>class="foo"</code> will both be styled.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/02/css-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trends in Education and Careers</title>
		<link>http://www.awebsitetolove.com/2012/01/trends-in-education-and-careers/</link>
		<comments>http://www.awebsitetolove.com/2012/01/trends-in-education-and-careers/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 18:59:13 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=135</guid>
		<description><![CDATA[With all the whining we do about distraction and TMI Facebook updates, it can be easy to overlook how fundamentally our lives are mostly improved by the web. For example, none of the following would be possible with out it. &#8230; <a href="http://www.awebsitetolove.com/2012/01/trends-in-education-and-careers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With all the whining we do about distraction and <abbr title="Too Much Information">TMI</abbr> Facebook updates, it can be easy to overlook how fundamentally our lives are mostly improved by the web. For example, none of the following would be possible with out it.</p>
<h2>Exhibit A</h2>
<p><a href="http://www.ted.com/talks/salman_khan_let_s_use_video_to_reinvent_education.html">Ted talk about by Salman Kahn: &#8220;Let&#8217;s use video to reinvent education&#8221;</a></p>
<p>(As I watched this video I thought &#8220;OMG, what if I had had a math class like they described, I might actually have LIKED math.&#8221; Imagine all of the kids who are steam-rolled by the current educational paradigm of lecture-&gt;homework-&gt;test-&gt;repeat. What if it were different, like Salman Kahn says it could be?)</p>
<p>&nbsp;</p>
<h2>Exhibit B</h2>
<p>Online, video based, education platforms like <a href="http://linda.com" target="_blank">linda.com</a>, <a href="http://teamtreehouse.com" target="_blank">teamtreehouse.com</a>, <a href="http://codecademy.com" target="_blank">codecademy.com</a> (and surely there are more niche examples) that circumvent the slow-to-change world of traditional universities and community colleges all together. We already know it doesn&#8217;t really matter where your bachelor degree is from, so long as you have one. Is this state just a stepping stone to a world where subject mastery, not traditional formal education, is the real, recognized advantage in the job market?</p>
<h2>Exhibit C</h2>
<p><a href="http://www.economist.com/node/14301346" target="_blank">Portfolio Working: an alternative concept to traditional employer working</a>. Imagine the innovation that would be unleashed if fewer creative people were tied to employers. They would have the freedom to apply their energy to areas where they truly excel, working in loosely connected teams that evolve as needed. They are able to take risks far greater than organizations can. Such risks enhance the rate and degree of creative innovation.</p>
<p>What do these things have in common? I see them all as opportunities for people to come closer to realizing their full potential. How amazing is that?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/01/trends-in-education-and-careers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing the Website Colophon</title>
		<link>http://www.awebsitetolove.com/2012/01/introducing-the-website-colophon/</link>
		<comments>http://www.awebsitetolove.com/2012/01/introducing-the-website-colophon/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 22:58:43 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=133</guid>
		<description><![CDATA[The colophon is a book/print tradition, basically a fancy word for &#8220;credits&#8221;. Typically it includes practical information about who printed the book, on what kind of paper and what typeface was used. Credits to contributing artists like photographers or acknowledgments &#8230; <a href="http://www.awebsitetolove.com/2012/01/introducing-the-website-colophon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The colophon is a book/print tradition, basically a fancy word for &#8220;credits&#8221;. Typically it includes practical information about who printed the book, on what kind of paper and what typeface was used. Credits to contributing artists like photographers or acknowledgments might also be included. Here&#8217;s <a href="http://virtualkaren.com/colophons.aspx">more</a>.</p>
<p>Like a book, publishing a website is a complex process and often has many contributors. So how about joining me in the trend of the website colophon?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/01/introducing-the-website-colophon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dream Kitchen</title>
		<link>http://www.awebsitetolove.com/2012/01/dream-kitchen/</link>
		<comments>http://www.awebsitetolove.com/2012/01/dream-kitchen/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 22:00:08 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Metaphors]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=130</guid>
		<description><![CDATA[Have you ever known someone who had a beautiful, decked out kitchen, but didn&#8217;t actually know how to cook? The myth that a single piece of software (ahem, Dreamweaver/Flash) affords the ability to make websites is still common. This is &#8230; <a href="http://www.awebsitetolove.com/2012/01/dream-kitchen/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have you ever known someone who had a beautiful, decked out kitchen, but didn&#8217;t actually know how to cook?</p>
<p>The myth that a single piece of software (ahem, Dreamweaver/Flash) affords the ability to make websites is still common. This is like thinking that owning a KitchenAid mixer makes you a great baker. Say the proud new mixer owner wants to make an angel food cake from scratch. Even with the fancy mixer to save her arm from all that egg white beating, and a recipe to guide her, the trial and error process—the experience—is unavoidable. Just what &#8220;stiff peaks&#8221; means is impossible to know until she has seen it for herself &#8230; and come out the other side with a proper angel food cake. The importance of keeping yolk out of the whites is not fully felt until an entire cup and a half of egg whites fails to beat up and must be thrown out.</p>
<p>So it is the same with websites (and all other crafts). While some tools may light the path, there is no magic bullet. You must wallow in the messiness of experience, trial and error, failure and incremental successes. You must first cut your teeth with HTML, CSS and alot of other stuff that feels completely foreign. Slowly, over-time, the connections are made, and you eventually understand deeply what it takes to build a website. Tools + Experience.</p>
<p>(Rose, this post is for you, as you are likely the only reader to actually &#8220;get&#8221; the angel food cake references <img src='http://www.awebsitetolove.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/01/dream-kitchen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back to Basics</title>
		<link>http://www.awebsitetolove.com/2012/01/back-to-basics/</link>
		<comments>http://www.awebsitetolove.com/2012/01/back-to-basics/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 23:19:28 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Learning]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=129</guid>
		<description><![CDATA[I have a client right now who is interested in learning as much as she can about web design as we build a site for her. I directed her to teamtreehouse.com to get some foundational web design knowledge. I used a few &#8230; <a href="http://www.awebsitetolove.com/2012/01/back-to-basics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have a client right now who is interested in learning as much as she can about web design as we build a site for her. I directed her to <a href="http://teamtreehouse.com/" target="_blank">teamtreehouse.com</a> to get some foundational web design knowledge. I used a few of the Treehouse videos in my web design class last fall. Overall, the learning program they offer there is very high quality and up-to-date with current web standards and trends (a <em>very rare</em> thing in the world of web design education).</p>
<p>But, I hadn&#8217;t worked my way through the program myself. I always feel a bit uncomfortable recommending something I haven&#8217;t tried myself. I also like hearing fundamental concepts explained—you know, the kind of things you take for granted because you understand them on a level that is beyond words. Connecting that knowledge with language deepens the understanding and becomes an excellent tool for teaching and/or demonstrating expertise.</p>
<p>So, I watched a handful of videos today. Here are my notes:</p>
<h2>HTML Introduction and History</h2>
<ul>
<li>Markup language shapes text in a way that makes it easier to understand. It adds annotation, semantic meaning.</li>
<li>HTML is a markup language that can be interpreted by web browsers. Other markup languages exist.</li>
<li>Programming languages determine behavior, markup determines structure. (HTML is not a programming language)</li>
<li>HTML tells browsers how to process various parts of a document: paragraphs, images, headers, etc.</li>
<li>The internet is the system of connected computing hardware located all over the world. The World Wide Web is not the internet. The World Wide Web is just one particular use case of the internet. Other uses include: VoIP, gaming, apps</li>
<li>Sir Tim Berners Lee invented HTML and the World Wide Web in the late &#8217;80s. He was a physicist and contracter for <abbr title="the European Organization for Nuclear Research">CERN</abbr>. He wanted to develop a better way of sharing documents. He created HTML by adding hyperlinking to an existing markup language. He also founded the W3C, the international organization that maintains the HTML specification and supports further development of it.</li>
</ul>
<h2>Learning HTML</h2>
<ul>
<li>HTML/web design is fun because you can instantly see the results of your efforts in a browser</li>
<li>no single technology or language enables the creation of websites, rather, a broad collection of technologies provide the pieces needed to build a complete website.</li>
<ul>
<li>HTML = Structure</li>
<li>CSS = Presentation</li>
<li>Javascript = Behavior</li>
</ul>
<li>To make a website, all we need is a text editor and a web browser. Every computer comes with a text editor.</li>
</ul>
<h2>Markup Element Highlights</h2>
<p>I won&#8217;t bore you or myself with all the details of HTML tags covered in the videos, but here are a few nifty new things I learned.</p>
<ul>
<li>the technical name for &lt;hr&gt; and other elements that are self-contained, don&#8217;t require a closing tag, is <em>void element</em>.</li>
<li>the cite attribute can be used on &lt;blockquote&gt; to include the source of the quote. example: &lt;blockquote cite=&#8221;http://example.com&#8221;&gt;</li>
<li>&lt;q&gt; can be used for inline quotations and also accepts the cite attribute</li>
<li>&lt;abbr&gt; is used on acronyms and you can add the expansion of the acronym by adding a title attribute. example: &lt;abbr title=&#8221;Self-Contained Underwater Breathing Apparatus&#8221;&gt;SCUBA&lt;/abbr&gt;</li>
<li>&lt;address&gt; is for addresses (duh) and if it&#8217;s parent is the &lt;body&gt; tag, it is considered the contact information for the entire page. If it is nested in a div, it is considered the contact information for the content around it, for example, a list of names with addresses. (I bet the use of &lt;address&gt; is really helpful for localized search engine rankings)</li>
<li>&lt;wbr&gt; is optional whitespace. You can use it to indicate the best place for the browser to add a line break in a long word (or a url), but the line break appears only when needed! This is the equivalent of optional hyphen available in layout programs like Adobe InDesign. (I&#8217;ve previously longed for a tag like this, who knew it already existed!)</li>
</ul>
<div>That&#8217;s it for now. I&#8217;ve got many more videos to watch. Stay tuned for more web design fundamental goodness!</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/01/back-to-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Testing</title>
		<link>http://www.awebsitetolove.com/2012/01/user-testing/</link>
		<comments>http://www.awebsitetolove.com/2012/01/user-testing/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 20:51:13 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=128</guid>
		<description><![CDATA[Someday, I want to do user testing on local websites that have fairly out-dated designs. Not to deride the owners of those website or make them feel bad, or even to get new business (though that would be an OK &#8230; <a href="http://www.awebsitetolove.com/2012/01/user-testing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Someday, I want to do user testing on local websites that have fairly out-dated designs. Not to deride the owners of those website or make them feel bad, or even to get new business (though that would be an OK result) but because I want to understand better how design decisions, or lack of, affect the impression we give site visitors—our potential clients or customers. For example, would you believe that <a href="http://www.ideasthatdeliver.com/index.html" target="_blank">this organization</a> once employed 50 people and had high-profile clients like Kimberly Clarke? Would you think that <a href="http://minesofspain.org/" target="_blank">this place</a> is one of the most beautiful nature preserves in Dubuque?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/01/user-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This blog is evolving</title>
		<link>http://www.awebsitetolove.com/2012/01/this-blog-is-evolving/</link>
		<comments>http://www.awebsitetolove.com/2012/01/this-blog-is-evolving/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 20:32:41 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=127</guid>
		<description><![CDATA[This blog is evolving. Morphing into something that is less professionally-focused—less about talking to the world and more about talking to myself. Professional, polished articles will now be published on my new business website, pearlstreetstudio.com. This blog will become the &#8230; <a href="http://www.awebsitetolove.com/2012/01/this-blog-is-evolving/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This blog is evolving. Morphing into something that is less professionally-focused—less about talking to the world and more about talking to myself. Professional, polished articles will now be published on my new business website, pearlstreetstudio.com. This blog will become the home of brief, sometimes rough, hopefully more frequent musings on my life as an entrepreneur, artist, perfectionist, etc. Sounds much more fun, eh?</p>
<p>I wrote this post, not because I think you particularly care, but to serve as a reminder and reinforcer to me of this new direction.</p>
<p>Happy trails!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/01/this-blog-is-evolving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Big Quiet</title>
		<link>http://www.awebsitetolove.com/2012/01/the-big-quiet/</link>
		<comments>http://www.awebsitetolove.com/2012/01/the-big-quiet/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 04:52:36 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=124</guid>
		<description><![CDATA[It has been a long time since I had anything to say here. I took on too much and spent the last four months treading water, my head just above the flood. This happens sometimes. It&#8217;s ok. Some highlights, in &#8230; <a href="http://www.awebsitetolove.com/2012/01/the-big-quiet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It has been a long time since I had anything to say here. I took on too much and spent the last four months treading water, my head just above the flood. This happens sometimes. It&#8217;s ok.</p>
<p>Some highlights, in bullet point fashion:</p>
<ul>
<li>Hired a part-time assistant/intern to help out, discovered the joy of sharing my knowledge with others and made an excellent friend in the process
</li>
<li>Taught a web design class that met twice a week for two hours with 18 students. Confronted and pondered the many challenges of higher education in today&#8217;s economy and culture. Confronted also my fears of public speaking and doing something less than perfect. Expect I will continue to uncover hidden gifts from this challenge.</li>
<li>Managed and launched my first Drupal project.</li>
<li>Fell out of the routine of daily yoga and journaling, regrettably.</li>
<li>Struggled with and eventually accepted my horse&#8217;s career-ending injury. Realized that horses will play a much smaller part in my life moving forward, and that is ok.</li>
</ul>
<p>&#8230; and more floating just below my consciousness.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2012/01/the-big-quiet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Local Web and Competition</title>
		<link>http://www.awebsitetolove.com/2011/11/the-local-web-and-competition/</link>
		<comments>http://www.awebsitetolove.com/2011/11/the-local-web-and-competition/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 05:20:15 +0000</pubDate>
		<dc:creator>kjubeck</dc:creator>
				<category><![CDATA[Local Web]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://www.awebsitetolove.com/?p=112</guid>
		<description><![CDATA[A friend passed along this link recently: http://www.iowagetonline.com/ It looks like Google and Intuit are teaming up with economic development agencies to get Iowa small businesses online for free. How cool! Here&#8217;s the full scoop at governing.com. The little web designer &#8230; <a href="http://www.awebsitetolove.com/2011/11/the-local-web-and-competition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-117 alignleft" title="getting-business-online" src="http://www.awebsitetolove.com/wordpress/wp-content/uploads/2011/11/getting-business-online.png" alt="" width="122" height="148" />A friend passed along this link recently: http://www.iowagetonline.com/ It looks like Google and Intuit are teaming up with economic development agencies to get Iowa small businesses online for free. How cool! Here&#8217;s the full scoop at <a href="http://www.governing.com/topics/technology/Google-Helps-Local-Businesses-Get-Online.html">governing.com</a>.</p>
<p>The little web designer in me felt a little threatened when I first came to this page (Google is taking my clients!!!). I was happy that Big Web Designer stepped in quickly and recognized what a great opportunity this is for both local businesses and myself. First, and most important of all, small businesses are getting online! Second, Google is doing me a huge favor: getting the word out about the importance of a web presence, guiding and reassuring the nervous business owner as he registers his domain name, cautiously writes his first &#8220;About Us&#8221; page and goes live with his version 1.0 of his web presence. In time, he will tire of the limits of his free website (you <em>always</em> get what you pay for) and I will be happy to come to the rescue, building and improving on the foundation that Google helped him lay.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awebsitetolove.com/2011/11/the-local-web-and-competition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
                                                                                                                                                                                                                                                                                                   
