Got stuck in portfolio page, what can I do?

Hello, everyone. I’ve started front end certification. Then Completed challenges and reached to Basic projects i.e. tribute page and portfolio page. But man they say portfolio is basic but the person who doesn’t know JS how they can create scrollable single portfolio page with all navigation. Help me guys :sweat:

The scroll down will appear if the content is big enough to not fit in the window. So dont worry about that i guess

You can do something like:

<nav>
  <ul>
    <li><a href="#home">Home</a></li>
    <li><a href="#about">About</a></li>
    <li><a href="#portfolio">Portfolio</a></li>
  </ul>
</nav>
<div id="home"></div>
<div id="about">about page</div>
<div id="portfolio"></div>

to have an in page navigation without any kind of javascript.

1 Like

Thanks @destrotns @sorinr for help.