Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

my second video is not showing up in the preview. i have read all forums, refreshed, restarted pc and came back to do it again but still cant find my mistakes yet. please help, thank youu

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Video Compilation Page</title>
</head>

<body>
    <main>
        <h1>VIDEO TUTORIALS</h1>
        <p>Your go to tutorial videos</p>

        <section>
            <h2>Build your first AI agent in under 23 minutes</h2>
            <p>Learn how to build your first AI Agent</p>
            <iframe
              src="https://www.youtube.com/embed/aJ2P9i3tBRk"
              title="Build AI Agent"
              height="300"
              width="400"
              </iframe>
        </section>

        <section>
            <h2>EASIEST way to build apps with AI</h2>
            <p>learn the easiest way to build apps with AI</p>
            <iframe
              src="https://www.youtube.com/embed/ru8XPZbumNo"
              title="build apps with Ai"
              height="300"
              width="400"
              </iframe>
        </section>

        <section>
            <h2>I Built a 2D Shooting Game Using AI</h2>
            <p>Learn how to build a 2d shooting game with AI</p>
            <iframe
                src="https://www.youtube.com/embed/Is1AnqCPY2U"
                title="2d shooting game"
                height="300"
                width="400"
                </iframe>
        </section>
        </main>

</body>

</html>

Your browser information:

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

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Hi @nozhmgn and welcome to our community!

You haven’t closed off your iframe opening tags with a closing angle bracket (>).
Fix that and your code should pass.