인라인, 내부 스타일 시트, 외부 스타일 시트의 세 가지 방법 존재
<body>
<h1 style='color:blueviolet;'>제목입니다.</h1>
<h3 style='color:deepblue;'>설명할 내용들입니다.</h3>
</body>
<html>
<head>
<title>Document</title>
<style>
ht{color:red;}
</style>
</head>
<body>
<h1>hello</h1>
</body>
<html>
<!--html문서 head에 css파일을 링크로 걸어두는 방법-->
<head>
<title>Document</title>
<link rel="stylesheet" href="css파일경로명/css파일명.css">
</head>
<!--css파일의 형식-->
h1{color:red;}