Problem with Personal Portfolio Webpage Challenge

I keep failing test #7 where the navbar has to be able to have internal links to be able to navigate to diff parts of the webpage.
my code:


Right now I am just trying to pass the tests and then go on and actually design the portfolio. I do not get what I am doing wrong. I am trying to a make link in the “about me” inside the unordered list for the nav bar, but it does not pass the test # 7.

You need quotes around about-me

then you need something with an id=“about-me” so it knows where to go.

I added the quotes in the anchor tag

  • About Me
  • and did the id"about-me" but it still does not pass the test?

    It looks like it actually needs the viewport to move before the test will pass, add a few lorum ipsum paragraphs until the element you are linking to is not visible without scrolling.

    Actually that makes sense given this other requirement…

    1. The height of the welcome section should be equal to the height of the viewport.

    thank u, u were correct