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

HTML
タグ


HTMLのdl要素は、説明リストを定義するために使用されます。 HTML5では、

は説明リストを定義するために使用されますが、HTML4では
は定義リストを定義します。

タグ-

を実装する例を見てみましょう

<!DOCTYPE html>
<html>
<body>
<h2>Sports</h2>
<dl>
   <dt>Football</dt>
      <dd>It is played by 250 million players in over 200 countries.</dd>
   <dt>Cricket</dt>
      <dd>It is a bat-and-ball game played between two teams of eleven players on a field.</dd>
   <dt>Hockey</dt>
      <dd>There are many types of hockey such as bandy, field hockey, and ice hockey.</dd>
   <dt>Golf</dt>
      <dd>It is a club-and-ball sport in which players use various clubs to hit balls into a series of holes on a course in as few strokes as possible.</dd>
</dl>
</body>
</html>

出力

HTML dl タグ

上記の例では、説明リストを設定するために

を設定しています-

<dl>
   <dt>Football</dt>
      <dd>It is played by 250 million players in over 200 countries.</dd>
   <dt>Cricket</dt>
      <dd>It is a bat-and-ball game played between two teams of eleven players on a field.</dd>
   <dt>Hockey</dt>
      <dd>There are many types of hockey such as bandy, field hockey, and ice hockey.</dd>
   <dt>Golf</dt>
      <dd>It is a club-and-ball sport in which players use various clubs to hit balls into a series of holes on a course in as few strokes as possible.</dd>
</dl>

上記の

要素は定義リストの用語を定義しますが、
も用語を定義しますが、
内にリンク、画像、改行を追加できます。


  1. HTML<embed>タグ

    タグは、HTMLドキュメントに外部アプリケーションを含めるために使用されます。 以下は属性です- 高さ: 埋め込まれたコンテンツの高さ(ピクセル単位)です。 src :埋め込む外部ファイルのアドレス、つまりURLを記載します。 タイプ :埋め込まれたコンテンツのメディアタイプを指定するのはメディアタイプです 幅: 埋め込まれたコンテンツの幅(ピクセル単位)です ここで、HTMLにタグを実装する例を見てみましょう- 例 <!DOCTYPE html> <html> <body> <h2>CSS Demonstrating Appl

  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> &