Build a Video Compilation Page - Build a Video Compilation Page

Conte-nos o que está acontecendo:

I’ve checked several times but I can’t find what’s wrong.

Seu código até o momento

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

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

<body>
<main>
 <h1>The Best Youtuber</h1>
 <p>Juliano Barros, better known as "Jazzghost" is considered by many to be the best content creator in Brazil. Let's take a look at some of his best videos?</p>
 <section>
   <h2>MINECRAFT ICE AND FIRE - THE MOVIE</h2>
   <p>The video "Minecraft Ice and Fire - The Movie" is the most viewed video on his channel, with 22M views and it is also a very good and funny video.</p>
   <iframe src="https://www.youtube.com/watch?v=QqurxeRBWXI"
   Title="MINECRAFT ICE AND FIRE - THE MOVIE"
   height="320"
   width="540">
   </iframe>
</section>
 <section>
    <h2>THE WORST WAY TO TAKE A BATH! - Bath Simulator</h2>
    <p>In this video, Jazzghost plays a bath simulator...that's right, but it's also a video worth watching.</p>
    <iframe src="https://www.youtube.com/watch?v=C6yNrN8DHTc"
    Title="THE WORST WAY TO TAKE A BATH! - Bath Simulator"
    height="320"
    width="540">
    </iframe>
</section>
 <section>
     <h2>THE TOY FACTORY IS COMPLETELY GRIM! - Poppy Playtime Chapter 3</h2>
     <p>Well, here he plays the famous Poppy Playtime chapter 3, where he faces Cat Nap and his devil's minions.
     <iframe src="https://www.youtube.com/watch?v=BokK9Ux3ZZU&pp=0gcJCX4JAYcqIYzv"
     Title="THE TOY FACTORY IS COMPLETELY GRIM! - Poppy Playtime Chapter 3"
    height="320"
    width="540">
    </iframe>
</section>
</main>
</body>

</html>

Informações do seu navegador:

Agente de usuário: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Informações do desafio:

Build a Video Compilation Page - Build a Video Compilation Page

hello querstooz7 there 3 errors in ur code:

  1. Use ‘embed’ URLs: Replace watch?v= with embed/ for proper video embedding.
  • Original: https://www.youtube.com/watch?v=QqurxeRBWXI
  • Embedded: https://www.youtube.com/embed/QqurxeRBWXI
  1. Close your <p> tags: One <p> tag was left unclosed inside the third section — this is fixed.

  2. Avoid extra query strings like &pp=0gcJCX4JAYcqIYzv in embed URLs — they’re not needed for the embed version and might break it.

Try to post in english cuz not all knows ur language.
try to analyse and debug code as many times as possible.

this is the Portuguese section of the forum

one of your p elements is missing the closing tag, if you fix that it should pass the tests

but if you want the videos to show you need to follow instructions from @bharath30020103