Search code examples
htmlsemantic-markup

HTML5 tag for definition something from unordered list


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?


Solution

  • 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>