Forum Moderators: open
What I have done is put at the top of each page a bold title for the page and made it in H1 tags.
So I should make a smaller title for different subjects, and above those paragraphs make those smaller titles H2 tags?
On the H3 tags, how do I use those in a paragraph heading?
So this outline:
Polar BearsI. Regions
....a) North Pole
....b) South PoleII. Mating Habits
III. Hibernation
...would translate to this HTML:
<h1>Polar Bears</h1>
<p>some text</p><h2>Regions</h2>
<p>text about regions</p>...<h3>North Pole</h3>
...<p>text about north pole</p>...<h3>South pole</h3>
...<p>text about south pole</p><h2>Mating Habits</h2>
<p>text about mating habits</p><h2>Hibernation</h2>
<p>text about hibernation</p>
The H1 only appears once per page and usually matches or closely resembles the <TITLE> tag. H2's are the main sections under H1. H3's are the main sections under the H2's, etc...