type属性

embed要素のtype属性は、ドキュメントへ埋め込むコンテンツのMIMEタイプを指定する属性。

ブラウザ対応

構文

<embed src="URL" type="MIMEタイプ">

MIMEタイプ

embed要素で使うMIMEタイプの一例。

  • application/x-shockwave-flash:Flash
  • audio/midi:MIDI
  • video/mpeg:MPEG
  • video/mp4:MP4
  • video/quicktime:QuickTime
  • application/pdf:PDF
  • application/msexcel:Excel

サンプルコード

<embed src="sample.swf" type="application/x-shockwave-flash">

サンプル

HTMLソースコード

<p>絶対URLで指定: <embed src="http://html5.cyberlab.info/elements/embedded/sample-embed.swf" type="application/x-shockwave-flash" style="vertical-align: middle;"></p>
<p>相対URLで指定: <embed src="sample-embed.swf" type="application/x-shockwave-flash" style="vertical-align: middle;"></p>

実際の表示

絶対URLで指定:

相対URLで指定: