📅  最后修改于: 2023-12-03 15:15:43.971000             🧑  作者: Mango
<embed>
标签HTML <embed>
标签用于嵌入外部资源,如图像、音频、视频、PDF 等,并以内嵌的形式显示在网页上。
<embed src="URL" type="MIME_type" width="px" height="px">
src
:指定嵌入资源的URL。type
:指定嵌入资源的MIME类型。width
:指定嵌入对象的宽度。height
:指定嵌入对象的高度。<embed src="example.jpg" type="image/jpeg">
<embed src="example.mp3" type="audio/mpeg">
<embed src="example.mp4" type="video/mp4">
<embed src="example.pdf" type="application/pdf" width="500" height="600">
<embed>
标签是非标准的HTML,它的使用可移植性较差。<img>
、<audio>
、<video>
。