Landing Page 15/16 passed - Cant find final error?

I cannot find what final item is wrong with my code. I have completed 15/16 but I do not know what is outstanding?
Please help.
Thanks

My code so far


<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <link rel="stylesheet" href="main.css">
  <title>A Title</title>
  
  <a href="#"><img id="header-img" src="https://images.unsplash.com/photo-1630212627979-5127deecd216?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYzMjIzNzEzMQ&ixlib=rb-1.2.1&q=85"  alt="Company Logo of a Lion."></a>

</head>

<body>
  
  <header id="header">
    
    <img id="header-img"/>
    <div id="logo-text">Lion Tuition</div>
    
    <nav id="nav-bar">
      <a href="/home/" class="nav-link">Home</a>
      <a href="/courses/" class="nav-link"> Courses</a>
      <a href="/events/" class="nav-link">Events</a>
      <a href="/blog/" class="nav-link">Blog</a>
      <a href="/contact/" class="nav-link">Contact</a>
    </nav>
    
  </header>
<br><br>
  <p> Helping you taking the brave next step in higher level mathematics </p>  

<div>  
<iframe width="560" height="315" id="video" src="https://www.youtube.com/embed/anQJbA9vQno" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
  
 <form id="form" action="https://www.freecodecamp.com/email-submit">
      <label for="email"> Email:</label>
      <input name="email" id="email" type="email" placeholder="Enter Your Email Address" required/><br><br>
      <input id="submit" type="submit" value="Subscribe" class="btn"></input>
      
    </form>
  
<div id="prices-container">
  <div id="price-1">FIVE CLASSES PACKAGE <br> <br>     
    <ul style ="text-align: left; font-weight: normal;">
      <li>Average Quality Tutition</li>
      <li>Maybe Pass Exam</li>
      <li>£200</li>
    </ul>
  </div>
  
  <div id="price-2">TWENTY CLASSES PACKAGE <br> <br> 
    <ul style ="text-align: left; font-weight: normal;">
      <li>Good Quality Tutition</li>
      <li>Probably Pass Exam</li>
      <li>£800</li>
    </ul>
  </div>
  
  <div id="price-3">FIFTY CLASSES PACKAGE <br> <br> 
    <ul style ="text-align: left; font-weight: normal;">
      <li>High Quality Tutition</li>
      <li>Guarantee Pass Exam</li>
      <li>£3000</li>
    </ul>
  </div>
  
</body>

</html>

Your browser information:

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

Challenge: Build a Product Landing Page

Link to the challenge:

HI @fuell.python !

Welcome to the forum!

It would be better to share your codepen link so we can see the error for our selves.
Also, make sure to keep the test suite in your code.


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 (’).

Your nav links are written like they’re linking to separate webpages. They should be linking to separate sections of your webpage

Hi,

Thanks for the reply. BelowI have pasted a link to my CodePen.

I have adjusted my code to use the section tag (so that the links are to a part of the page and not another page), as you kindly suggested.
I am getting to the point where its starting to click (fall in place) and I am enjoying it.
I have completed 15/16 of the required tasks and am very keen to complete this final task. Any help you can provide would be very welcome.
I will stop talking now. :smiley:
Simon

Hi,
I have now used the section tag to link to a part of the same page.
Thanks for the tip.
Take care.
Simon

On my end it is passing 16/16 so maybe you fixed the error.

Hi , it was fixed, (it was fairly obvious) .
Thanks very much for the reply.
Take care.
Simon

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.