Button trouble on Portfolio project

Hi everyone, i’m trying to get the buttons on the top of my page to link to their respective sections and scroll to them when clicked but its not working and I can’t figure out why :frowning: here is the link http//:www.http://codepen.io/Saraseiser/pen/EgwVvB please ignore the styling, i haven’t really worked on that yet

http://www.http://codepen.io/Saraseiser/pen/EgwVvB

Hi.
Based on your code. It seems you’re missing the target area. What I’m referring is your anchor link below is looking for an id “about” and you don’t have any part of the html with it.

<a href="#about">About me</a>

Try putting some id like the code below

<p id="about"> Hi there! Welcome to my portfolio, ... </p>

Hope this helps…

thank you it did :slight_smile: