Hi, I am wondering what people feel the best practice for SEO is in this relatively common circumstance...
On the main page of a site (only) and given that:
What html/css structure do people feel is best practice for SEO? I've seen people here and elsewhere recommending just about everything under the sun.
What I've always used (no clue if it's totally stupid or not):
and then use css to replace the <h1> text with an image (of the business name, "Sit Amet").
I've seen people use things like:
or
and then use css to replace the <h1> and the <h2> / <p> text with an image.
On internal pages the h1 switches off to the page/post title leaving something like:
with css replacing the <p> text and link with an image and link and then using a footer link with "Lorem Ipsum" back to the main page.
Just hoping to get some folks with some expertise give to best practice advice...Thanks!
On the main page of a site (only) and given that:
- Primary keyword is "Lorem Ipsum"
- Secondary keyword is "Lorem Ipsum Dolor"
- The business name is "Sit Amet"
- The business name is to be displayed as an image rather than text
- This is html5
What html/css structure do people feel is best practice for SEO? I've seen people here and elsewhere recommending just about everything under the sun.
What I've always used (no clue if it's totally stupid or not):
HTML:
<header>
<h1>Lorem Ipsum</h1>
</header>
and then use css to replace the <h1> text with an image (of the business name, "Sit Amet").
I've seen people use things like:
HTML:
<header>
<h1>Lorem Ipsum</h1>
<h2>Lorem Ipsum Dolor</h2>
</header>
HTML:
<header>
<h1>Lorem Ipsum</h1>
<p>Lorem Ipsum Dolor</p>
</header>
and then use css to replace the <h1> and the <h2> / <p> text with an image.
On internal pages the h1 switches off to the page/post title leaving something like:
HTML:
<header>
<p><a href="mainpage">Sit Amet</a><p>
</header>
with css replacing the <p> text and link with an image and link and then using a footer link with "Lorem Ipsum" back to the main page.
Just hoping to get some folks with some expertise give to best practice advice...Thanks!