Thursday 3 July 2014

HTML Videos !!


If you want to share your video on your website you must put your video on your Host site.
Playing videos in HTML on your site isn't easy!

Example:

HTML 5 + <object> + <embed>

<video width="320" height="240" controls>
  <source src="video.mp4" type="video/mp4">
  <source src="video.ogg" type="video/ogg">
  <object data="video.mp4" width="320" height="240">
    <embed src="video.swf" width="320" height="240">
  </object>
</video>

HTML Video Using A Hyperlink on your website:

Example:
<a href="video.swf">Play a video file</a>

No comments:

Post a Comment