Nav-bar not navigating

I am building the product landing page, it’s halfway done, but my nav-bar isn’t taking me to the corresponding section. FCC: Landing Page
Thanks in advance.

The ids in your HTML code need to updated.

<section id="#home2"> should be <section id="home2">

haha, silly error. thanks a lot.
and i need help for the viewport error. it says i dont have my navbar at the top.

The test wants to make sure your navbar is always visible, even after scrolling. Your current nav bar is just at the top of the page.

Add a CSS to your navbar container with position: fixed; top:0;

yes yes , just did it after stackoverflowin’ myself
thanks a lot for your time though!