Technical Documentation Page, not passing #10

I am not passing do to this error messages, please look at my code.

https://codepen.io/cvillani/pen/WNerKRP

10. Additionally, the navbar should contain link (<a>) elements with the class of "nav-link". There should be one for every element with the class "main-section". There should be one .nav-link for every element with the class of "main-section", and every .nav-link should be within #navbar : expected 15 to equal 5 AssertionError: There should be one .nav-link for every element with the class of "main-section", and every .nav-link should be within #navbar :

  1. You forgot to close your <a> elements.

You have:
<li><a class="nav-link" href="#introduction">Introduction</li>

Should be:
<li><a class="nav-link" href="#introduction">Introduction</a></li>

2. You are missing the Turn and River sections and ids edit: now they are there

  1. The nav should be fixed to the left side.
1 Like