다연이네

[days01] html 인용 태그(요소): blockquote, q, abbr, address, cite, bdo 태그 본문

Web/HTML

[days01] html 인용 태그(요소): blockquote, q, abbr, address, cite, bdo 태그

 다연  2020. 11. 30. 20:15
반응형


  1) blockquote : 자동 들여쓰기, 다른 소스에서 인용한 섹션을 정의할때 사용하는 태그 
  2) q (A short inline quotation) : 짧은 인용구로 들여쓰기는 적용되지 않지만 쌍따옴표(인용부호) 붙음   
  3) abbr (An abbreviation) : 약어/ 약어는 브라우저, 검색엔진에 유용한 정보를 제공할 수 있다.

                                          위 html에 마우스를 갖다대면 hypertext markup language라고 뜬다.
  4) address 주소 : 기사 작성자/연락처정보/이메일/URL/실제 주소, 전화번호 등 + 기울임
  5) cite : 작품(그림, 책, 영화, 조각, 노래...) 제목에 대한 정의 + 기울임
  6) bdo : 현재 텍스트 방향을 재정의하는 태그 
               ltr : left to right(기본) / rtl : right to left   hello world

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>html 인용 태그(요소) : blockquote, q, abbr, address, cite, bdo 태그</h3>


<blockquote>
죽음이 두렵다고 말하지 마라. 나는 적들이 물러가는 마지막 전투에서 스스로 죽음을 맞이했다.
</blockquote>

<q>
죽음이 두렵다고 말하지 마라. 
</q>

<abbr title="hypertext markup language">html</abbr>

<address>주소..</address>

<cite>명량해전</cite>
<br>

<bdo dir="rtl">hello world</bdo>

</body>
</html>
반응형
Comments