<?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>SEO Web Design Blog &#187; Code</title>
	<atom:link href="http://www.newshoemedia.com/blog/tag/code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.newshoemedia.com/blog</link>
	<description>SEO and Search Engine Friendly Web Design</description>
	<lastBuildDate>Tue, 20 Oct 2009 19:52:29 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Be Specific: Using Semantic XHTML for Search Engines</title>
		<link>http://www.newshoemedia.com/blog/seo/be-specific-using-semantic-xhtml-for-search-engines</link>
		<comments>http://www.newshoemedia.com/blog/seo/be-specific-using-semantic-xhtml-for-search-engines#comments</comments>
		<pubDate>Fri, 30 Jan 2009 22:28:21 +0000</pubDate>
		<dc:creator>Claye Stokes</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[semantics]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.newshoemedia.com/blog/?p=159</guid>
		<description><![CDATA[Using the &#60;acronym&#62;, &#60;abbr&#62;, and &#60;address&#62; tags to improve readability for disabled users, web crawlers, and search engines.
You want to make your website as informative as possible, right? For search engines, users &#8211; everybody. Help search engines, disabled (blind) users, and any users who may not understand the meaning of your acronym or abbreviation by [...]]]></description>
			<content:encoded><![CDATA[<p><em>Using the <code>&lt;acronym&gt;</code>, <code>&lt;abbr&gt;</code>, and <code>&lt;address&gt;</code> tags to improve readability for disabled users, web crawlers, and search engines.</em></p>
<p>You want to make your website as informative as possible, right? For search engines, users &#8211; everybody. Help search engines, disabled (blind) users, and any users who may not understand the meaning of your acronym or abbreviation by using semantic <abbr title="Extensible HyperText Markup Language">XHTML</abbr> tags like the <code>&lt;acronym&gt;</code>, <code>&lt;abbr&gt;</code>, and <code>&lt;address&gt;</code> tags in context. <span id="more-159"></span></p>
<p>If your website, for example, is about Medical Transcriptions, but you refer to them on the website only using the medical jargon <acronym title="Medical Transcriptions">MT</acronym>, search engines and users looking at small snippets of text may confuse the acronym &#8220;MT&#8221; for Media Temple (<acronym title="Media Temple">MT</acronym>), or the abbreviation for Montana (<abbr title="Montana">MT</abbr>), so use the <code>&lt;acronym&gt;</code> tag to specify what you are referring to. The more specific you can be, the more likely you are to rank for those relevant terms, and as a result, your users content to be more informative and useful. </p>
<p>To see it in action, hover your mouse over this: <abbr title="Extensible HyperText Markup Language">XHTML</abbr>. You&#8217;ll see a tool tip with the written-out version: E<strong>x</strong>tensible <strong>H</strong>yper<strong>T</strong>ext <strong>M</strong>arkup <strong>L</strong>anguage. If users or search engines don&#8217;t already know what the acronym stands for, then the <em>title</em> attribute (see below) will inform them, and text-to-speech engines will be able to see that the full term that the acronym represents as well. </p>
<p>Finally, using the <code>&lt;address&gt;</code> tag is getting increased attention lately, especially for local businesses and websites that users would search for with Google Local Search, Maps, YellowPages.com, Yelp.com, etc. The <code>&lt;address&gt;</code> tag helps to isolate the address from the rest of the copy on your website, making your website more relevant to local or geo targeted search queries, such as &#8220;san diego pizza&#8221; or &#8220;pizza 94023&#8243; (searching by zip code).</p>
<h2>Code Examples</h2>
<p>How to use the  <code>&lt;acronym&gt;</code> tag:</p>
<ol class="code">
<li><code>&lt;acronym title="National Aeronautics and Space Administration"&gt;NASA&lt;/acronym&gt;</code></li>
<li><code>&lt;acronym title="Search Engine Optimization"&gt;SEO&lt;/acronym&gt;</code></li>
<li><code>&lt;acronym title="Medical Transcription"&gt;MT&lt;/acronym&gt;</code></li>
</ol>
<p>How to use the  <code>&lt;abbr&gt;</code> tag:</p>
<ol class="code">
<li><code>&lt;abbr title="Utah"&gt;UT&lt;/abbr&gt;</code></li>
<li><code>&lt;abbr title="Corporation"&gt;Corp&lt;/abbr&gt;</code>.</li>
</ol>
<p>How to use the  <code>&lt;address&gt;</code> tag:</p>
<ol class="code">
<li><code>&lt;address&gt;</code></li>
<li><code class="indent2">Address:14 East Anywhere Drive&lt;br /&gt;</code></li>
<li><code class="indent2">City, &lt;abbr title="State"&gt;ST&lt;/state&gt; 55555</code></li>
<li><code>&lt;/acronym&gt;</code></li>
</ol>
<p>When it comes to distinguising between acronyms, initialisms, and abbreviations, the following guides are very useful. When it comes to implementing the <code>&lt;acronym&gt;</code> and <code>&lt;abbr&gt;</code> tags, the <acronym title="World Wide Web Consortium">W3C</acronym> appears to suggest that <code>&lt;acronym&gt;</code> should be used for acronyms and initialisms, and <code>&lt;abbr&gt;</code> is used for abbreviated and shortened words (Inc., Gov., etc.).</p>
<ul>
<li><a href="http://www.w3.org/TR/WCAG10-HTML-TECHS/#text-abbr">The W3C guide for Acronyms and Abbreviations</a></li>
<li>Grammar Girl <a href="http://grammar.quickanddirtytips.com/acronyms-grammar.aspx">Abbreviations, Acronyms, and Initialisms</a></li>
<li>This article sorts out the confusion over the correct use of abbreviations and acronyms: <a href="http://juicystudio.com/article/abbreviations-acronyms.php">http://juicystudio.com/article/abbreviations-acronyms.php</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.newshoemedia.com/blog/seo/be-specific-using-semantic-xhtml-for-search-engines/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using the META Robots Tag</title>
		<link>http://www.newshoemedia.com/blog/seo/meta-robots-tag-tutorial</link>
		<comments>http://www.newshoemedia.com/blog/seo/meta-robots-tag-tutorial#comments</comments>
		<pubDate>Fri, 23 Jan 2009 04:14:13 +0000</pubDate>
		<dc:creator>Claye Stokes</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://www.newshoemedia.com/blog/?p=129</guid>
		<description><![CDATA[Tutorial: How to use the Meta Robots tag — code  examples, meanings, and all the major REP directives.
I&#8217;ve seen a whole lot of websites lately that  are wasting space (and the time it took to write it) by implementing the Meta  Robots tag like this:

&#60;meta name="robots" content="all, index, follow" /&#62; 

If you [...]]]></description>
			<content:encoded><![CDATA[<p>Tutorial: How to use the Meta Robots tag — code  examples, meanings, and all the major <acronym title="Robots Exclusion Protocol">REP</acronym> directives.</p>
<p>I&#8217;ve seen a whole lot of websites lately that  are wasting space (and the time it took to write it) by implementing the Meta  Robots tag like this:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="all, index, follow" /&gt; </code></li>
</ol>
<p>If you want search engine bots to crawl and  index your website, then just leave it alone. By default, search engines will  crawl, index, and archive every page on your website that they can find by  following links. You also don&#8217;t have to say &#8220;all&#8221; — every bot that  obeys the Robots Meta tag will obey it by default.</p>
<p>So not only is that example <strong>pointless </strong>because that is the default, <strong>it is repeating the same command twice</strong>!</p>
<p><span id="more-129"></span></p>
<p>Here are some handy uses for the Meta robots tag  (these work for Yahoo!, MSN, and Google bots):</p>
<p><strong>Normal  talk</strong>: Just ignore this page &#8211; don&#8217;t keep a copy because I don&#8217;t want  to see it in search engine results. I don&#8217;t want you to follow the links on  this page, either.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="none"  /&gt; </code></li>
</ol>
<p><em>(surprised  that it&#8217;s not &#8220;noindex, nofollow&#8221;?  &#8211; that&#8217;s just a long and  unnecessary of telling search engines to ignore the page completely)</em></p>
<p><strong>Normal  talk</strong>: I don&#8217;t want to see this page in search results, so don&#8217;t keep a  copy of this page. You can follow the links on this page, though &#8211; those  websites deserve credit.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="noindex,  follow" /&gt; </code></li>
</ol>
<p><strong>Normal  talk</strong>: Take as many copies of this page as you want and hook me up with  traffic from your search engine results. Don&#8217;t follow the links on this page  though, those websites aren&#8217;t that great anyways.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="index,  nofollow" /&gt;</code><em><code> </code></em></li>
</ol>
<p><strong>Normal  talk</strong>: You can make a copy of this page to plug into your algorithm,  but don&#8217;t give anyone access to it with the &#8220;cache&#8221; link in search  engine results.</p>
<p>Code:</p>
<ol class="code">
<li><code> &lt;meta name="robots" content="noarchive"  /&gt; </code></li>
</ol>
<p><strong>Normal  talk</strong>: I don&#8217;t want you to pull any text from my website to use in  search engine results. Just a link will do. You&#8217;re free to index this page and  follow all links.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="nosnippet"  /&gt; </code></li>
</ol>
<p><strong>Normal  talk</strong>: Stop using my Dmoz.org listing description in search results &#8211; I  want you to use a snippet of text from the page to show users the contextual  relevance of my site to their search query.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="noodp"  /&gt; </code></li>
</ol>
<p>(<acronym title="No Open Directory Project">NOODP</acronym> is an acronym &#8220;No Open Directory  Project&#8221;)</p>
<h2>Some  Useful Googlebot Meta Tags:</h2>
<p>These Meta tags work exclusively in Google (all  of these would work with the &#8220;robots&#8221; name, but since Googlebot is  the only bot that officially follows these REP directives, I&#8217;ll use  &#8220;googlebot&#8221; or &#8220;google&#8221;, in the case of the notranslate  tag):</p>
<p><strong>Normal talk</strong>: Ignore the images on this page &#8211; I  don&#8217;t want to see them in Google Image Search.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="googlebot"  content="noimageindex"&gt;</code></li>
</ol>
<p><strong>Normal  talk</strong>: Heads up &#8211; this page will be out of commission (deleted,  expired, moved, etc.) on this day.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="googlebot"  content="unavailable_after: 13-DEC-2011 11:45:00 PST"&gt;</code></li>
</ol>
<p><strong>Normal  talk</strong>: Don&#8217;t translate the content on this page into other languages.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="google" value="notranslate"&gt;</code></li>
</ol>
<p><em>! Notice  that in this case, the Meta name is &#8220;google&#8221;, not  &#8220;googlebot&#8221;.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newshoemedia.com/blog/seo/meta-robots-tag-tutorial/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
