Having trouble with this code snippet:
<nav role="navigation">
<div id="menuToggle">
<input type="checkbox"/>
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="artists.html">
<li id="Artists">Artists</li>
</a>
<a href="music.html">
<li id="Music">Music</li>
</a>
<a href="shop.html">
<li id="Shop">Shop</li>
</a>
<a href="contact.html">
<li id="Contact">Contact</li>
</a>
</ul>
</div>
I need to ensure that the child of ul is only li, but I'm having trouble placing the a tags within. Any suggestions on how to achieve the same visual result while following standard structure?