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>
# ID 작성 시 키
수업을 쓸 때. 표시하다