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

HTMLタグ


HTMLのタグは、作品のタイトルを設定するために使用されます。これは、映画のタイトル、曲のタイトル、絵画のタイトルなどです。

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

<!DOCTYPE html>
<html>
<body>
   <h1>Books</h1>
   <h2>Java</h2>
   <p>Refer the following books to learn Core Java:</p>
   <p><cite>Core Java: An Integrated Approach</cite> by R. Nageswara Rao.</p>
   <p><cite>Java - The Complete Reference</cite> by Herbert Schildt.</p>
   <h2>AngularJS</h2>
   <p>Refer the following books to learn AngularJS:</p>
   <p><cite>Pro AngularJS</cite> by Adam Freeman</p>
   <p><cite>Learning AngularJS: A Guide to AngularJS Development</cite> by Ken Williamson</p>
</body>
</html>

出力

HTML cite タグ

上記の例では、引用タグを使用して作品のタイトルを設定しています-

<h2>Java</h2>
<p>Refer the following books to learn Core Java:</p>
<p><cite>Core Java: An Integrated Approach</cite> by R. Nageswara Rao.</p>
<p><cite>Java - The Complete Reference</cite> by Herbert Schildt.</p>

ご覧のとおり、本のタイトルは

を使用して設定されています。
<cite>Core Java: An Integrated Approach</cite> by R. Nageswara Rao

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