Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

FNU Christian
5,549 PointsEmbedded Video doesn't show up
Hello everyone,
Can anyone help me? I am trying to embed this video "Charlie bit my finger" to my index.html page. I am using old embed code, copied from Youtube as below:
<object width="420" height="315"><param name="movie" value="//www.youtube.com/v/_OBlgSz8sSM?hl=en_US&version=3&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="//www.youtube.com/v/_OBlgSz8sSM?hl=en_US&version=3&rel=0" type="application/x-shockwave-flash" width="420" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>
However, when I refreshed my page, it doesn't show the video. Anything is wrong here?
My index.html is located in my hard drive, so I am not using localhost.
Thank you for the help!
1 Answer

James Barnett
39,199 PointsProtocol-less URLs don't work without a web server, so in that case just add http: in front of the URL.
>
The main caveat to keep in mind when using the protocol-less reference is that it will fail on pages loaded via file:/// (i.e. HTML pages you load directly from disk to your browser). So, do be sure to include the http: protocol in the URL if you happen to be developing without a web server at all, but don’t worry about omitting it otherwise.
source: http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/
FNU Christian
5,549 PointsFNU Christian
5,549 PointsThank you James! It worked.
Thanks for the explanation!!