Hi, I am having trouble completing the “Build a Video Compilation Page” can someone double check my code? The issues are:
-
Failed:5. You should have three
section
elements below your firstp
element. -
Failed:6. Each
section
element should start with anh2
element that serves as the title for that section. -
Failed:7. Each
section
element should contain ap
element to introduce the video content as its second child. -
Failed:8. Each
section
element should contain aniframe
element as its third child.
But I feel like I answered each question correctly, and it is present in my code.
Thanks,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Video Compilation Page</title>
</head>
<body>
<main>
<h1>The stock Market</h1>
<p>The best trading app</p>
<section>
<h2>How it works</h2>
<p>Trust the process</p>
<iframe src="https://youtube.com/embed/L0nCc6KSb_4?si=5ozW4Uxp9TixTYF8"
title="The stock market"
width="250"
height="150"
</iframe>
</section>
<section>
<h2>How it works</h2>
<p>Trust the process</p>
<iframe src="https://youtube.com/embed/L0nCc6KSb_4?si=5ozW4Uxp9TixTYF8"
title="The stock market"
width="250"
height="150"
</iframe>
</section>
<section>
<h2>How it works</h2>
<p>Trust the Process</p>
<iframe src="https://youtube.com/embed/L0nCc6KSb_4?si=5ozW4Uxp9TixTYF8"
title="The stock market"
width="250"
height="150"
</iframe>
</section>
</main>
</body>
</html>