본문 바로가기

WEB/HTML

태그 활용

 

<h1>Toko</h1>
<!--<em>기울어진 효과-->
<p> 
Tokyo is the capital of Japan, the most populous <em>
    metropolitan</em> area in the world.
</p>


<!--하이라이트 효과-->
<p>HTML is <mark>FUN</mark> to learn!</p>


<!--아래첨자-->
<p>H <sub>2</sub> O is the scientific term for water</p>


<!-- 취소선처리 -->
<p>My favorite color is <del>blue</del> red. </p>


<!-- "텍스트" -->
<p>I am so <q>cool</q>.</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>

사이트는 나오지 않지만 인용문이 들여쓰기가 된 것을 확인


<!--글이거꾸로 우측부터 시작  -->
<bdo dir="rtl">What a beautiful day! </bdo>


<!--약어임을 나타냄/ 약어 위에 마우스를 올리면 뜻이 나옴-->
<p>
    The <abbr title="World Health Organization"> WHO</abbr>
    was founded in 1948.
</p>

 

 

'WEB > HTML' 카테고리의 다른 글

HTML - input 태그  (0) 2021.04.15
HTML - <form> 태그  (0) 2021.04.15
HTML - 멀티미디어 표현  (0) 2021.04.14
HTML 태그 정리  (0) 2021.04.14
테이블 콘텐트 그룹핑과 열 단위 스타일 지정  (0) 2021.04.13