예제 소스 Exercise/4장/2_selector/index04.html
<body> <h1>type 선택자</h1> <h2 id="bg">id 선택자</h2> <h3 class="size color">class 선택자</h3> </body>
예제 소스 Exercise/4장/2_selector/style.css
.size {
font-size: 50px;
}
.color {
color: blue;
}

그림 4-12 실행 결과