Click here to Skip to main content
15,888,984 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to display video in IE 6.0 with all controls like play,pause,volume and full-screen,using <embed> tag.Any Solution?
Posted
Updated 8-Oct-14 22:49pm
v2

1 solution

try this
HTML
<video controls="">
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</source></source></video>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900