Tell us what’s happening:
My middle section doesn’t seem to work. I copy and pasted the code from each section so there should be no discrepancies.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Video Compilation Page</title>
</head>
<body>
<main>
<h1>Best Dirt Bikes</h1>
<p>Listed are the top three best dirt bikes one can buy</p>
<section>
<h2>KTM</h2>
<p>Quite possibly the best off road bike ever made</p>
<iframe
src="https://www.youtube.com/watch?v=IdztjmkDZJ0"
title="KTM XC 300 VS XCW 300"
height="350"
width="450"
</iframe>
</section>
<section>
<h2>YAMAHA</h2>
<p>One of the most bullet proof bikes money can buy</p>
<iframe
src="https://www.youtube.com/watch?v=F4uc180MDq4"
title="YZ450Fx"
height="350"
width="450"
</iframe>
</section>
<section>
<h2>HONDA</h2>
<p>Built for performance</p>
<iframe
src="https://www.youtube.com/watch?v=tUv3GFLh_yg"
title="CRF450X"
height="350"
width="450"
</iframe>
</section>
</main>
</body>
</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.5 Safari/605.1.15
Challenge Information:
Build a Video Compilation Page - Build a Video Compilation Page