언어/HTML

HTML 인용문 및 인용문 요소

shypang 2018. 12. 18. 20:53

HTML 인용문 및 인용문 요소

인용

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.
직접 해보기»

짧은 인용문을위한 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>
직접 해보기»






연락처 정보에 대한 HTML <address>

HTML <address>요소는 문서 또는 기사의 연락처 정보 (작성자 / 소유자)를 정의합니다.

<address>요소는 일반적으로 이탤릭체로 표시됩니다. 대부분의 브라우저는 요소 앞뒤에 줄 바꿈을 추가합니다.

<address>
Written by John Doe.<br> 
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
직접 해보기»




작업 제목에 대한 HTML <cite>

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>
직접 해보기»





HTML Quotation and Citation Elements

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