Simple Flash Embed


/ Published in: HTML
Save to your folder(s)

[via rtcrm]

This uses *no javascript* and will still render in IE, Safari, Firefox, and Opera.


Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>Simple Flash Embed</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. </head>
  7. <object type="application/x-shockwave-flash"
  8. data="video_player.swf"
  9. width="640" height="480">
  10. <param name="movie" value="video_player.swf" />
  11. <param name="allowScriptAccess" value="always"/>
  12. <param name="allowFullScreen" value="true"/>
  13. <p>Alternative content -- Can contain any HTML: DIVs, IMGs, etc.</p>
  14. </object>
  15. </body>
  16. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.