CSS를 실행하는 법은 두가지
색깔을 바꾸는 두가지 방법이 있다
style이란 것은 html의 문법 h2와 color:red는 css의 문법
<!DOCTYPE html>
<html>
<head>
<style>
h2{color:blue}
</style>
</head>
<body>
<h1 style="color:red">Hello world</h1>
<h2>Hello world</h2>
</body>
</html>
댓글