일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 아두이노 wifi
- 아두이노 pro mini
- 데이터베이스
- Arduino
- vm
- 아두이노 와이파이
- mysql c
- Virtual Box
- Arduino pin
- html input
- web
- 아두이노 핀
- mysql api
- HTML
- 라즈베리파이
- 코딜리티
- Raspberry Pi
- 아두이노 핀맵
- 알고리즘
- 웹 프로그래밍
- database
- ubuntu
- MySQL
- 아두이노 프로미니
- Mysql c API
- wifi멀티탭
- 아두이노 핀 맵
- Codility
- 아두이노
- Arduino pin map
- Today
- Total
offfff
HTML 인용(HTML Quotations) 본문
HTML <q> for Short Quotation
<q>태그는 따옴표를 정의한다. <q>와 </q>사이의 내용 양 옆으로 쌍 따옴표를 만들어 준다.
cite 속성에 출처를 적을 수 있다.
<DOCTYPE! html>
<html>
<body>
<p>
WWF's goal is to : <q>Build a future where poeple live in harmony with nature.</q>
</p>
</body>
</html>
HTML <blockquote> for Quotations
<blockquote> 태그는 많은 내용을 인용했을 경우 주로 사용하는데,
브라우저가 대부분 들여쓰기를 해준다.
cite 속성에 출처를 적을 수 있다.
<DOCTYPE! html>
<html>
<body>
<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 contries and is supported by 1.2 million members in the United States and
close to 5 milion globally.
</blockquote>
</body>
</html>
HTML <abbr> for Abbreviations
<abbr>은 축약어를 정의하는 태그이다.
축약어를 표시하는것은 브라우저나 번역시스템, 검색엔진 등이 동작하는데 유용한 정보로 작용할 수 있다.
축약어 위에 마우스 커서를 올리면 tool-tip을 띄워 abbr의 내용을 보여주기도 한다.
<DOCTYPE! html>
<html>
<body>
<p>The <abbr title="World Health Organization>WHO</abbr> was founded in 1948.</p>
</body>
</html>
HTML <address> for Contact Information
<address> 태그는 글의 출처(저자와 연락처)를 정의하는 태그이다.
보통 이탤릭체로 화면에 표시되고, 대부분의 브라우저는 이 태그 전후로 줄 바꿈을 해준다.
<DOCTYPE! html>
<html>
<body>
<p>The HTML address element defines contact information(author/owner) of a document or article.</p>
<address>
Written by John Doe.<br>
Visit us at:<br>
Example.com<br>
box 564, Disneyland<br>
USA
</address>
</body>
</html>
HTML <cite> for Work Title
<cite>는 제목을 정의하는 태그이다. 브라우저는 보통 <cite>로 정의된 내용을 이탤릭체로 표시한다.
<DOCTYPE! html>
<html>
<body>
<p><cite>The Screan</cite> by Edvard Munch. Painted in 1893.</p>
</body>
</html>
HTML <bdo> for Bi-Directional Override
<bdo>는 글자가 출력되는 순서를 정의하는 태그이다.
dir 속성에 rtl(right to left) 값을 넣으면 오른쪽에서 왼쪽 순으로 내용 출력한다.
예를 들어 This라는 내용을 적었다면, sihT로 출력이 되는 식이다.
<DOCTYPE! html>
<html>
<body>
<bdo dir="rtl">This text will be written from right to left.</bdo>
</body>
</html>
아래 링크를 참조하여 번역 및 수정 함
http://www.w3schools.com/html/html_quotation_elements.asp
'프로그래밍' 카테고리의 다른 글
HTML코멘트(HTML Comments) (0) | 2016.08.30 |
---|---|
HTML 컴퓨터 코드(HTML Computercode) (0) | 2016.08.29 |
HTML 글자 모양 편집(HTML Formatting) (0) | 2016.08.27 |
HTML 스타일(HTML Styles) (0) | 2016.08.26 |
HTML 문단(HTML Paragraphs) (0) | 2016.08.25 |