Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Corey Leveen
Corey Leveen
3,301 Points

Can't get YouTube video embedding to show video in browser

Following the HTML Deepdive, I've tried to emulate the embedding of a YouTube video - but nothing is appearing in my browser. When I right-click the space where it should be, it says Movie not loaded. Here's my code:

<!DOCTYPE html> 
<html lang="en">
<head>
<meta charset="utf-8">
<title>My page</title>
</head>
<body>
    <object width="560" height="315"><param name="movie" value="//www.youtube.com/v/ZUAg51kA42M?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="//www.youtube.com/v/ZUAg51kA42M?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="560" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</body>
</html>

Thank you!

2 Answers

Steve Linn
Steve Linn
11,841 Points

check your <embed src> You have

<img src="//www.youtube.com/v/ZUAg51kA42M?version=3&amp;hl=en_US">

you should have

<img src="http://www.youtube.com/v/ZUAg51kA42M?version=3&amp;hl=en_US">
Corey Leveen
Corey Leveen
3,301 Points

Thanks that worked! I wonder why Youtube gave me the embed code that was incorrect?

Thanks Steve! Fixed the problem for me too.

The video loads fine for me on Chrome. I could not see the video on Safari since I did not have the proper plugin. What browser were you using?

Corey Leveen
Corey Leveen
3,301 Points

Was using Chrome also