HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLタグ


タグは、HTMLドキュメントに外部アプリケーションを含めるために使用されます。

以下は属性です-

  • 高さ: 埋め込まれたコンテンツの高さ(ピクセル単位)です。
  • src :埋め込む外部ファイルのアドレス、つまりURLを記載します。
  • タイプ :埋め込まれたコンテンツのメディアタイプを指定するのはメディアタイプです
  • 幅: 埋め込まれたコンテンツの幅(ピクセル単位)です

ここで、HTMLにタグを実装する例を見てみましょう-

<!DOCTYPE html>
<html>
<body>
<h2>CSS Demonstrating Application</h2>
   <embed src="https://www.tutorialspoint.com/flex/samples/CSSApplication.swf" height="400" width="600">
</body>
</html>

出力

HTML embed タグ

上記の例では、要素-

を使用しています。
<embed src="https://www.tutorialspoint.com/flex/samples/CSSApplication.swf" height="400" width="600">

embed要素のsrc属性の下に、.srfファイルの形式で外部アプリケーションを設定しました-

https://www.tutorialspoint.com/flex/samples/CSSApplication.swf

  1. HTML<dl>タグ

    HTMLのdl要素は、説明リストを定義するために使用されます。 HTML5では、は説明リストを定義するために使用されますが、HTML4ではは定義リストを定義します。 タグ-を実装する例を見てみましょう 例 <!DOCTYPE html> <html> <body> <h2>Sports</h2> <dl>    <dt>Football</dt>       <dd>It is played by 250 million players

  2. HTML<dfn>タグ

    HTMLのタグは、HTMLの用語のインスタンスを定義するために使用されます。これは、用語の最初の使用法です。 タグ-を実装する例を見てみましょう。 例 <!DOCTYPE html> <html> <body> <h2>Subjects in MCA</h2> <p><dfn title="Master of Computer Applications">MCA</dfn> is a 3-year post graduate degree course </p> &