⚪ CSS

Day·2022년 4월 4일
0
post-thumbnail
post-custom-banner

CSS (Cascading Style Sheets)

style.css

<link href="style.css" rel="stylesheet" type="text/css" />
  • link : link태그로 사용할 css파일을 링크해준다.
  • href : href 속성에 css 파일 경로를 작성한다.
  • type : link태그로 연결되는 파일이 어떤 것인지 알려줌.
    여기서 css file을 연결하므로 type값은 항상 "text/css"이다.
  • rel : rel은 HTML file과 CSS file과의 관계를 설명하는 속성.
    css파일을 링크할 때는 항상 "stylesheet"값을 대입해준다.

0개의 댓글