Tell us what’s happening:
something is wrong with the three section elements below my first p element. it says each section should have an h2 element that serves as a title for that section. each section should contain a p element. each sectoin element should contain an iframe element as its third child. im sure i have done all of this correctly but its still not passing. Would someone want to help?
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Video Compilation Page</title>
</head>
<body>
<main>
<h1>This is a video compilation page</h1>
<p>funny cat videos</p>
<section>
<h2>this video is funny</h2>
<p>these silly cats go crazy</p>
<iframe
src="https://www.youtube.com/embed/PkZNo7MFNFg?si=-UBVIUNM3csdeiWF"
title="Silliest CATS on EARTH funny cats videos 2023"
height="315"
width="560"
</iframe>
</section>
<section>
<h2>This video is wild</h2>
<p>watch the funniest animal video ever</p>
<iframe
src="https://www.youtube.com/embed/PkZNo7MFNFg?si=-UBVIUNM3csdeiWF"
title="Funniest animal videos ever (part 1)"
height="315"
width="560"
</iframe>
</section>
<section>
<h2>The Best Of The Best</h2>
<p>You WILL laugh at this funny</p>
<iframe
src="https://www.youtube.com/embed/PkZNo7MFNFg?si=-UBVIUNM3csdeiWF"
title="the Best Of The Internet (2024)"
height="315"
width="560"
</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/135.0.0.0 Safari/537.36 Edg/135.0.0.0
Challenge Information:
Build a Video Compilation Page - Build a Video Compilation Page