<?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>WebPaws.com &#187; XHTML</title>
	<atom:link href="http://webpaws.com/blog/web-development/web-design/xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://webpaws.com/blog</link>
	<description>Internet Marketing and Design Services for Turnkey Web Solutions</description>
	<lastBuildDate>Tue, 07 Feb 2012 01:40:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>How to force a child container to the bottom of the parent</title>
		<link>http://webpaws.com/blog/322/how-to-force-a-child-container-to-the-bottom-of-the-parent/</link>
		<comments>http://webpaws.com/blog/322/how-to-force-a-child-container-to-the-bottom-of-the-parent/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 01:38:40 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=322</guid>
		<description><![CDATA[Using CSS to format your HTML the way you want it can be tricky. Here we will talk about forcing a child div container to the bottom of the parent div container with illustrations and code. Here is the task, get the gold rectangle to sit inside the bottom of the parent blue rectangle: Parent<a href="http://webpaws.com/blog/322/how-to-force-a-child-container-to-the-bottom-of-the-parent/"> <br /><br /> (Read More...)</a><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/322/how-to-force-a-child-container-to-the-bottom-of-the-parent/">How to force a child container to the bottom of the parent</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;title=How+to+force+a+child+container+to+the+bottom+of+the+parent&amp;summary=Using+CSS+to+format+your+HTML+the+way+you+want+it+can+be+tricky.++Here+we+will+talk+about+forcing+a+child+div+container+to+the+bottom+of+the+parent+div+container+with+illustrations+and+code.%0AHere+is+the+task%2C+get+the+gold+rectangle+to+sit+inside+the+bottom+of+the+parent+blue+rectangle%3A%0A%0AParent+div%3Ca+href%3D%22http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F%22%3E+%3Cbr+%2F%3E%3Cbr+%2F%3E+%28Read+More...%29%3C%2Fa%3E&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p>Using CSS to format your HTML the way you want it can be tricky.  Here we will talk about forcing a child div container to the bottom of the parent div container with illustrations and code.</p>
<p>Here is the task, get the gold rectangle to sit inside the bottom of the parent blue rectangle:</p>
<div style="width:500px; height:150px; background-color:#3366CC; position:relative; float:left;">
<h3>Parent div Element</h3>
<div style="background-color:#FFCC00; margin:0; padding:0;">
<h3>Child div element (we want this to reside at the bottom)</h3>
</p></div>
</div>
<div style="clear:both;"></div>
<p>Here is the code for the above rectangles (div elements):</p>
<div  style="background-color:#CCCCCC;">
<code><br />
&lt;div style="width:500px; height:150px; background-color:#3366CC; position:relative; float:left;"&gt;<br />
        &lt;h3&gt;Parent div Element&lt;/h3&gt;<br />
        &lt;div style="background-color:#FFCC00;"&gt;<br />
            &lt;h3&gt;Child div element (we want this to reside at the bottom)&lt;/h3&gt;<br />
        &lt;/div&gt;<br />
&lt;/div&gt;<br />
</code>
</div>
<p>To force the child div to the bottom, we apply the following CSS commands to the child div:</p>
<div  style="background-color:#CCCCCC;"><code>position:absolute; bottom:0; left:0; width:500px;</code></div>
<p>And the result is:</p>
<div style="width:500px; height:150px; background-color:#3366CC; position:relative; float:left;">
<h3>Parent div Element</h3>
<div style="background-color:#FFCC00; position:absolute; bottom:0; left:0; width:500px;">
<h3>Child div element (we want to reside at the bottom)</h3>
</p></div>
</div>
<div style="clear:both;"></div>
<p>NOTE: Whenever you float an HTML element, you need to clear the float or it will continue to propagate throughout your page.  Use:
<div  style="background-color:#CCCCCC;"><code>&lt;div style="clear:both;"&gt;&lt;/div&gt;</code></div>
<p> right after your floating elements.</p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/322/how-to-force-a-child-container-to-the-bottom-of-the-parent/">How to force a child container to the bottom of the parent</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;title=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;t=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;title=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;title=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;title=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;title=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/322/how-to-force-a-child-container-to-the-bottom-of-the-parent/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;title=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;bm_description=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F322%2Fhow-to-force-a-child-container-to-the-bottom-of-the-parent%2F&amp;=How%20to%20force%20a%20child%20container%20to%20the%20bottom%20of%20the%20parent" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/322/how-to-force-a-child-container-to-the-bottom-of-the-parent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO semantics: The foundation for top SERPs</title>
		<link>http://webpaws.com/blog/238/seo-semantics-the-foundation-for-top-serps/</link>
		<comments>http://webpaws.com/blog/238/seo-semantics-the-foundation-for-top-serps/#comments</comments>
		<pubDate>Fri, 21 May 2010 14:27:41 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Key Words]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[Semantic]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=238</guid>
		<description><![CDATA[Not only do you have to have good, original, relevant to the topic (key words), but you must "type-set" that content into a logical format<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/238/seo-semantics-the-foundation-for-top-serps/">SEO semantics: The foundation for top SERPs</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;title=SEO+semantics%3A+The+foundation+for+top+SERPs&amp;summary=Not+only+do+you+have+to+have+good%2C+original%2C+relevant+to+the+topic+%28key+words%29%2C+but+you+must+%22type-set%22+that+content+into+a+logical+format&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p>To achieve a top listing with a search engine&#8217;s result page for a specific keyword or phrase for a specific web page or website, you need to analyze the structure of that page.  The term &#8220;content is king&#8221; applies to some extent, but how the content is built, the structure of the XHTML is really important in making the content index to the top of the SERPs (Search Engine Result Pages).</p>
<p>Consider the behavior of a person reading a newspaper.  Not all pages will be looked at in any detail, scanning headlines, key areas that stand out on a page or keywords of interest is what the reader will hone into.  A web page is no different.  Not only do you have to have good, original, relevant to the topic (key words), but you must &quot;type-set&quot; that content into a logical format that is <strong>easy to understand quickly</strong>.  Once the reader is &quot;hooked&quot;, more details within the article, info should be available either in finer print, links, images, or other relevant media for a web page to pull and keep the reader active.</p>
<p>This is where semantic structure of the page and content is very important.  With the advent of mobile technology, page structure is even more important for a wider range of users to access your information.  One tool by the World Wide Web Consortium (W3C) has this <a href="http://www.w3.org/2003/12/semantic-extractor.html">semantic extraction tool</a>  to help you analyze your page&#8217;s semantic structure.  Firefox has several add-ons that allow you to view a web pages semantic structure, usually based on the XHTML header tags <code> &lt;h1&gt;&lt;/h1&gt;...&lt;h6&gt;&lt;/h6&gt;, &lt;p&gt;&lt;/p&gt; </code> and other structural elements.</p>
<p>SEO best practices start at the foundation of a page and the semantic structure plays an important role along with good content, properly placed keywords, meta data, links, relevant media, XHTML element placement, usage and fine-tuning with their corresponding attributes.</p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/238/seo-semantics-the-foundation-for-top-serps/">SEO semantics: The foundation for top SERPs</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;title=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;t=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;title=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;title=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;title=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;title=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/238/seo-semantics-the-foundation-for-top-serps/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;title=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;bm_description=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F238%2Fseo-semantics-the-foundation-for-top-serps%2F&amp;=SEO%20semantics%3A%20The%20foundation%20for%20top%20SERPs" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/238/seo-semantics-the-foundation-for-top-serps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instant Web Presence &#8211; Limited Time Offer &#8211; FREE Website</title>
		<link>http://webpaws.com/blog/170/170/</link>
		<comments>http://webpaws.com/blog/170/170/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 18:01:51 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=170</guid>
		<description><![CDATA[FREE Website to the first 10 responders!<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/170/170/">Instant Web Presence &#8211; Limited Time Offer &#8211; FREE Website</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;title=Instant+Web+Presence+%26%238211%3B+Limited+Time+Offer+%26%238211%3B+FREE+Website&amp;summary=FREE+Website+to+the+first+10+responders%21&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><h2 class="sub_head" style="margin: 0pt; font-size: 21px; color: #0000ff;"><span style="text-decoration: underline;">Instant Web Presence</span> &#8211; <span style="color: #ff0000;">Limited Time Offer</span> &#8211; FREE Website to the first 10 responders!*</h2>
<h3 style="font-size: 18px;">Get Your Free Custom Designed Website* by WebPaws.com</h3>
<p>We will provide you a standard available domain name of your choice and then build you a three page website with a “Home” page, “About Us” page and a “Contact Us” page*.  <a style="color: #000000;" href="http://www.webpaws.com/contact/Free-Website-Offer.php">Click here for more details and get your website today!</a></p>
<p><span style="font-size:10px;">* To recieve your free 3 page website and domain, all you need to do is pay for your first year of web hosting upfront.</span></p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/170/170/">Instant Web Presence &#8211; Limited Time Offer &#8211; FREE Website</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;title=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;t=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;title=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;title=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;title=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;title=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/170/170/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;title=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;bm_description=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F170%2F170%2F&amp;=Instant%20Web%20Presence%20-%20Limited%20Time%20Offer%20-%20FREE%20Website" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/170/170/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Anchor Text: The meat of the link</title>
		<link>http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/</link>
		<comments>http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 01:30:11 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEM]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[anchor text]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[hyperlink]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=114</guid>
		<description><![CDATA[Anchor text is the visible text that is anchored to a hyperlink (web link on a web page).  This is important because the Internets primary purpose is to display pages and link them to other pages of relevant content to enhance your browsing experience.  How do you do this and reap improved SERPs?<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/">Anchor Text: The meat of the link</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor+Text%3A+The+meat+of+the+link&amp;summary=Anchor+text+is+the+visible+text+that+is+anchored+to+a+hyperlink+%28web+link+on+a+web+page%29.++This+is+important+because+the+Internets+primary+purpose+is+to+display+pages+and+link+them+to+other+pages+of+relevant+content+to+enhance+your+browsing+experience.++How+do+you+do+this+and+reap+improved+SERPs%3F&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!<br />
/* Style Definitions */<br />
table.MsoNormalTable<br />
{mso-style-name:"Table Normal";<br />
mso-tstyle-rowband-size:0;<br />
mso-tstyle-colband-size:0;<br />
mso-style-noshow:yes;<br />
mso-style-priority:99;<br />
mso-style-qformat:yes;<br />
mso-style-parent:"";<br />
mso-padding-alt:0in 5.4pt 0in 5.4pt;<br />
mso-para-margin:0in;<br />
mso-para-margin-bottom:.0001pt;<br />
mso-pagination:widow-orphan;<br />
font-size:11.0pt;<br />
font-family:"Calibri","sans-serif";<br />
mso-ascii-font-family:Calibri;<br />
mso-ascii-theme-font:minor-latin;<br />
mso-fareast-font-family:"Times New Roman";<br />
mso-fareast-theme-font:minor-fareast;<br />
mso-hansi-font-family:Calibri;<br />
mso-hansi-theme-font:minor-latin;<br />
mso-bidi-font-family:"Times New Roman";<br />
mso-bidi-theme-font:minor-bidi;}<br />
--> <!--[endif]--><strong></strong><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><!--[if !supportLineBreakNewLine]--><strong>Anchor Text: the meat of links, the nervous system of the Web</strong></span></p>
<p>Anchor text is the visible text that is anchored to a hyperlink (web link on a web page).  This is important because the internets primary purpose is to display pages and link them to other pages of relevant content to enhance your browsing experience.  There are many kinds of links, but the primary static text/image linked links are the most common and found on most every web page on the internet.  Further examination of links in XHTML (<strong>Extensible Hypertext Markup Language)</strong> of a hyperlink code may look like this:</p>
<p>CODE:<br />
<code>&lt;a href="http://web.marketing.webpaws.com/"&gt;WebPaws.com&amp;rsquo;s Internet Marketing Services&lt;/a&gt;</code></p>
<p>HOW YOUR BROSWERS DISPLAYS IT:<br />
<a title="WebPaws.com Internet Marketing and Web Devlopment Services" href="http://web.marketing.webpaws.com/" target="_blank">WebPaws.com&#8217;s Internet Marketing Services<br />
</a></p>
<p>We will now review the XHTML code including the meat of the link, the anchor text.  An &#8220;a&#8221; tag means the anchor or start of a link, where we start the hyperlink code.  The &#8220;href&#8221; is the hyperlink reference or the URL (<strong>Uniform Resource Locator</strong>) that tell your computer&#8217;s browser where to go for the specific information (linked page) and download and pull it up in your browser.  The anchor text is text sandwiched between the opening &lt;a&gt; tag and the closing &lt;/a&gt; tag.  In this example, the anchor text is &#8220;WebPaws.com&#8217;s Internet Marketing Services&#8221; and is the text that is associated with the link &#8220;http://web.marketing.webpaws.com/&#8221;.</p>
<p>This is an important key factor in increasing your search engine rankings because the search engines use this (anchor) text to aid in determining the relevance of the linked page to the anchor text used as incoming keywords.  The use of this particular anchor text will help the domain, web.marketing.webpaws.com, perform better in search engine results for the keyword &#8220;WebPaws.com&#8217;s Internet Marketing Services&#8221; and similar keyword phrases too (e.g., &#8220;Internet Marketing&#8221;, &#8220;Marketing Services&#8221;, WebPaws.com, etc.)<br />
<!--[endif]--></p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/">Anchor Text: The meat of the link</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;t=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=Anchor%20Text%3A%20The%20meat%20of%20the%20link&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;bm_description=Anchor%20Text%3A%20The%20meat%20of%20the%20link&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

