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 trialJose Reyna
13,532 PointsAdding our own video
Hello,
I know this is a sample project but I wanted to add my own video from Youtube and when I do the video is much smaller and it does not play. Any suggestions?
1 Answer
Matthew Greenberg
8,173 PointsYoutube uses adobe flash to play movies because it supports more formats on more devices. The html video lesson uses the video attribute which is html5 element. To embed a youtube video you use the iframe attribute. Like this.
<iframe width="420" height="315" src="http://www.youtube.com/embed/kfVsfOSbJY0" frameborder="0" allowfullscreen></iframe>
You can read more about the iframe attribute at the mozilla developer site.