HTML5 introduced a new tag for videos. To insert a video into your web page you can now do this:
<VIDEO SRC=”your_video.mp4″></VIDEO>
This simplifies things greatly, as previously you had to use the OBJECT and PARAM tags. Even with a YouTube video that code would look messy:
<object width=”” height=””>
<param name=”movie” value=”http://www.youtube.com/v/your_ref”></param>
<param name=”allowFullScreen” value=”true”></param>
<param name=”allowscriptaccess” value=”always”></param>
<embed src=”http://www.youtube.com/v/your_ref_here” type=”application/x-shockwave-flash” allowscriptaccess=”always” allowfullscreen=”true” width=”” height=””></embed>
</object>
<param name=”movie” value=”http://www.youtube.com/v/your_ref”></param>
<param name=”allowFullScreen” value=”true”></param>
<param name=”allowscriptaccess” value=”always”></param>
<embed src=”http://www.youtube.com/v/your_ref_here” type=”application/x-shockwave-flash” allowscriptaccess=”always” allowfullscreen=”true” width=”” height=””></embed>
</object>
No comments:
Post a Comment