Tell us what’s happening:
- Your first iframe element should have a src attribute set to a valid video.
I am having the same issue with all 3 of my videos, I have tried to add and delete the /embed in the address, I simply cannot seem to get any videos to load properly, everything else is fine.
Please help so I can continue to learn.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Video Compilation Page</title>
</head>
<body>
<main>
<h1>HTML Skill Videos from FreeCodeCamp</h1>
<p>This page contains a few videos from the HTML portion of the Full Stack Developer course at <a href ="https://www.freecodecamp.org/">freeCodeCamp</a> I am trying to add some of my own flair, adding a horizontal rule under my H1 heading, and adding a link to the website that we are using to study on. While I try my best not to copy, I will be posting the same videos as are shown in the example, as I do not yet know all the rules of posting others content.</p>
<section>
<h2>HTML</h2>
<p>Html is the language that creates the content of a webpage. It uses elements, enclosed in tags and works with CSS and JavaScript to create the finished webpage.</p>
<iframe
source="https://www.youtube.com/embed/watch?v=GDGejH3SDNQ" title="Video on HTML"
height="200"
width="500"></iframe>
</section>
<section>
<h2>CSS</h2>
<p>This video is about CSS or Cascading Style Sheets. It is responsible for a large amount of the presentation, including fonts, colors etc.</p>
<iframe source="https://www.youtube.com/embed/watch?v=OXGznpKZ_sA" title="Video on CSS"
height="200"
width="500"></iframe>
</section>
<section>
<h2>JavaScript</h2>
<p>JavaScript is a highly dynamic computer language program that can help add interactivty and dynamic behaviours to your webpages.</p>
<iframe source="https://www.youtube.com/embed/watch?v=jS4aFq5-91M" title="Video on JavaScript"
height="200"
width="500">
</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/140.0.0.0 Safari/537.36 Edg/140.0.0.0
Challenge Information:
Build a Video Compilation Page - Build a Video Compilation Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-video-compilation-page/build-a-video-compilation-page