본문 바로가기

HTML 인용문 및 인용문 요소(HTML Quotation)

Quotation

인용


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> for Short Quotations

짧은 인용문을위한 HTML <q>


The HTML <q> element defines a short quotation.

HTML <q>요소는 짧은 인용을 정의합니다.

Browsers usually insert quotation marks around the <q> element.

브라우저는 일반적으로 <q>요소 주위에 따옴표를 삽입합니다 .


Example

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


Try it Yourself »



HTML <blockquote> for Quotations

견적을위한 HTML <blockquote>


The HTML <blockquote> element defines a section that is quoted from another source.

HTML <blockquote>요소는 다른 소스에서 인용 된 섹션을 정의합니다.

Browsers usually indent <blockquote> elements.

브라우저는 대개 들여 쓰기 <blockquote>요소를 사용합니다.


Example

1
2
3
4
5
6
7
8
<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>
cs


Try it Yourself »



HTML <abbr> for Abbreviations

약어에 대한 HTML <abbr>


The HTML <abbr> element defines an abbreviation or an acronym.

HTML <abbr>요소는 약어 또는 머리 글자를 정의합니다.

Marking abbreviations can give useful information to browsers, translation systems and search-engines.

마킹 약어는 브라우저, 번역 시스템 및 검색 엔진에 유용한 정보를 제공 할 수 있습니다.


Example

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


Try it Yourself »



HTML <address> for Contact Information

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


The HTML <address> element defines contact information (author/owner) of a document or an article.

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

The <address> element is usually displayed in italic. Most browsers will add a line break before and after the element.

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


Example

1
2
3
4
5
6
7
<address>
Written by John Doe.<br
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
cs


Try it Yourself »



HTML <cite> for Work Title

작업 제목에 대한 HTML <cite>


The HTML <cite> element defines the title of a work.

HTML <cite>요소는 저작의 제목을 정의합니다.

Browsers usually display <cite> elements in italic.

브라우저는 대개 <cite>이탤릭체로 요소를 표시합니다.


Example

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


Try it Yourself »



HTML <bdo> for Bi-Directional Override

양방향 재정의 HTML <bdo>


The HTML <bdo> element defines bi-directional override.

HTML <bdo>요소는 양방향 재 지정을 정의합니다.

The <bdo> element is used to override the current text direction:

<bdo>요소는 현재의 텍스트 방향을 무시하는 데 사용됩니다 :


Example

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



Try it Yourself »



Test Yourself with Exercises!


HTML Quotation and Citation Elements

HTML 인용문 및 인용문 요소


Tag

 Description

 <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

 짧은 인라인 인용 부호를 정의합니다.




출처 : W3School.com


'HTML' 카테고리의 다른 글

HTML 색상(HTML Colors)  (0) 2018.06.11
HTML 주석(HTML Comments)  (0) 2018.06.10
HTML 텍스트 서식 지정(HTML Text Formatting)  (0) 2018.06.08
HTML 스타일(HTML Styles)  (0) 2018.06.07
HTML 단락(HTML Paragraphs)  (0) 2018.06.06