After the article I have list of tags related to article. Is it semantically correct to wrap list of those tags in <nav>
html tag? If no, what would be the proper one?
<nav class="tags">
Tags:
<ul>
<li><a href="#">Tag1</a></li>
<li><a href="#">Tag2</a></li>
<li><a href="#">Tag3</a></li>
</ul>
</nav>
- Not all links of a document must be in a
<nav>
element, which is intended only for major block of navigation links; typically the<footer>
element often has a list of links that don't need to be in a<nav>
element. - User agents, such as screen readers targeting disabled users, can use this element to determine whether to omit the initial rendering of this content.