도움말 HTML 태그 클래스 및 ID로 선택하여 여러 스타일 지정
예) div 태그를 선택하여 노란색 배경으로 변경
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.helloclass{
color: bisque;
background-color: burlywood;
}
#helloid{
color: blueviolet;
background-color: cadetblue;
}
</style>
</head>
<body>
<h1 class="helloclass"> 안녕하세요 </h1>
<h1 id="helloid"> 안녕하세요 </h1>
</body>
</html>
# 아이디 작성시 버튼
수업을 쓸 때.표시