<img />,主要用于图片的显示,其中 src 属性是图片的地址<video> </video>,主要用于视频的显示,其中 src 属性是视频的地址<imgsrc="demo.png"/>
<videosrc="demo.mp4"></video>新建 html 文件 09-media.html,编写下方程序,运行看看效果吧
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>Image和video</title>
</head>
<body>
<imgstyle="width:200px; height:100px;"src="./media/picture.jpg"/>
<videostyle="width:400px; height:200px;"src="./media/game.mp4"controls></video>
</body>
</html>