embed

<embed> 要素は、プラグインを要するデータを埋め込むために使用します。src 属性またはtype 属性、あるいはその両方がセットされている必要があります。代わりに<object> 要素を使用して同等の機能を提供することができます。

カテゴリー
フロー・コンテンツ、パルパブル・コンテンツ、フレージング・コンテンツ、埋め込みコンテンツ、インタラクティブ・コンテンツ
配置場所
埋め込みコンテンツが置ける場所。
内容
なし(空要素)
属性
src="URL"
ソースのURLを指定します。
type="MIMEタイプ"
type 属性が指定されている場合、インスタンス化するプラグイン選択のためにソースのMIMEタイプを指定します。src 属性によって指定されたリソースの明示的な Content-Type のメタデータと同じ型を指定する必要があります。
width=""
表示させるコンテンツの幅をピクセル数で指定します。
height="高さ"
その他任意の属性=""
プラグインへのパラメータとして、name 属性align 属性hspace 属性を除く名前空間のない属性を指定できます。
<embed src="catgame.swf" quality="high">
グローバル属性

accesskey, autocapitalize, autofocus, class, contenteditable, data-*, dir, draggable, enterkeyhint, hidden, id, inputmode, is, itemid, itemprop, itemref, itemscope, itemtype, lang, nonce, spellcheck, style, tabindex, title, translate

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>HTML5 › embed</title>
</head>
<body>
<h1>HTML5 › embed</h1>
<embed src="catgame.swf" quality="high" width="640" height="360">
</body>
</html>