728x90
반응형
<!DOCTYPE html>
<html lang="ko">
<head>
<title>선택자 : 요소</title>
<meta charset="UTF-8">
<style>
/*
'태그 이름' {
'속성' : '값';
...
}
*/
SPAN {
color: red;
}
DIV {
color: blue;
}
</style>
</head>
<body>
<SPAN>ABC</SPAN>
<DIV>123</DIV>
</body>
</html>
728x90
반응형