Thursday, March 3, 2011

How will you insert an Video Clip into HTML?

This tag allows you to insert a video clip into your web page. The starting tag is <EMBED SRC="URL" WIDTH="XX" HEIGHT="XX" AUTOSTART="VALUE"> and the closing tag is </EMBED>. Nothing goes between the two tags.

URL is replaced with the internet address of the video file. The two XX's are replaced with the desired width and height of the movie and controls. VALUE is replaced with either

TRUE - Movie automatically starts
FALSE - Movie starts when play button is pushed

index.html - Notepad
....<BODY>

<EMBED SRC="video.avi" WIDTH="125" HEIGHT="150" AUTOSTART="FALSE">

</EMBED>

</BODY>....

No comments:

Post a Comment