Perhaps the earthman know how to put video on the web

,but how to achieve it through codes.
Open the html file in Dreamweaver 8. Save the SWF or FLV in the same folder with this file.
Alternatively, you can insert the relative codes in the source file or in the Code section of Dreamweaver.
You can copy and paste the following codes:
<title>your_SWF</title>
<center>
<! — url’s used in the movie — >
<! — text used in the movie — >
<! — saved from url=(0013)about:internet — >
<object classid=“clsid
27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0” width=“320” height=“150”>
<param name=“movie” value=" your_SWF.swf”>
<param name=“quality” value=“high”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“allowFullScreen” value=“True” />
<embed src=" your_SWF.swf” quality=“high” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” width=“320” height=“150” allowScriptAccess=“sameDomain” allowFullScreen=“True”>
</embed>
</object>
</center>
u can change the blacked words “your_SWF” with your own SWF file name, and change the values of width and height.
In the past few years, there are also online WMV videos. How to embed WMV videos to the webpage? The following is the relative codes.
<embed src=“your_video.wmv” width=“500” height=“300” loop=“true” autostart=“ture”></embed>
You can change the your_video.wmv into your own WMV file.
Then, you must upload all the relative files to your server. And what’s more, they should be in the same folder of the server.