An h2 tag is a HEADING tag and should therefore be used for headings on your page, it is second only to h1 tags which should be used ONLY ONCE for your MAIN heading.
If you are using a style sheet then firstly create some styling attributes for your h2 tags...
Code:
h2 {font-size: 13px;
color: #000000;
font-weight: bold;
margin-bottom: 0}
then simply decide which text you would like to have..
Code:
<h2>and wrap h2 tags around it like this</h2>
A page that is using both h1 and h2 tags should look something like this...
This is my main H1 heading for my page
This is my h2 heading
this is my content this is my content this is my content this is my content
this is my content this is my content this is my content this is my content
this is my content this is my content this is my content this is my content
This is another h2 heading
This is more content This is more content This is more content
This is more content This is more content This is more content
This is more content This is more content This is more content
regards
James.