• 投稿者:
  • 投稿コメント:0件のコメント
  • 投稿カテゴリー:HTML
  • 投稿の最終変更日:2021年3月23日

引用

WWFの引用です:

50年にわたり、WWFは自然の未来を保護してきました。 世界有数の保護団体であるWWFは100か国で活動しており、米国では120万人、世界では500万人近くの会員が支援しています。



短い引用のHTML <q>

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

ブラウザは <q> 要素の周囲に引用符を挿入します。

例文

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

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.
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.
</blockquote>


スポンサーリンク

略語のHTML <abbr>

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

略語をマークすると、ブラウザ、翻訳システム、検索エンジンに役立つ情報が得られます。

例文

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

<address> 連絡先情報のHTML

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

<address> 要素は、通常は斜体で表示されます。ほとんどのブラウザは、要素の前後に改行を追加します。

例文

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


スポンサーリンク

<cite> 作品タイトルのHTML

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

<cite> 要素をイタリック体で表示します。

例文

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

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

HTML <bdo> 要素は双方向の上書きを定義します。

<bdo> 要素は現在のテキストの方向を上書きするために使用されます。:

例文

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


Test Yourself with Exercises!


-->

HTML Quotation and Citation Elements

Tag 説明
<abbr> Defines an abbreviation or acronym
<address> Defines contact information for the author/owner of a document
<bdo> Defines the text direction
<blockquote> Defines a section that is quoted from another source
<cite> Defines the title of a work
<q> Defines a short inline quotation

さらにタグについてもっと知るには HTML Tag 辞典を参照して下さい

コメントを残す