I am stuck in choosing what to use for sidebar navigation. Here is the structure:
<header>
</header>
<main>
<nav-tag>
</nav-tag>
<article>
</article>
<aside>
</aside>
</main>
The aside
tag shows content related to article
. So it's pointless to use it for a sidebar navigation. Should I add a div
tag with id #sidebar and put a nav
tag in it? Or should I just add a nav
tag with id #sidebar and put the sidebar styles for it? I want to choose latter because without a style it semantically makes sense as its a container that stores an unordered list of links.