Build a Video Compilation Page

Hello,

I am trying to complete this lesson. The lesson keeps “You should have three section elements below your first p element”, which I do. I have researched this for 3 days now, and I can’t figure out where I have messed up. Also, I thought I could use any video from Youtube, but it is not loading.

I am not sure how to post my programming here, but this is what I have:

I can’t get the whole program on the screenshot, but this is a portion of it.

How do I get the sections to be below the first paragraph?

can you share the link to this challenge please?

also please share your code in the post, not as a screenshot

There are two ways you can format your code to make it easier to read and test:

  1. After you copy/paste your code into the editor, select it by dragging your cursor over it then click the (</>) button in the toolbar to automatically wrap your code in backticks. (You can click on the animated demo image below to enlarge it.)

  1. Manually add three backticks on a new line above your code and on a new line after your code. Note that a backtick is NOT the same as a single quote('). To find the backtick key on your keyboard, see this post.

To see changes to your post as you make them, you can click the (M+) button on the toolbar to bring up the rich text editor:

Here is the link:

   <main>

       <h1>Best of 80's Music Videos</h1>

       <p>A compilation of the best 80's music</p>

       <section>

        <h2>80's Legends</h2>

        <p> 80's legends including Michael Jackson and more</p>

        <iframe

         width="250" height="150"

         title=80s legends

         src="https://www.youtube.com/watch?v=VWhWWnKyUzw&list=RDVWhWWnKyUzw&start_radio=1">

       </section>

       <section>

        <h2>80's One hit wonders</h2>

        <p>80's One hit wonders and more</p>

        <iframe

         width="250" height="150"

         title=80s One Hit Wonders

         src="https://www.youtube.com/watch?v=aARvL-WBqn8&list=RDaARvL-WBqn8&start_radio=1">

       </section>

       <section>

        <h2>80's Mega Hits</h2>

        <p> Best of 80's Mega Hits</p>

        <iframe

         width="250" height="150"

         title=80s Mega Hits

         src="https://www.youtube.com/watch?v=1jhhb1DJjUQ&list=RD1jhhb1DJjUQ&start_radio=1">

       </section> 

    </main>

make sure to close the iframe elements

also you can run your html through a validator like Ready to check - Nu Html Checker