Need help i dont know what Im supposed to do

I don’t know what I’m supposed to do
The failing test says The nav-link with href="#join" is not linked with a corresponding element on the page
My code so far

<nav>
    <nav id="nav-bar">
    <ul>
      <li><a class="nav-link" href="#Join">Join</a></li>
      <li><a class="nav-link" href="$Features">Features</a></li>
      <li><a class="nav-link" href="#Pricing">Pricing</a></li>
    </ul>

Hello there.

I assume this is related to one of the certification projects? If so, it would help if you edited your post to include a URL to your project or source code.

If that is all your code you have so far, then I suggest you finish the rest of the project, as you do not have any elements to link to. As an example, it is common to see a structure like this:

<nav>
  <a href="#about">About</a>
</nav>
.
.
.
<section id="about">
  .
  .
  .
</section>

Now, when you click on the a tag, the page will travel to the section with the matching id.

Hope this helps

1 Like

Thank you i passed the tests