Tech project - navbar / Nav Link issue

Hi all,

I am attempting to complete the technical documentation project but having an issue.

I am getting out the elements of the project before adding the content (getting it to green light before making it look nice) but I am having issues with user story 10 ( User Story #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 .) - I am continually getting an error message.

The link to my Pen is: https://codepen.io/blueice1984/pen/eYJKzvz.

If you run the challenge checker it will give you the fault.

If you could offer some advice as I am running out of amendments and cant find anything relevant on a search.

Thanks in advance

Richard :+1:

nav-link should be a class, not an id.

You have this:

<a class id="nav-link" href="#page_one">Page One</a>

Should be this:

<a class="nav-link" href="#page_one">Page One</a>

@lasjorg - You are a legend! Thank you very much.