Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

I can’t find my mistake. 1 of sections is not displaying

Your code so far

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

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

<body>
    <main>
        <h1>TOPIC OF PAGE</h1>
        <p>Paragraph explaing what this page is.</p>
        <section>
            <h2>Heading 1</h2>
            <p>Paragraph 1</p>
            <iframe
            src="https://www.youtube.com/embed/OXGznpKZ_sA"
            width="550"
            height="300"
            title="video of thing 1"
            </iframe>
        </section>
        <section>
            <h2>Heading 2</h2>
            <p>Paragraph 2</p>
            <iframe
            src="https://www.youtube.com/embed/jS4aFq5-91M"
            width="550"
            height="300"
            title="video of thing 2"
            </iframe>
        </section>
        <section>
            <h2>Heading 3</h2>
            <p>Paragraph 3</p>
            <iframe
            src="https://www.youtube.com/embed/GDGejH3SDNQ"
            width="550"
            height="300"
            title="video of thing 3"
            </iframe>
        </section>
        
    </main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Hi. You don’t have closing tags on 2 of your iframe elements. Sort that and it should pass.