Social Media Link Semantics | NAV or not
Hello!
It's very common for a footer or somewhere on a hompeage to have a list of social-media links. I was wondering if it is semantically correct to wrap these in a nav tag or if the nav element is only for internally navigation.
Option 1?
<nav>
<ul>
<li>
<a href="">ETC</a>
</li>
</ul>
</nav>
Option 2?
<ul aria-label="social media links">
<li>
<a href="">ETC</a>
</li>
</ul>
Or more options
Thanks for the help!
It's very common for a footer or somewhere on a hompeage to have a list of social-media links. I was wondering if it is semantically correct to wrap these in a nav tag or if the nav element is only for internally navigation.
Option 1?
<nav>
<ul>
<li>
<a href="">ETC</a>
</li>
</ul>
</nav>
Option 2?
<ul aria-label="social media links">
<li>
<a href="">ETC</a>
</li>
</ul>
Or more options
Thanks for the help!
