Forum Moderators: open
On my 1st page of my story, I have h1 and h2. Then it continues on page 2. Can I use h2 only on my second page without using h1? Does this have any effect on Search Engine or will it confuse the bots?
With CSS you can make the headings appear as you wish. On one of my sites I styled H1 and H2 to look exactly the same, yet there is only one H1 with the most relevant headlines and all the others are H2's.
Can I use h2 only on my second page without using h1? Does this have any effect on Search Engine or will it confuse the bots?
Yes you can use h2 or any other heading tags as you wish.
No it wont confuse any robots, and even if it did, so what? Your site is for the benefit of readers, not computers?
Matt
Here's the way I look at it. Semantically, the subtitle for that section pf the chapter IS the title of the inner page, so I want the mark-up to reflect that. I also want to reflect the actual chapter title somewhere on the inner pages for the sake of clear visitor information. So I set up a class for a "prehead" that can hold the title without disturbing the semantic hierarchy that places the PAGE title in the <h1> element.
<p class="prehead">Title</p>
<h1>Subtitle</h1>