Home > Article > Web Front-end > Share a simple HTML5 video embedding example code
This is a simple way to embed video in HTML5, which allows you to embed the video quickly
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.php.cn/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>HTML5 Video Demo</title> </head> <body> <p style="width: 667px; margin: 0 auto;"> <video width="667" height="375" controls> <source src="FILE_NAME.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> <source src="FILE_NAME.ogv" type="video/ogg" /> <object width="667" height="375" type="application/x-shockwave-flash" data="FILE_NAME.swf"> <param name="movie" value="FILE_NAME.swf" /> <param name="flashvars" value="controlbar=over&image=PLACEHOLDER_FILE_NAME.jpg&file=FILE_NAME.mp4" /> <img src="PLACEHOLDER_FILE_NAME.jpg" width="250" height="152" alt="ALT_HERE" title="TITLE_HERE" /> </object> </video> </p> </body> </html>
The above is the detailed content of Share a simple HTML5 video embedding example code. For more information, please follow other related articles on the PHP Chinese website!