add a header to a html list

To get a header line in a html list the easiset way is to use the style list-style-type:none

<ul>
    <li style="list-style-type:none">Heading</li>
    <li>List items</li>
</ul>