Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

need help knowing what is wrong with this code. it says my section element is wrong

Your code so far

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

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

<body>
<main>
 <h1>Video Compliation Page </h1>   
 <p> This is a page that tells you how to effectively compile your videos as a content creator </p>
 <section>
     <h2>  Compiling Tik Tok Videos</h2>
     <p> This is how you create content to get views as a creator:</p>
     <iframe 
 src="https://youtu.be/cZX63GijH2E?si=WGQtkYANKrl_GjuA"
 width="550"
 height="200"
 title="Tik Tok"
 </iframe>
 </section>
 <section>
    <h2> Compiling Facebook Videos</h2> 
  <p>  This is how you create content to get views as a creator:</p>
  <iframe 
 src="https://youtu.be/-HrfqfDyqCQ?si=huUFA39WTS4qHass"
 width="550"
 height="200"
 title="Facebook"
 </iframe>
 </section>
 <section>
      <h2> Compiling Instagram Videos </h2>
     <p> This is how you create content to get views as a creator:</p>
     <iframe 
 src="https://youtu.be/lQEWAE3sU2w?si=Bt-MJImvAh3Easwm"
 width="550"
 height="200"
 title="Instagram"
 </iframe>
 </section>
</body>
</main>
</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 Edg/143.0.0.0

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Have you correctly closed out the starting tag of your iframe elements?

Thank you so much for the help