Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Why did i need to write the second and third <section> twice for the code to work? If those two weren’t written twice the code didn’t work, the videos nor the text from the <h1> and <p> didn’t show up on the preview and i couldn’t pass the test either.

Your code so far

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

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

<body>
<main> 
    <h1>Three Minecraft Games</h1>
    <p>These are the three most important games in the games franchise</p>
    <section> 
        <h2>Minecraft Java Edition</h2>
        <p>This is the first game to be releasead in it's franchise but the second in the timeline of the story itself. It is the main game and it's created by Notch</p>
        <iframe
        src="https://www.youtube.com/embed/r6Ja2ZxWbRE" 
        title="Minecraft Java Edition"
        muted
        controls
        allowfullscreen
        width="425"
        height="285
        ></iframe>"
    </section>

    <section>
        <h2>Minecraft Legends</h2>
        <p>Minecraft Legends is the 3rd game to be released on April 18th 2023 and it's the first game in the timeline</p>
        <iframe
        src="https://www.youtube.com/embed/oh2pvWTSJp0"
        title="Minecraft Legends"
        muted
        controls
        allowfullscreen
        width="425"
        height="285
        ></iframe>"
        </section>

            <section>
        <h2>Minecraft Dungeons</h2>
        <p>Minecraft Dungeons is the second game to be released on May 26th 2020 and it's the third one in the timeline</p>
        <iframe
        src="https://www.youtube.com/embed/KCbE47v1qVk"
        title="Minecraft Dungeons"
        muted
        controls
        allowfullscreen
        width="425"
        height="285
        ></iframe>"
        </section>

        <section>
        <h2>Minecraft Legends</h2>
        <p>Minecraft Legends is the 3rd game to be released on April 18th 2023 and it's the first game in the timeline</p>
        <iframe
        src="https://www.youtube.com/embed/oh2pvWTSJp0"
        title="Minecraft Legends"
        muted
        controls
        allowfullscreen
        width="425"
        height="285
        ></iframe>"
        </section>

        <section>
        <h2>Minecraft Legends</h2>
        <p>Minecraft Legends is the 3rd game to be released on April 18th 2023 and it's the first game in the timeline</p>
        <iframe
        src="https://www.youtube.com/embed/oh2pvWTSJp0"
        title="Minecraft Legends"
        muted
        controls
        allowfullscreen
        width="425"
        height="285
        ></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/135.0.0.0 Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

you have errors in this iframe, the same errors repeat in all the others

1 Like

Welcome to the forum @TomaMihai

Syntax highlighting shows the code has a misplaced quote mark.

Happy coding

1 Like