<?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>Messages By Marlow &#187; search engine optimization</title>
	<atom:link href="http://www.marketingbymarlow.com/messenger/index.php/tags/search-engine-optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marketingbymarlow.com/messenger</link>
	<description>Scott Marlow</description>
	<lastBuildDate>Wed, 28 Jul 2010 17:33:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Creating Accessible Websites</title>
		<link>http://www.marketingbymarlow.com/messenger/index.php/2010/creating-accessible-websites/</link>
		<comments>http://www.marketingbymarlow.com/messenger/index.php/2010/creating-accessible-websites/#comments</comments>
		<pubDate>Sat, 29 May 2010 08:52:17 +0000</pubDate>
		<dc:creator>Scott Marlow</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.marketingbymarlow.com/messenger/?p=895</guid>
		<description><![CDATA[This spring, I conducted an in-depth website accessibility evaluation for nonprofit Skills Inc. My site audit identified 12 issues that did not conform to federal Section 508 Standards, WCAG (Web Content Accessibility Guidelines) 1.0, and the latest WCAG 2.0, released in 2009. Some of the WCAG priority 1 updates launched included: providing a method for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.skillsinc.com"><img class="size-medium wp-image-894 alignnone" title="screenshot-skillsinc" src="http://www.marketingbymarlow.com/messenger/wp-content/uploads/2010/05/screenshot-skillsinc-400x319.jpg" alt="Skills Inc." width="400" height="319" /></a></p>
<p>This spring, I conducted an in-depth <strong>website accessibility evaluation</strong> for nonprofit <a href="http://www.skillsinc.com">Skills Inc</a>.</p>
<p>My site audit identified 12 issues that did not conform to <a href="http://www.section508.gov/index.cfm?FuseAction=content&amp;ID=12">federal Section 508 Standards</a>, WCAG (Web Content Accessibility Guidelines) 1.0, and the latest <a href="http://www.w3.org/TR/WCAG20/">WCAG 2.0</a>, released in 2009.</p>
<p><span id="more-895"></span></p>
<p>Some of the WCAG <em>priority 1</em> updates launched included:</p>
<ul>
<li>providing a method for visitors using keyboard navigation to skip repetitive navigation links</li>
<li>linking to third-party websites in the same browser window (vs. launching a new window)</li>
<li>adding alternate text for all images on the site</li>
<li>adding an underline (a second visual identifier) to body hyperlinks</li>
</ul>
<p>Other updates included:</p>
<ul>
<li>converting fixed-width font units to relative font units, which are adjustable &#8211; as well as adding a font resizer (provided by Ryan Salva of Capitol Media) for better usability</li>
<li>increasing the color contrast of text for sight impaired visitors</li>
<li>removing HTML errors and deprecated elements for better rendering in Assisstive Technology (AT) devices</li>
<li>adding the meta language to all pages to identify the natural language for screen readers</li>
</ul>
<h3>Introduction to Website Accessibility</h3>
<p>The goal of website <em>usability</em> is generally to satisfy 95% of site visitors. <em>Usability</em> concerns how easy a website is to use. <em>Accessibility</em> addresses the physical limitations to visitors based on 4 main disabilities: blindness, cognitive impairments (like dyslexia), deafness, and motor impairment (like paralysis).</p>
<p>There are two main initiatives that set guidelines for accessibility conformance:</p>
<ol>
<li>Section 508, an amendment to the Rehabilitation Act of 1973, is a law that applies to Federal agencies only. Conformance to Section 508 <em>for non-federal agencies and agencies that do not contract</em> with the Federal government is voluntary.</li>
<li> The World Wide Web Consortium’s (W3C) Web Content Accessibility Guidelines (WCAG). Conformance to WCAG is strictly <em>voluntary</em>. There are three levels of conformance, from Single A to Triple A – each with higher levels of accessibility.</li>
</ol>
<p>WCAG 1.0 guidelines are a decade old. In 2004, websites started to become more interactive; Web 2.0 includes social networking sites (like Facebook), wikis (like Wikipedia), blogs, and other information-sharing web-based applications. WCAG 2.0 attempts to deal with the new accessibility issues created by the social web.</p>
<h3>Background</h3>
<p>Amateur web designers, particularly graphic designers with limited HTML skills, produce websites that look fine to the average viewer. However, often these sites are coded by What-You-See-Is-What-You-Get (WYSIWYG) visual HTML authoring software, like Microsoft FrontPage. WYSIWYG editors often produce bloated, non-semantic markup that does not validate to the W3C specifications. Additionally, these authoring tools often export proprietary code that is browser/device-dependent, meaning visitors with Assistive Technology (AT) devices or third-party browsers cannot access the content or other site features.</p>
<p>Websites like these are often “hard-coded” by “slicing and dicing” Photoshop images into a table-based HTML layout. These nested-table based websites often do not validate to W3C specifications, and, as a result, are not as accessible, particularly to disabled visitors, as properly coded sites. Finally, these sites are not flexible because layout changes must be performed at the single page level.</p>
<p>The modern way to build websites is to use Cascading Style Sheets (CSS) to separate your layout from your presentation; with CSS, style effects can be changed sitewide with one or more CSS files, instead of having to recode entire sites ‘line-by-line’ of code.</p>
<p>Browser and AT device vendors are aware of the issues created by poor HTML programming; therefore, many vendors compensate for non-validating code by automatically correcting some HTML errors. For example, newer “A-grade” browsers, like Internet Explorer 8 and Firefox 3, can often resize hard-coded font sizes by using a full page zoom. However, browsers cannot correct for all accessibility problems. For example, browsers and AT devices cannot yet create semantically-structured pages or interpret images that do not include alternate text, which, again, is important not just to disabled visitors but to search engines as well.</p>
<p>Manufacturers of browsers (like Microsoft Internet Explorer), web applications (like Windows Media Player) and AT Devices (like screen readers) determine how respective tools render HTML and CSS. Some tools interpret CSS rules differently; others ignore certain CSS rules altogether; and some AT devices do not even load CSS files. For example, Microsoft Outlook 2007 uses Microsoft Word, a proprietary nonstandard application, to render HTML.</p>
<p>It is important that (graphic) web designers understand the branding implications behind browser rendering of HTML. Semantic markup is extremely important when designing for disabled visitors.</p>
<h3>Opportunities</h3>
<p>Accessible sites are generally more usable sites and are more search engine-friendly. For example, because the HTML markup is semantically structured – properly coded sites more effectively inform search engines of the site content. Accessibility testing includes identifying non-semantic markup, as well as other features, that can help with search engine optimization (SEO).</p>
<p>The Return on Investment for accessibility testing can be justified in many ways, including:</p>
<ol>
<li>To improve the chances of getting found via search engines</li>
<li>To avoid boycotts or discrimination lawsuits</li>
<li>To serve and treat all visitors equally (brand goodwill)</li>
<li>To improve site usability</li>
<li>To reduce bandwidth time and costs</li>
<li>To improve customer conversion rates</li>
<li>To reduce support costs, like site maintenance</li>
</ol>
<h3>Process</h3>
<p>The best time to conduct accessibility testing is prior to a site design or redesign. Testing a site can be as simple as running several semi-automated  browser-based tests of a single site page. Or you can use a variety of AT  devices to manual test an entire site and its applications over a period  of days. Expect to spend several hours conducting automated and manual  tests of most sites.</p>
<p>Sites that grossly fail accessibility guidelines may not be able to justify the cost of a complete site overhaul. Since it is rare for any site to meet 100% of the guidelines, accessibility improvements can be rolled out gradually. The W3C Web Accessibility Initiative (WAI) provides a handy <a href="http://www.w3.org/WAI/eval/template.html">accessibility evaluation report template</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marketingbymarlow.com/messenger/index.php/2010/creating-accessible-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brick and Mortar</title>
		<link>http://www.marketingbymarlow.com/messenger/index.php/2010/brick-and-mortar/</link>
		<comments>http://www.marketingbymarlow.com/messenger/index.php/2010/brick-and-mortar/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:08:32 +0000</pubDate>
		<dc:creator>Scott Marlow</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.marketingbymarlow.com/messenger/?p=792</guid>
		<description><![CDATA[Walter Sepulveda asked me for help updating the static website for his Seattle landscape design company, Tierra Landscape. The new site features an open-source content management system, expanded photo gallery, and a page for Spanish speakers.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tierralandscape.net"><img class="alignnone size-medium wp-image-791" title="Tierra Landscape Design" src="http://www.marketingbymarlow.com/messenger/wp-content/uploads/2010/03/screenshot_tierra1-400x275.jpg" alt="Tierra Landscape Design" width="400" height="275" /></a></p>
<p>Walter Sepulveda asked me for help updating the static website for his <a href="http://www.tierralandscape.net">Seattle landscape design company</a>, Tierra Landscape.</p>
<p>The new site features an open-source content management system, expanded photo gallery, and a page for Spanish speakers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marketingbymarlow.com/messenger/index.php/2010/brick-and-mortar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning Up Websites</title>
		<link>http://www.marketingbymarlow.com/messenger/index.php/2010/cleaning-up-websites/</link>
		<comments>http://www.marketingbymarlow.com/messenger/index.php/2010/cleaning-up-websites/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 17:39:28 +0000</pubDate>
		<dc:creator>Scott Marlow</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.marketingbymarlow.com/messenger/?p=796</guid>
		<description><![CDATA[A website makeover for Bravo Environmental. After inspecting the accessibility and usability of the original site, I located the underlying problem: an over-engineered site for engineers. Al Schumacher swept me into the project. Site repairs included cleaning up the ASP code, cutting out redundant HTML and vacuuming up 5 nested tables to make content updates [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bravoenvironmental.com/"><img class="alignnone size-medium wp-image-795" title="Bravo Environmental" src="http://www.marketingbymarlow.com/messenger/wp-content/uploads/2010/03/screenshot_bravo-400x356.jpg" alt="Bravo Environmental" width="400" height="356" /></a></p>
<p>A website makeover for <a href="http://www.bravoenvironmental.com/">Bravo Environmental</a>. After <a href="http://www.bravoenvironmental.com/infra_lateral.asp">inspecting </a>the accessibility and usability of the original site, I <a href="http://www.bravoenvironmental.com/infra_locating.asp">located</a> the underlying problem: an over-engineered site for engineers. Al Schumacher <a href="http://www.bravoenvironmental.com/const_vacuuming.asp">swept</a> me into the project.</p>
<p>Site <a href="http://www.bravoenvironmental.com/const_repairs.asp">repairs</a> included <a href="http://www.bravoenvironmental.com/maint_basin.asp">cleaning up</a> the ASP code, <a href="http://www.bravoenvironmental.com/maint_root.asp">cutting out</a> redundant HTML and <a href="http://www.bravoenvironmental.com/maint_sweepers.asp">vacuuming up</a> 5 nested tables to make content updates easier. Image-based headers were <a href="http://www.bravoenvironmental.com/maint_pipe.asp">jettisoned </a>to make room for <em>search engine-friendly</em> text-based headers. Site <a href="http://www.bravoenvironmental.com/maint.asp">maintenance</a> also involved adding pages to the site <a href="http://www.bravoenvironmental.com/infra_gis.asp">map</a>.</p>
<p>You get the idea. Thanks to <a href="http://www.beegeetolpa.com">Beegee Tolpa</a> for the graphic design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marketingbymarlow.com/messenger/index.php/2010/cleaning-up-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Claim Your Blog at Technorati</title>
		<link>http://www.marketingbymarlow.com/messenger/index.php/2009/claim-your-blog-at-technorati/</link>
		<comments>http://www.marketingbymarlow.com/messenger/index.php/2009/claim-your-blog-at-technorati/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 21:31:53 +0000</pubDate>
		<dc:creator>Scott Marlow</dc:creator>
				<category><![CDATA[communications]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.marketingbymarlow.com/messenger/?p=613</guid>
		<description><![CDATA[Technorati is a blog-specific search engine that indexes 112 million blogs. To add your blog to Technorat: Create an account at technorati.com Verify your account by clicking on the link that Technorati emails you Check your Claim Status Create a blog post that includes your unique token, like MF2B68NAKRS2 Verify Claim Token at Technorati Why [...]]]></description>
			<content:encoded><![CDATA[<p>Technorati is a blog-specific search engine that indexes 112 million blogs. To add your blog to Technorat:</p>
<ol>
<li>Create an account at <a href="http://technorati.com/">technorati.com</a></li>
<li>Verify your account by clicking on the link that Technorati emails you</li>
<li>Check your Claim Status</li>
<li>Create a blog post that includes your unique token, like <span>MF2B68NAKRS2 </span></li>
<li><span>Verify Claim Token at Technorati</span></li>
</ol>
<p>Why do you have to add your blog to a search engine? I don&#8217;t really know since <a href="http://blogsearch.google.com/">Google&#8217;s blog search</a> already indexes my blog content. In fact, that same content also exists in Google&#8217;s regular search index.</p>
<p>And Bing.com? Yeah, they index my blog content too. No registration. No claiming. No verifying.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marketingbymarlow.com/messenger/index.php/2009/claim-your-blog-at-technorati/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
