[HTML] HTML 텍스트 서식

- HTML 서식 요소

  • <b> ,<strong>: 굵은 텍스트 정의
<b>This text is bold</b>
<strong>This text is important!</strong>
  • <i>, <em> : 이탤릭체 정의
<i>This text is italic</i>
<em>This text is emphasized</em>
  • <small> : 작은 텍스트 정의
<small>This is some smaller text.</small>
  • <mark> : 텍스트에 강조 표시
<p>Do not forget to buy <mark>milk</mark> today.</p>
  • <ins> : 삽입된 텍스트에 밑줄을 그음
<p>My favorite color is <del>blue</del> <ins>red</ins>.</p>
  • <del> : 삭제된 텍스트에 줄을 그음
<p>My favorite color is <del>blue</del> red.</p>
  • <sub> : 아래첨자 정의
<p>This is <sub>subscripted</sub> text.</p>
  • <sup> : 위첨자 정의
<p>This is <sup>superscripted</sup> text.</p>

좋은 웹페이지 즐겨찾기