CSS 선언 방식

aepee·2020년 9월 28일
0

인라인 방식

  • 요소에 style 속성을 주어 css를 선언하는 방식
  <div style="color: green; font-size: 20px; font-weight: bold;">Hello</div>


내장 방식

  • HTML 파일의 style 태그 안에 css를 선언하는 방식
  <head>
      <style>
        div {
          color: green;
          font-size: 20px;
          font-weight: bold;
        }
      </style>
  </head>
  <body>
      <div>Hello</div>
  </body>


링크 방식

  • link 태그를 이용하여 외부 문서로 css를 불러와 적용하는 방식

html

  <head>
      <link rel="stylesheet" href="css/main.css">
  </head>
  <body>
      <div>Hello</div>
  </body>

css

  div {
      color: green;
      font-size: 20px;
      font-weight: bold;
  }
profile
📝내가 보려고 기록하는 블로그

0개의 댓글