Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

The Test is saying that step 1 was done incorrectly as well as steps 11 though 20. I don’t see what I’m doing wrong.

Your code so far

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

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

<body>
<maim>
    <h1>Funny Videos</h1>
    <p>top three faverite videos</p>
    <section>
<h2>First Funny Video</h2>
        <p>This is a bucket Dear God!</p>
        <iframe 
        src="https://youtube.com/embed/JmSqorj-EC0?si=IHbdQ0Qd-b44Lzz_" 
        title="team fortres 2 edit"
        width="385"
        height="285"
        </iframe>
    
    </section>
    <section>
<h2>Second Funny Video</h2>
<p>Ho Dear It seems to have accidentally done a flip!</p>
<iframe
src="https://youtube.com/embed/IceGrlN6W0k?si=AhM4NkUqQ__78xMq"
title="dog filps over a tenis net"
width="385"
height="200"
</ifeame>
    
    </section>
    <section>
<h2>Third Funny Video</h2>
        <p>your Babby arems are perfect for this:)</p>
        <iframe
        src="https://youtube.com/embed/NFmQQCEiCt4?si=ENqfsPrMl5hQ1FlS"
        title="dad uses baby to pick up remote"
        width="385"
        height="200"
        </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/134.0.0.0 Safari/537.36 OPR/119.0.0.0

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Welcome to the forum @carmellobracero

You have a typo on line 10.

Syntax highlighting is showing some issues with the iframe element.

Happy coding

are there any other problems with my Code? the code tester is saying I don’t have three Section elements, p elements and h2 elements.

 <section>
        <h2>First Funny Video</h2>
        <p>This is a bucket Dear God!</p>
        <iframe 
        src="https://youtube.com/embed/JmSqorj-EC0?si=IHbdQ0Qd-b44Lzz_" 
        title="team fortres 2 edit"
        width="385"
        height="285"
        </iframe>
    
    </section>

Make sure all the tags open and close correctly. Use the color coding to guide your eye.