Hi all, Just have a quick question on the implementation of an H1 tag. Right now my H1 tag surrounds a table cell which contains my keyword as follows: <h1><td class="myclass">My Keyphrase</td></h1> Do search engines still consider "My Keyphrase" to be the H1 tag? Is this a suitable way of getting that added value the H1 tag brings? Thanks
the answer is yes but you would find it easier if you build your html like this: <td class="myclass"><h1>My Keyphrase</h1></td> It would be easier for you to manage everything from my point of view.