HTML5 Video Tag Support
In my opinion, one of the most impressive new tags in html5 is the video tag, that allows you to include video in your web page as easy as including images, ex:
<video src=”your-movie.ogg” controls=”controls”>
your browser does not support the video tag
</video>
That was the good news, the bad news is that the video tag isn’t supported by the most used browser IE. Html5 video tag is not supported even by the latest version of Internet Explorer – IE 8.
Here’s more info which browsers supports html5 video tag:
| First version that supports html5 video tag | |
| IE | not implemented in IE 8
Hopefully, it will be implemented in IE 9 |
| Firefox | 3.1 |
| Chrome | 3.0.182.2 |
| Opera | 9.52 |
| Safari | 3.1 |
If your browser supports html5 video tag, you can view demo of this tag in action HERE.
