Tutorials in the browser can play the format is: mov format, avi format.
Link to a video file
The way to make a video file a link:
<a href= "video address" > Video name </A>
For example: Play a video:
<a href= "Welcome.avi" >WINDOWS95</A> WINDOWS95
Automatically load video
As with music playback, we can use the embed tag to play video,
<embed src= "video file Address" >
Properties are:
| src= "FILENAME" |
set file The path |
| If you want the file to be sent out automatically, TRUE is, false is not, the default is False |
| |
| startime= "minutes: SEC" |
setting starts playing , such as 20 seconds after playback is written as startime=00:20 |
| |
| width HEIGHT |
|
Cases:
*************************************
<title> Play Video </title>
<body>
<b><font size=4> Play Video windows95</font></b>
<P>
<embed src= "Welcome.avi" Autostart=false loop=false width=350 height=250>
</P>
</body>