<style>
.style1{
color:silver;
}
</style>
</head>
<body bgcolor="#000000">
<center>
<h1 class=style1>스타일 시트 적용하기</h1>
</center>
</body>
style1이 부분을 원하는 것으로 줘도 됌, . 은 꼭 있어야함, .은 class로 호출할 수 있음

<style>
#style1{
color:silver;
}
</style>
</head>
<body bgcolor="#000000">
<center>
<h1 id=style1>스타일 시트 적용하기</h1>
</center>
</body>
style1이 부분을 원하는 것으로 줘도 됌, # 은 꼭 있어야함, #은 id로 호출
