Product landing page question

Tell us what’s happening:

I can’t seem to pass test #4. Not sure what I am missing. Any help is appreciated.

Your code so far

<body>
  
  <header id="header">
      <img id="header-img"           src="https://s3.amazonaws.com/freecodecamp/original_trombones.png" alt=trombones width="300" height="35>  

     <nav id="nav-bar">
      <ul>
         <li><a class="nav-link" href="#main">Features</a></li>
         <li><a class="nav-link" href="#video-intro">How It Works</a></li>
         <li><a class="nav-link" href="#footer">Pricing</a></li>
        <ul>
    </nav>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36.

Challenge: Build a Product Landing Page

Link to the challenge:

Can’t really help if you don’t provide the code you’ve written.

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).


It would help if you posted a link to your live version instead, with the test script added.

Not 100% sure if this is the issue but you are missing some quotes around some of the attribute values (alt and height on the image element) that can cascade the error down the page. You also didn’t close the ul.

The code is up now in my OP. Looks like I didn’t paste it in correctly.