Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Points 5,6,7 and 8 are my problems and i dont know what to do.

Your code so far

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

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

<body>
<main>
    <h1>Michael Jackson</h1>
    <p>The Greatest</p>

    <section>
<h2>Biography</h2>
<p>Michael Joseph Jackson was an American singer, songwriter, dancer, and philanthropist. Dubbed the "King of Pop", he is regarded as one of the most culturally significant figures of the 20th century.</p>
</section>

<section>
<h2<Smooth Criminal/h2>
<p>Music Video</p>
<iframe
  src="https://youtube.com/embed/h_D3VFfhvs4?si=ndCbo6v0XG3mht8I"
  title="Smooth Criminal"
  width="500"
  height="300"

></iframe>
</section>

<section>
<h2>Dirty Diana</h2>
<p>Music Video</p>
<iframe
  src="https://youtube.com/embed/yUi_S6YWjZw?si=wPwbeE2qVGUmnCMp"
  title="the master"
  width="500"
  height="285"

></iframe>
</section>

<section>
<h2>They Dont Care About Us</h2>
<p>Music Video</p>
<iframe
  title='the king'
  width="425"
  height="350"
  src="https://youtube.com/embed/QNJL6nfu__Q?si=W3G0LObMti-boJQj"

></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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

What are points 5, 6, 7, and 8? Which specific lines of code do you think should handle those points?

hi and welcome to the forum!

Step 1 is to make sure your html code is valid.
To do that, copy your code into an online HTML validator like the one below

Once you’ve done that and clicked Check, it will show you the errors in your code.
You should go through the error messages and fix your code until the Check button does not print out any errors. Then put the corrected code back into the fCC editor and see if that helps at all or not.

These are the points

Does not work, i check the html and its fine

Not fine. Didn’t the validator catch this?

Also, you have four section elements, not three, and one does not contain an iframe element.

Thx i found the problem

You forgot to say which specific lines of code you thought met those requirements