Build a Product Landing Page nav-link issue

<header id="header">
  <nav id="nav-bar">
    <ul>
      <li id="nav-link"><img src="https://as1.ftcdn.net/jpg/00/83/70/70/500_F_83707007_pnWm7IioWbWXDgjuJTLMT4jcFpAmAfQp.jpg" alt="" id="header-img"></li>
      <a href="#video" id="nav-link">Video</a>
      <a href="#price" id="nav-link">Price</a>
      <a href="#email" id="nav-link">Feedback</a>
      <a href="#footer" id="nav-link">Contact</a>
    </ul>
</header>

I use this code and cannot pass 4.,5. Please give me some suggestion.
For more code here https://codepen.io/beerbluedevils/pen/yLOrdqE

Challenge: Build a Product Landing Page

Link to the challenge:

The error states:

I can see at least three clickable elements inside the nav element, each with the class “nav-link”

While your element have an id of nav-link, not a class.

Moreover in HTML ids should be unique, all your navbar elements share the same id, which is an error by itself.

Hope this helps :slight_smile:

Fixed now. Thank you very much.