*Tell us what’s happening:
it says “expected 10 to equal 5” elements, but I clearly only have 5. I am not sure what iit wants.
thank you for the help.
Your code so far
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36
.
Link to the challenge:
Close your li tags and possibly put them outside of a tags
sorinr
3
As @alhazen1 said your ul li
structure should be like:
<ul>
<li><a class="nav-link" href="#Part_1">Part 1</a></li>
<li><a class="nav-link" href="#Part_2">Part 2</a></li>
<li><a class="nav-link" href="#Part_3">Part 3</a></li>
<li><a class="nav-link" href="#Part_4">Part 4</a></li>
<li><a class="nav-link" href="#Part_5">Part 5</a></li>
</ul>
and done. you will pass all tests.
Happy coding
Thank you. I removed the closing tags while experimenting with formatting, and then forgot about it.
thank you! project complete