Product Landing Page - Build a Product Landing Page

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang='en'>
  <head><meta charsert='utf-8'>
  <meta name='viewport' content='width=device-width, initial scale=1.0'>
  <link rel='stylesheet' href="styles.css">
  <header id="header">
    <img id="header-img" src='https://www.google.com/' />
  
  <nav id='nav-bar'><ul>
    <li><a class='nav-link' href='#features'>Features</a></li>
   <li> <a class='nav-link' href='#how it works'>How it works </a></li>
     <li>  <a class='nav-link' href='#pricing '>Pricing</a></li>
<ul>
  </nav>
</header>  </head>
</html>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; Infinix X660B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36

Challenge: Product Landing Page - Build a Product Landing Page

Link to the challenge:

I don’t know why the 10th test is not. Still passing…:weary:

“Each .nav-link element should link to a corresponding element on the landing page (has an href with a value of another element’s id. e.g. #footer).”

You have three nav links:

<li><a class='nav-link' href='#features'>Features</a></li>
<li><a class='nav-link' href='#how it works'>How it works </a></li>
<li><a class='nav-link' href='#pricing '>Pricing</a></li>

Where are the corresponding elements they link to?

That’s what I didn’t understand,I’m stuck there

Your product landing page should have a section for Features, a section for How it works and a section for Pricing. These internal nav link should link to those sections so that when the user clicks on a nav link the page jumps to the relevant section.

Any hint on what to do😩,I don’t know what to do!I tried adding a section element to it.