Build A Technical Documentation Page - Help

Hi,

For some reason, I am getting 15 successful tests out of 16 on the Build A Technical Documentation Page challenge.

Here’s the link: https://codepen.io/alielali/pen/NWjoNvY

I am not sure what I am doing wrong?! Any help is appreciated. Thanks in advance.

your <a> tag is closed inside the list item

<a href=#Header_1 class="nav-link"> <li >Header_1 </a></li>

the <a> tag should wrap around the entire list item like so

<a href=#Header_1 class="nav-link"> <li >Header_1 </li></a>

Good catch ! Thanks heaps! It is working now.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.