HTML Quotation と Citation 要素

❮ 前章へ 次章へ ❯

クォーテーション

Here is a quote from WWF's website:

For 50 years, WWF has been protecting the future of nature. The world's 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.
Try it Yourself »

HTML <q> 短い文の引用

HTML <q> 要素は、短い引用を定義します。

ブラウザは通常、<q> 要素の前後に引用符を挿入します。

<p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q></p>

Try it Yourself ❯

HTML <blockquote> 長い文の引用

HTML <blockquote> 要素は、引用したセクションを定義します。

ブラウザは、通常 <blockquote> 要素をインデントします。

<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.
world's 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>

Try it Yourself ❯

HTML <abbr> 略語

HTML <abbr> 要素は、略語や頭字語を定義します。

略語をマークすることによって、ブラウザや翻訳システム、検索エンジンに有益な情報を与えることができます。

<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>

Try it Yourself ❯

HTML <address> 連絡先情報

HTML <address> 要素は、文書又は記事の連絡先情報(作成者/所有者)を定義します。

要素は、通常イタリック体で表示されます。ほとんどのブラウザは、要素の前後に改行を追加します。

<address>
Written by Jon Doe.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>

Try it Yourself ❯

HTML <cite> 作品のタイトル

HTML <cite> 要素は、作品のタイトルを定義します。

ブラウザは、通常 <cite> 要素をイタリック体で表示します。

<p><cite>The Scream</cite> by Edward Munch. Painted in 1893.</p>

Try it Yourself ❯

HTML <bdo> 双方向オーバーライド

HTML <bdo> 要素は、双方向のオーバーライドを定義します。

お使いのブラウザが bdo をサポートしている場合、このテキストは右から左に表示されます:

<bdo dir="rtl">This text will be written from right to left</bdo>

Try it Yourself ❯

練習問題を自分でテストしてください!

Exercise 1 ❯   Exercise 2 ❯   Exercise 3 ❯   Exercise 4 ❯


HTML Quotations、Citations、定義要素

タグ 説明
<abbr> 略語または頭字語を定義する
<address> 文書の作者/所有者への連絡先情報を定義する
<bdo> テキストの方向を定義する
<blockquote> 他のソースから引用されているセクションを定義する
<dfn> 用語または略語の定義を定義する
<q> 短いインライン引用を定義する
<cite> 作品のタイトルを定義する

❮ 前章へ 次章へ ❯