본문 바로가기
front-end 공부하기/Html + CSS

[Html] 유용한 tag

by 치즈도넛 2022. 6. 2.
반응형

abbr

 : 축약어

 : 속성 값으로 title이 반드시 들어가야 함

<p><abbr title="Please">PLZ</abbr>...한번만 봐줘요</p>

address

 : (물리적인)주소, url, 이메일, 전화번호, sns

<address>
  <h1>치즈도넛 블로그</h1>
  <a href="https://cheese-donut.tistory.com/">
    https://cheese-donut.tistory.com
  </a>
</address>

pre & code

: 둘이 같이 사용하지 않아도 됨

: pre - html에서 적은 그대로 화면에 나타남

: code - code를 적을 때 사용

<pre>
  <code>
    console.log('hello world!');
      let a = 2;
  </code>
</pre>

 pre를 사용하면 띄어진 부분까지 전부 화면에 나타남

반응형

댓글