hi all, my first post here
Got a product page and wondered if the tags used would affect SEO in any noticeable way.
Which one of these do you think would work best and is there much difference?
anchor text in heading:
HTML Code:
<div>
<h3><a href="">title</a></h3>
<img>
<p>
<div>
anchor text as title (no heading tag)
HTML Code:
<div>
<a href="">title</a>
<img>
<p>
<div>
normal heading tag with seperate anchor text overlayed
HTML Code:
<div>
<h3>title</h3>
<img>
<p>
<a href="">title</a> (this would be overlayed and the text pushed out of
view so the whole div seems clickable)
</div>
product image is the link
HTML Code:
<div>
<h3>title</h3>
<a href=""><img></a>
<p>
<div>
anchor double whammy
HTML Code:
<div>
<a href="">title</a>
<a href=""><img></a>
<p>
<div>
Last edited by taylor244; 10-28-2010 at 06:40 AM..
|