Ask a Teacher



what is the format to insert video,music & and flash game to an HTML document?

< EMBED > tag is used for placing a video or a sound file in a web page. It is an empty element to be given inside the < BODY > tag. The tag used for embedding any Flash file in an HTML web page is :
< EMBED sec = "MyMovie.swf"
width = "700"
height = "42"
Loop = 10 >

Where,
Sec is an attribute that specifies the sound or the animation file to be embedded.
Width is the width of the embedded file in the HTML document.
Height is the height of the embedded file in the HTML document.
Loop specifies the number of times the audio/video to be executed.


comments powered by Disqus