HTML에 CSS를 반영하는 3가지 방법
1.인라인 스타일 : 태그 style 속성에 직접 작성
<h1 style="color: red;">인라인스타일</h1>
2.style 태그 : style 태그 사이에 css 문법 작성
<style>
h2 {
color: red;
}
</style>
3.CSS파일에 작성 : 링크 태그 필요
<link href="index.css" rel="stylesheet" type="text/css" />