본문 바로가기
WEB Archive

[HTML] CSS - 색상 적용 실습

by universedevelope 2024. 8. 20.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test020.html</title>

<link rel="stylesheet" type="text/css" href="css/colorStyle.css">

</head>

<body>


<div>
	<h1>색상 적용 실습</h1>
	<hr>
</div>
<div>
	<h2>color 에 관하여...</h2>
	<span>color 속성은 html 비롯하여 css에서도
	 아주 많이 사용하는 속성이다.</span>
	 <p>사용 방법은 RGB Hex 값(#RRGGBB) 형식으로 지정할 수도 있고 <br>
	 css 에서 지원하는 16가지 색상의 이름을 바로 적용할 수도 있다.</p>
</div>

</body>
</html>

link 의 href 속성 css/colorStyle.css로 색상을 입혀본다.

색상은 RGB Hex 값 #123456 혁식으로 지정할 수 있다.

         또한 16가지 색상의  이름을 바로 적용할 수 도 있다.

         ex) tomato, black

728x90

댓글