Help with Project Landing Page

I can’t seem to get user story #5 to pass. I’ve read a ton, rearranged links, tried different codes, and nothing. I know it’s something simple I’m missing or forgetting but I can’t figure it out.

here is my code so far: https://gist.github.com/redragon1/2526b8e8f4825e3dbfc52df005fd998e

Any help is much appreciated.

When I click a .nav-link button in the nav element, I am taken to the corresponding section of the landing page.’

Meaning you should have a section with an id that can be used as an anchor - <section id="link1">. And then your nav link should reference to your anchor like so <a href="#link1">Link 1</a>. What happens when you click on Link 1 is it takes you to that section.

Complete this challenge one more time:

thanks for your help. Finally got it to pass after hours of testing. Always good to go back and do over what you learned. Thanks!