I keep getting a validation error, I tried to wrap the code in li tag but then it messes up the button tag?? is there a way to get it to work not sure where I'm going wrong is there any other tag to use instead of the button tag?
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="coffee-origin.html">Origins of Coffee</a></li>
<ul class="subnav">
<button class="subnavbtn">More About Coffee ▾ </button>
<ul class="subnav-content">
<li><a href="coffee-types.html"> Coffee Types</a></li>
<li><a href="coffee-prduction.html"> Production</a></li>
<li><a href="further-resources.html"> Further Resources</a></li>
</ul>
</ul>
</ul>
</nav>