Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Hey,

I have two questions.

First, it does not approve on the following task “8. Each section element should contain an iframe element as its third child.” As I Can see they are so what have I missed?

Secondly, when playing the videos linked on my music page it occurs an error. Why is that? This wasn’t part of the test but would be cool if I could make it work. Thanks!:slight_smile:

Your code so far

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

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

<body>
<main name="description" content="this is a page where you can find good music">
</body>

  <h1>Jazz and other great music</h1>
  <p>Watch and explore great music in the styles of Jazz, blues, RnB, Soul and pop!</p> 

<section>
    <h2>Isaiah Sharkey</h2>
    <p>This is from a consert of the great gitarist Isaiah Sharkey! Enjoy!<p>
    <iframe 
    src="https://www.youtube.com/embed/watch?v=kuAP0mOqgf0"
    title="Isaiah Sharkey"
    height="200"
    width="300"
    allowfullscreen>
    </iframe>
    </section> 

<section>
    <h2>Jon Henriksson</h2>
    <p>Jon Henriksson is a bassist/composer/arranger based in Stockholm. I love his music and bass playing</p>
    <iframe src="https://www.youtube.com/embed/watch?v=AmjKxHqUocg"
    title="Jon Henriksson"
    height="200"
    width="300"
    allowfullscreen></iframe>
</section>

<section>
    <h2>Joshua Redman</h2>
    <p>This clip is from Joshua Redman playing at New port jazz festival back in 1994 with his quartet. The band features Brad Mehldau, Christian McBride and Brian Blade.</p> 
    <iframe src="https://www.youtube.com/embed/watch?v=5mmLpaqokbg"
    title="Joshua Redman"
    height="200"
    width="300"
    allowfullscreen></iframe>
</section> 

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Hi,
Check the p element on your first section. That may have caused the error.
For the videos, I think you’re copying the url of the video. Try clicking the share button on the video page, and copy that link. It’s usually different than the video url.
Good luck!