카테고리 없음

1. CSS

okthatsimple 2024. 7. 12. 01:02

CSS

  • CSS
    • Cascading Style Sheets
    • HTML 문서의 서식을 바꾸어주는 언어
    • 폰트, 색, 크기, 간격, 레이아웃과 애니메이션을 제어할 수 있습니다.

      사용 방법

  • inline : style attribute 설정(h2 style=...)
  • internal : style 태그 안에 서식 설정
  • external : href="style.css" 등의 구문으로 외부 파일 불러오기
<!DOCTYPE html>
<html>
<head>
    <!-- External CSS -->
    <link rel="stylesheet" href="style.css" /> 
    <!-- Internal CSS -->
    <style> 
        h2 {
        color: green;
        }
    </style>
</head>
<body>
    <!-- Inline CSS -->
    <h2 style="text-align: center;">Hello!</h2>
</body>
</html>