ホームページ > 記事 > ウェブフロントエンド > html5の参照タグとは何ですか
HTML5 の引用符は、「blockquote」または「q」要素です。 blockquote 要素は、別のソースから取得したブロック引用符を定義できます。ブラウザは通常、blockquote 要素をインデントします。q 要素は、段落の区切りを必要としない短い引用符を定義できます。ブラウザは、そのような引用符の前後に引用符を挿入することがよくあります。
このチュートリアルの動作環境: Windows 7 システム、HTML5 バージョン、Dell G3 コンピューター。
HTML5 には 2 種類の引用タグがあります:
##
tag
Tag
Tag別のソースから取得したタグ定義ブロック参照。 ブラウザは通常、要素をインデントします。<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>About WWF</h1> <p>Here is a quote from WWF's website:</p> <blockquote cite="http://www.worldwildlife.org/who/index.html"> For 50 years, WWF has been protecting the future of nature. The worlds leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally. </blockquote> </body> </html>
タグタグは、段落を区切る必要のない短い引用符を定義します。 ブラウザでは、そのような参照の前後に引用符が挿入されることがよくあります。<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q> We hope they succeed.</p> </body> </html>推奨チュートリアル: 「html ビデオ チュートリアル」
以上がhtml5の参照タグとは何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。