I have a website with PHP and i am trying to improve page rank in SEO.
1- Where is the best location for h1 tag to be accept from SEO? between tag <head> and </head> or anywhere in the first page?
for example is the code below acceptable for SEO and, does SEO crawler find it?
<table><tr><h1><td><a><img...alt="some keywords for SEO"></img></a></td></h1></tr></table>
i should mention that, i don't like to show h1 text. i like to hide h1 text. so i had to use a trick for hiding h1 text behind an image. and i am not sure if this trick works and SEO accept 'alt' text for image as h1 text.
2- if i use more than one h1 tag in first page, is it improve page rank in SEO?
3- Do i need to use h2 tag for improving page rank in SEO?
4- if i use google adwords for showing my website as an ad at first page of google search engine, and people clicks on my ad link.
Do these clicks on my ad, improve my page rank in google SEO?
latest changes: After guides from my stackoverflow friends, i had to change the code above to something like below...
<table><tr><td><h1 style="margin-bottom:0"><a><img...alt="some keywords for SEO"></img>
</a></h1></td></tr></table>
.... i had to use margin-button:0 because the image a little moved to top
Thanks
