What would be the best method to code heading/title of <ul> or <ol>? Like we have <caption> in <table>. and we don't want to make them bold
Example image:

This is ok
<p> heading </p>
<ul>
<li>list item </li>
<li>list item </li>
<li>list item </li>
</ul>
or always headings should be used?
<h/3/4/5/6> heading </h/3/4/5/6>
<ul>
<li>list item </li>
<li>list item </li>
<li>list item </li>
</ul>