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 HTML Video and Audio Media Basics The Source Element

problems with type attribute

I am creating video player.the workspace is detecting error in my type attribute. I am following along with the video and have written the code the same way as the instructor has. This is a snip it of my code below.

<video> <source http://treehouse-code-samples.s3.amazonaws.com/html-video-and-audio/bridge.mp4 type="video/mp4" controls > <source http://treehouse-code-samples.s3.amazonaws.com/html-video-and-audio/bridge.ogg type="video/ogg" autoplay > </video>

Any ideas what is wrong?