Product Landing Page iframe or video element with id of video

Tell us what’s happening:
i need help i builded the project as needed and they still ask me for a video or iframe element that has an id of video but i already have one

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
    <title>Original Trombones</title>
</head>
<body>
    <header id="header">
        <div class="logo">
            <img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png" alt="logo" id="header-img">
        </div>
        <nav id="nav-bar">
            <ul style="list-style: none;">
                <li><a href="#pricing" class="nav-link">Pricing</a></li>
                <li><a href="#video" class="nav-link">How It Works</a></li>
                <li><a href="#submit" class="nav-link">Features</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <form action="https://www.freecodecamp.com/email-submit" id="form">
            <h2>Handcrafted, home-made masterpieces</h2><br>
            <input type="email" name="email" placeholder="Enter your email address" id="email" required><br><br>
            <input type="submit" class="submit" value="GET STARTED" id="submit" />
        </form>
        <div class="features">
            <ul style="list-style: none;">
                <li>
                    <i class="fa fa-3x fa-fire"></i>
                    <h2>Premium Materials</h2>
                    <p>Our trombones use the shiniest brass which is sourced locally. This will increase the longevity of your purchase.</p>
                </li>
                <li>
                    <i class="fa fa-3x fa-truck"></i>
                    <h2>Fast Shipping</h2>
                    <p>We make sure you recieve your trombone as soon as we have finished making it. We also provide free returns if you are not satisfied.</p>
                </li>
                <li>
                    <i class="fa fa-3x fa-battery-full"></i>
                    <h2>Quality Assurance</h2>
                    <p>For every purchase you make, we will ensure there are no damages or faults and we will check and test the pitch of your <span id="video">instrument.</span></p>
                </li>
            </ul>
        </div>
        <div class="video">
            <iframe width="500" height="315"
            src="https://www.youtube.com/embed/tgbNymZ7vqY" id="video">
            </iframe>
        </div>
        <div class="boxes" id="pricing">
            <div class="product">
                <div class="level">TENOR TROMBONE</div>
                <h2>$600</h2>
                <ol style="list-style: none;">
                    <li>Lorem ipsum.</li>
                    <li>Lorem ipsum.</li>
                    <li>Lorem ipsum dolor.</li>
                    <li>Lorem ipsum.</li>
                </ol>
                <button class="btn">SELECT</button>
            </div>
            <div class="product">
                <div class="level">BASS TROMBONE</div>
                <h2>$900</h2>
                <ol style="list-style: none;">
                    <li>Lorem ipsum.</li>
                    <li>Lorem ipsum.</li>
                    <li>Lorem ipsum dolor.</li>
                    <li>Lorem ipsum.</li>
                </ol>
                <button class="btn">SELECT</button>
            </div>
            <div class="product">
                <div class="level">VALVE TROMBONE</div>
                <h2>$1200</h2>
                <ol style="list-style: none;">
                    <li>Plays similar to a Trumpet</li>
                    <li>Great for Jazz Bands</li>
                    <li>Lorem ipsum dolor.</li>
                    <li>Lorem ipsum.</li>
                </ol>
                <button class="btn">SELECT</button>
            </div>
        </div>
    </main>
    <footer>
        <div class="sss">
            <ul style="list-style: none;">
                <li><a href="#">Privacy</a></li>
                <li><a href="#">Terms</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
            <span>Copyright 2016, Original Trombones</span>
        </div>
    </footer>
</body>
</html>

Your browser information:

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

Challenge: Build a Product Landing Page

Link to the challenge:

HI @moussaahmadnahe1 !

Ids have to be unique.

You have two ids of video

Here’s one

<span id="video">instrument.</span>

Here is another

 <iframe width="500" height="315"
            src="https://www.youtube.com/embed/tgbNymZ7vqY" id="video">
1 Like

oh thank u so much i didn’t noticed that :rose:

1 Like

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