<html lang="ko">
<head>
<meta charset="UTF-8">
<title>CSS Fonts</title>
<style>
.normal { font-weight: normal; }
.bold { font-weight: 600; }
.bolder { font-weight: bolder; }
</style>
</head>
<body>
<h1>font-weight 속성을 이용한 글꼴의 두께 설정</h1>
<p class="normal">이 텍스트의 두께는 normal 스타일이 적용되어 있습니다.</p>
<p class="bold">이 텍스트의 두께는 600이 적용되어 있습니다.</p>
<p class="bolder">이 텍스트의 두께는 bolder 스타일이 적용되어 있습니다.</p>
</body>
</html>