Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Please I don’t know what am doing it keeps showing that am not passing the test and I don’t know where am wrong

Your code so far

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

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

<body>
    <main>
        <h1>Different cooking recipe video</h1>
        <p>how to make different recipes with it own unique style</p>

 <section>
    <h2>how to make spaghetti</h2>   
    <p>how to make tasty mouth watering spaghetti</p>  
    <iframe
     src="https://youtube.com/embed/PoNZSSqjRvo?si=GbDB7tRt1-Fmxx6q"
     tittle="how to make spaghetti"
     height="300"
     width="500" 
    ></iframe>
 </section>

 <section>
     <h2>how to make pancakes</h2>
     <p>step by step ways to make fluffy milky pancakes</p>
      <iframe src="https://youtube.com/embed/FLd00Bx4tOk?si=oBfRb9npn1kRF3aY"  
      title="a video on how to make homemade fluffy pancakes" 
      height="300" 
      width="500" 
      ></iframe>
 </section>
 
 <section>
     <h2>how to make jollof rice</p>
     <iframe src="https://youtube.com/embed/EfZEArZcfAY?si=9rGj4pNa9jC9hW3m" 
     title="a video on how to make Nigeria party jollof" 
     height="300"
     width="500" 
     ></iframe>
 </section>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

If that’s your complete HTML code, then you are missing three closing tags.