: 특정 태그를 사용한 요소에 스타일 적용
=============================코드=============================
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
#title{ /* id가 타이틀인 것을 찾아라! */
color: blue;
}
.main_text {
font-weight: bold;
font-size: 20px;
color: red;
}
</style>
</head>
<body>
<h1 id="title">제목1</h1>
<h1>제목2</h1>
<hr>
<p class="main_text">본문1</p>
<p>본문2</p>
<p class="main_text">본문3</p>
<p>본문4</p>
<p class="main_text">본문5</p>
</body>
</html>
