h1 {
color: blue;
font-size: 15px;
}
인라인(inline)
내부 참조(embedding) - <style>
외부 참조(link file) - <head>내 <link>를 통해 CSS 파일 불러오기
<html>
<head>
<title>Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
h1 {
color: blue;
font-size: 20px;
}