Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. HTML5 video tag for Opera Mini
  2. <!DOCTYPE HTML>
  3.  
  4. <html>
  5.  
  6. <h1>Test Page</h1>
  7.  
  8. <body>
  9.  
  10.     <video id="movie" width="320" height="240" preload controls>
  11.  
  12.         <source src="Untitled.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
  13.  
  14.         <source src="iStock_000010231386HD720.ogv" type='video/ogg; codecs="theora, vorbis"'/>
  15.  
  16.         <source src="Untitled.webm" type='video/ogg; codecs="theora, vorbis"'/>
  17.  
  18.     </video>
  19.  
  20. </body>
  21.  
  22. </html>