Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

  1. Each section element should contain a p element to introduce the video content as its second child.
  2. Each section element should contain an iframe element as its third child.
    I dont know whats the problem here, I tried resetting the lesson, refreshing the page, and doing it in Incognito, but it still did not work.

Your code so far

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

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

<body>
<main>
    <h1>Video Compilation Page</h1>
        <p>Build a Video Compilation Page</p>
        <section>
        <h2>Learn HTML</h>
            <p>Full course for beginners</p>
        <iframe
        title="Full Stack Web Development"
        width="450"
        height="300"
        src="https://youtu.be/kUMe1FH4CHE?si=-nsRVn4UThZ8C0Nd"
        >
        </iframe>
        </section>

        <section>
        <h2>Learn CSS</h2>
            <p>Full course for beginners</p>
        <iframe
        title="Full Stack Web Development"
        width="400"
        height="300"
        src="https://youtu.be/1Rs2ND1ryYc?si=Lb3ZzCoH9mo_WGrr"
        >
        </iframe>
        </section>
        
        <section>
        <h2>Learn JavaScript</h2>
            <p>Full course for beginners </p>
        <iframe
        title="Full Stack Web Development"
        width="450"
        height="300"
        src="https://youtu.be/PkZNo7MFNFg?si=Odb2ukWN0a4t0cc5"
        >
        </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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

this seems something you need to fix

Oh, thank you so much