hay guys how to add a video in my html site ? and how to create more interactive and good looking site without using flash !
Use embed tag to add video file example <embed src="filename.mpg" width=300 height=300 autostart=true>
yeah, you can use the code as belown: <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="482" height="314" align="middle"> <param name="allowScriptAccess" value="sameDomain"> <param name="movie" value="girls_generation_live_location_edition.swf"> <param name="quality" value="high"> <param name="bgcolor" value="#ffffff"> <param name="allowFullScreen" value="true"> <embed src="girls_generation_live_location_edition.swf" quality="high" align="middle" bgcolor="#ffffff" width="482" height="314" allowFullScreen="true" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> </object> I have use this method to create a video share website: http://video.vxworks6.com
This is the right code. Your site can be looks good without the Flash. Choose the best color scheme, Font Style. You can also use the Marque Tag.
here is exact code <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="" height=""> <param name="movie" value=""> <param name="quality" value="high"> <embed src="" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="748" height="200" style="margin-left:-21px; margin-bottom:8px;"></embed></object>
The latest version of HTML is very easy to embed videos,the <video> tag makes its simple example <video src="/video/pass-countdown.ogg" width="300" height="150" controls> </video>
I hope below code is helpful to you !!!! <video src="/video/pass-countdown.ogg" width="200" height="100" controls></video>
go to youtube then click embed,copy the code,replace the url inside src="" with your new video link then your good to go
I agree with flingstick, youtube embed if you don't know html... or dreamweaver... but if you are doing html you need to be up to date on html5 and that requires videos in 3 different codecs to work. so I would say embed would be easiest for you