How do i add a video( Windows Media Player etc) to a website?
What is the html script? / Where can i get it from?
Many Thanks
What is the html script? / Where can i get it from?
Many Thanks
| Naif wrote: |
| Quite easy. You have to use the <embed> tag. Here is an example of its use
<embed src="c:/your_movie.avi" loop=true autostart=true height=height_of_your_movie width=width_of_the_movie></embed> Substitute values for the height and width attributes. If the loop attribute is set to true, the movie will loop forever. If autostart is set to true, the movie will start automatically after its finished downloaded where as if its set to false, the viewer has to play it manually by selecting the play button. There are some more optional attributes to the <embed> tag like align etc. |