HTMLタグ
HTMLのblockquoteタグは、別のソースから引用されたセクションを設定するために使用されます。長い引用符を定義します。短い引用には、タグを使用します。
以下は属性です-
- 引用: 引用の出典
ここで、HTMLでblockquoteタグを実装する例を見てみましょう-
例
<!DOCTYPE html> <html> <body> <h2>osCommerce</h2> <p>According to the official website of osCommerce:</p> <blockquote cite="https://www.oscommerce.com/Us"> We have been running successfully for over 19 years and have not only created hundreds of thousands of online store owners worldwide, but have also helped kickstart other companies and projects who have based their products on our work. We've grown so much with the community and love the engagement in helping us all succeed. We're anxious to see you get involved and be part of the success! </blockquote> </body> </html>
出力
上記の例では、
を使用して見積もりを設定しています。これにより、テキストの前後に長い引用符が設定されます-<blockquote cite="https://www.oscommerce.com/Us"> We have been running successfully for over 19 years and have not only created hundreds of thousands of online store owners worldwide, but have also helped kickstart other companies and projects who have based their products on our work. We've grown so much with the community and love the engagement in helping us all succeed. We're anxious to see you get involved and be part of the success! </blockquote>これに伴い、
citeattribute-を使用して引用のソースも表示しました。cite="https://www.oscommerce.com/Us"
-
HTML<embed>タグ
タグは、HTMLドキュメントに外部アプリケーションを含めるために使用されます。 以下は属性です- 高さ: 埋め込まれたコンテンツの高さ(ピクセル単位)です。 src :埋め込む外部ファイルのアドレス、つまりURLを記載します。 タイプ :埋め込まれたコンテンツのメディアタイプを指定するのはメディアタイプです 幅: 埋め込まれたコンテンツの幅(ピクセル単位)です ここで、HTMLにタグを実装する例を見てみましょう- 例 <!DOCTYPE html> <html> <body> <h2>CSS Demonstrating Appl
-
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> &