Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Hello, i like to think my test isn’t going through, its saying on step 10 I need the iframe as the 3rd child and that’s what I did but it won’t clear. I tried singing in and out, copying then restarting the test. Could it be possible I’m missing something

Your code so far

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

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

<body>
<main> 
    <h1> Wavy Fitness </h1>
    <p> Fitness never looked so wavy. Come experience the hit classes as well as personalized training to your satiscation  </p>
    
    <section> 
        <h2> Upper Body</h2>
        <p> This video will introduce the trainings we offer to reach your goals</p>  
        <iframe src="https://www.youtube.com/watch?v=D3ibxlPoino" 
        title="Body"
        height="200"
        width="200"> </iframe>
    </section>
    <section> 
        <h2> Legs </h2> 
        <p> This video will introduce the trainings we offer to reach your goals</p>
        <iframe src="https://www.youtube.com/watch?v=D3ibxlPoino" 
        title="Legs"
        height="200"
        width="200"> </iframe>
    </section>
    <section> 
        <h2> Core </h2>
        <p> This video will introduce the trainings we offer to reach your goal<P>    
        <iframe src="https://www.youtube.com/watch?v=D3ibxlPoino"
        title="Core"
        height="200"
        width="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/141.0.0.0 Safari/537.36 Edg/141.0.0.0

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

this is not the correct link to embed a youtube video, when you are on the youtube video page, choose Share, then Embed, and it will give you an iframe element, take the src from there

for the failing test, check carefully the third section, it’s the one making the test fail

1 Like