Product Landing Page - Build a Product Landing Page

Hey everyone, im having trouble with two requirements for succeeding this assignment.

“Your #video should have a src attribute.”
“You should have a video or iframe element with an id of video.”

To my understanding i have written the code necessary to complete these two requirements and yet in marks them as incomplete. Ive searched for answers and dint find anyone who had the same issue. If someone could take a quick glance at the video section at the bottom of the code Id like some insight. Thanks.

<!DOCTYPE html>
<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">
  <title>Handcrafted Ocarinas - Product Landing Page</title>
  <link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arimo&family=Josefin+Sans:wght@300&display=swap" rel="stylesheet">
</head>

<body>
  <header id="header">
    <img id="header-img" src="https://cdn-icons-png.flaticon.com/512/2735/2735454.png" alt="Handcrafted Ocarinas Logo">
    <nav id="nav-bar">
      <ul>
        <li><a class="nav-link" href="#features">Features</a></li>
        <li><a class="nav-link" href="#pricing">Pricing</a></li>
        <li><a class="nav-link" href="#contact">Contact</a></li>
      </ul>
    </nav>
  </header>

  <section id="banner">
    <h1>Experience the Beauty of Handcrafted Ocarinas</h1>
    <p>Our ocarinas are carefully crafted by skilled artisans using traditional methods to produce exceptional sound quality.</p>
    <a class="button" href="#pricing">Shop Now</a>
  </section>

  <section id="features">
    <h2>Features</h2>
    <div class="feature-item">
      <h3>Handcrafted with Care</h3>
      <p>Each ocarina is made by skilled artisans using traditional methods to ensure quality and durability.</p>
      <img class="front-img" src="https://phamoxmusic.com/wp-content/uploads/2022/09/Ocarina_instrument_PIC_800.jpg" alt="Feature 1">
    </div>
    <div class="feature-item">
       <h3>Exceptional Sound Quality</h3>
      <p>Our ocarinas produce beautiful and clear sounds that are sure to delight any music lover.</p>
      <img src="https://pureocarinas.com/res/files/2019/09/large/ocarina_lifting_fingers_too_high.jpg" alt="Feature 2">
    </div>
    <div class="feature-item">
      <h3>Unique Designs</h3>
      <p>Our ocarinas come in a variety of unique and beautiful designs that are sure to impress.</p>
      <img src="https://makingmusicmag.com/wp-content/uploads/2020/04/Untitled-design.png" alt="Feature 3">
    </div>
  </section>

  <section id="pricing">
    <h2>Pricing</h2>
    <p>Choose from our selection of high-quality ocarinas:</p>
    <div class="price-item">
      <img class="Selling" src="https://i.ebayimg.com/images/g/GzUAAOxy1VlRE1~O/s-l500.jpg" alt="Product 1">
      <h3>Classic Ocarina</h3>
      <p class="price">$49.99</p>
      <a class="button" href="#">Add to Cart</a>
    </div>
    <div class="price-item">
      <img class="Selling" src="https://musiclave.com/wp-content/uploads/2019/09/Ocarinas-en-l%C3%ADnea.jpg" alt="Product 2">
      <h3>Elegant Ocarina</h3>
      <p class="price">$59.99</p>
      <a class="button" href="#">Add to Cart</a>
    </div>
    <div class="price-item">
      <img class="Selling" src="https://http2.mlstatic.com/D_NQ_NP_899374-CBT46229448466_062021-O.jpg" alt="Product 3">
      <h3>Collectors Ocarina<h3>
          <p class="price">$89.99</p>
          <a class="button" href="#">Add to Cart</a>
    </div>
  </section>

  <section id="video">
  <h2>Product Video</h2>
  <iframe id="video" src="https://www.youtube.com/embed/5i4N5PXP3Bk" frameborder="0" allowfullscreen></iframe>
</section>

  <section id="contact">
    <h2>Contact Us</h2>
    <p>Sign up for our newsletter to stay up-to-date on our latest products and offers:</p>
    <form id="form" action="https://www.freecodecamp.com/email-submit">
      <label for="email">Email:</label>
      <input type="email" id="email" name="email" placeholder="Enter your email address" required>
      <input type="submit" id="submit" value="Subscribe">
    </form>
  </section>

  <footer>
    <p>Handcrafted Ocarinas &copy; 2023</p>
  </footer>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0

Challenge: Product Landing Page - Build a Product Landing Page

Link to the challenge:

Id’s need to be unique. The section element and the iframe can’t both have an id of “video”. This is definitely throwing the tests off.

1 Like

Wow that was a quick fix thank you so much! :smile:

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