You should have a paragraph introducing the topic of your page below your h1 element (Build a Video Compilation Page)

Tell us what’s happening:

Error keeps saying only thing I’m missing is a paragraph beneath h1, but I have one there, paragraph elements are pretty uncomplicated when it’s just a line of text, I don’t see what I could possible be missing. Any help is appreciated!

Your code so far

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

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

<body>
<main>
    <h1>Song<h1>
    <p>on repeat</p>
    <section>
        <h2>sombr - Homewrecker</h2>
        <p>(Lyrics)</p>
        <iframe src="https://www.youtube.com/watch?v=9hpzy3SniTU"
        title="sombr - Homewrecker (Lyrics)"
        height="225"
        width="400">
        </iframe>
    </section>
    <section>
        <h2>sombr - Homewrecker</h2>
        <p>(Lyrics)</p>
        <iframe src="https://www.youtube.com/watch?v=9hpzy3SniTU"
        title="sombr - Homewrecker (Lyrics)"
        height="225"
        width="400">
        </iframe>
    </section>
    <section>
        <h2>sombr - Homewrecker</h2>
        <p>(Lyrics)</p>
        <iframe src="https://www.youtube.com/watch?v=9hpzy3SniTU"
        title="sombr - Homewrecker (Lyrics)"
        height="225"
        width="400">
        </iframe>
    </section>
</main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36

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

look very very very carefully at your h1 element. Something is missing…

oh my god i feel so stupid :skull: I was so busy obsessing over the paragraph element bc that’s what the error was focusing on that I didn’t even think to check the h1

tyvm