Forum Moderators: open
I assume it's good practice sticking to only <li>-tag within lists?
If you want a header for a list do you simply place a <p>-tag or a header-tag before the list starts?
Use <li>'s for list items and use header tags (at the appropriate level in the document structure) to provide a heading for a list eg:
<h2>Widget Colours</h2>
<ul>
<li>Blue</li>
<li>Green</li>
</ul>
<h1>...<h6> are for headings, <p> is for paragraphs. Clue is in the name ;) HTH.