Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

I need help checking my code. My second section element is not showing up on my preview. I have tried enabling dark mode and tried restarting twice now, but I still don’t understand what might be wrong. Do help me please

Your code so far

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

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

<body>
<main>
    <h1>Learning to Code</h1>
    <p>You will now learn different coding methods which are HTML, CSS, JavaScript. Enjoy!!</p>
    
    <section>
        <h2>HTML</h2>
        <p>The first method is HTML you will now see a video which is a beginner guide to this method</p>
        <iframe
          src="https://www.youtube.com/embed/qz0aGYrrlhU"
          title="beginner guide to HTML" 
          width="560" 
          height="316"
            </iframe>
            </section>

<section>
    <h2>CSS</h2>
    <p>You will now learn CSS. A video is providered which is a beginner guide to CSS</p>
  <iframe
     src="https://www.youtube.com/embed/tfzGsCxutWk&t=149s"
     title="beginner guide to CSS"
     width="560"
     height="316"
     </iframe>
        </section>
        <section>
            <h2>JavaScript</h2>
            <p>Now its time for JavaScript</p>
            <iframe
            src="https://www.youtube.com/embed/tfzGsCxutWk&t=149s"
            title="beginner guide to javascript"
            width="560"
            height="316"
            </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/151.0.0.0 Safari/537.36 Edg/151.0.0.0

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-video-compilation-page/669e81368e52b3a5c35a2dc5.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @realebogaleticia,

Do you see the red bracket on the opening tag of each of your iframe elements? The editor is trying to tell you that something is wrong there.

Are your opening iframe tags properly formed?

Until you are more comfortable with HTML, you may want to use this HTML Validator.

Happy coding

Thank You. I will do so :slightly_smiling_face: