Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

You should have three section elements below your first p element.
Failed:6. Each section element should start with an h2 element that serves as the title for that section.
Failed:7. Each section element should contain a p element to introduce the video content as its second child.

Your code so far

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

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

<body>
    <main>
        <h1>Beginners Guide to Coding</h1>
        <p>Start your coding journey with zero experience! This beginner-friendly course covers the basics of HTML, CSS, and Python—perfect for building websites, apps, and more. Learn step-by-step, at your own pace, and turn your tech curiosity into real skills.</p>
        

        <section>
            <h2>HTML for Beginners</h2>
            <p>HTML (HyperText Markup Language) is the foundation of every website. It structures content—like text, images, and links—so browsers can display it properly. Think of it as the skeleton of a webpage that gives everything its place.</p>
            <iframe
            src="https://youtu.be/GDGejH3SDNQ"
            title="Html Beginner Friendly"
            height="260"
            width="300"
            allowfullscreen
            </iframe> 
        </section>
            

        <section>
            <h2>CSS for Beginners</h2>
            <p>CSS (Cascading Style Sheets) is what makes websites look good. It controls the layout, colors, fonts, and overall design of your pages. While HTML builds the structure, CSS adds the style—turning plain code into beautiful web pages.</p>
            <iframe
            src="https://youtu.be/OXGznpKZ_sA"
            title="CSS Beginner Friendly"
            height="260"
            width="300"
            allowfullscreen
            </iframe>
        </section>
            

        <section>
        <h2>Javascript Beginner Friendly</h2>
        <p>JavaScript brings websites to life! It's a programming language that adds interactivity—like buttons that click, forms that respond, and animations that move. While HTML structures the page and CSS styles it, JavaScript makes it dynamic and fun.</p>
        <iframe
        src="https://youtu.be/jS4aFq5-91M"
        title="Javascript for Beginners"
        height="260"
        width="300"
        allowfullscreen
        </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/135.0.0.0 Safari/537.36 Edg/135.0.0.0

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

check that all your tags are complete

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

They kept saying theres an error when i think i
everything is right please check if thers any error

Welcome to the forum @sacaababy

The iframe opening tag is missing a closing angular bracket.

Happy coding