Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Not sure why section #2 disappears. All 3 sections to me have the correct code.

Your code so far

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

<head>
    <meta charset="utf-8">
    <title>Video Compilation Page</title>
</head>
<body>
<main>
<h1>Funny Videos to Pass Time</h1>
<p>Enjoy some funny videos </p>
<section>
    <h2> Funny Video #1</h2>
    <p>Enjoy this video about ....</p>
<iframe 
    title="Funny Cats"
    width="560" height="315"
    src="https://www.youtube.com/embed/e1zUC3er-zI?si=3PPvVIztVF3ndY7L"
</iframe>

    </section>
<section>
    <h2>Funny Video #2</h2>
    <p> Enjoy this video about ....</p>
    <iframe 
    title="Funny Cats"
    width="560" height="315"
    src=https://www.youtube.com/embed/9dbssa9AwMw?si=GbszxN9rngFBesjn"
    </iframe>
    </section>
<section>
<h2> Funny Video #3</h2>
<p> Enjoy this video about ....</p>
<iframe 
title="Funny Fails"
width="560" height="315"
src="https://www.youtube.com/embed/H895ijWwtjM?si=jDZQXz176NQN01X4"
    </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/17.6 Safari/605.1.15

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

if you’re unsure if your html is valid, give it a check by pasting it into the HTML validator here

I tried on your behalf and found many errors. So I will suggest you take a look and fix the errors one by one till your code is syntactically correct again.

Thank you, learning to be very detailed.

1 Like