I want to create a list of my skill, and when I click one of them, it shows something description from its list. What is the semantic tag for the 'something description from one of the lists' in HTML5?
I think that is it.
<dl>
<dt>Heading</dt>
<dd>
<ul>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</dd>
</dl>