The question i got wrong was " * 8. Each section
element should contain an iframe
element as its third child."
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Video Compilation Page</title>
</head>
<body>
<main>
<h1>Videos</h1>
<p>This Site will shows case diffirent code languages!</p>
<section>
<h2>HTML</h2>
<p>HTML is a markup language used to create static web pages and web applications</p2><iframe src="https://youtube.com/embed/ftX8A85chOw?si=TImFEZV1NlMzqTc7"
title="HTML"
height=400
width=700>
</iframe>
</section>
<section>
<h2>CSS</h2>
<p>CSS is a style sheet language responsible for the presentation of documents written in a markup language</p2><iframe src="https://youtube.com/embed/XPv4EeB0PJ8?si=Wwk-Stv0A3SPMRbo"
title="CSS"
height=400
width=700>
</iframe>
</section>
<section>
<h2>Javascript</h2>
<p>JavaScript is a versatile programming language primarily used to make web pages dynamic and interactive. It's a core component of web development, alongside HTML and CSS, and can also be used for server-side applications and beyond.</p2><iframe src="https://youtube.com/embed/wm4F0Zqxu5A"
title="Javascript"
height=400
width=700>
</iframe>
</section>
</main>
</body>
</html>