[CSS] 글자 색 변경 속성 - color

글자 색 변경 속성(color)

- 글자 색 변경할 때 사용

 

color:색;
<style>
    h1 {
	    color:red;
    }
</style>
<h1>CSS</h1>

CSS