<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<script src="6-1.js">
<!--
function over(obj) {
obj.style.background = "yellow";
}
function out(obj) {
obj.style.background = "white";
}
-->
</script>
</head>
<body>
<h3>마우스를 올려보세요</h3>
<hr>
<div onmouseover="over(this)" onmouseout="out(this)">
여기에 마우스 올리면 배경색이 바뀜
</div>
<!--
글자가 차지하는 부분만 색 바꿔보기
-->
</body>
</html>