<body>와 </body> 사이에...
<span OnMouseOver="this.style.color='#529CFF'" OnMouseOut="this.style.color=''">메뚜</span>
#529CFF 는 마우스가 올라갔을 때 변하는 글자색
<span OnMouseOver="this.style.fontSize='15pt'" OnMouseOut="this.style.fontSize=''">메뚜</span>
15pt 는 마우스가 올라갔을 때 변하는 글자크기
<span OnMouseOver="this.style.color='#529CFF'; this.style.fontSize='15pt'" OnMouseOut="this.style.color=''; this.style.fontSize=''">메뚜</span>
위와 같은 방법으로 글자색과 크기를 동시에 바꿀 수도 있습니다.
<span OnMouseOver="this.style.color='#529CFF'" OnMouseOut="this.style.color=''">메뚜</span>
#529CFF 는 마우스가 올라갔을 때 변하는 글자색
<span OnMouseOver="this.style.fontSize='15pt'" OnMouseOut="this.style.fontSize=''">메뚜</span>
15pt 는 마우스가 올라갔을 때 변하는 글자크기
<span OnMouseOver="this.style.color='#529CFF'; this.style.fontSize='15pt'" OnMouseOut="this.style.color=''; this.style.fontSize=''">메뚜</span>
위와 같은 방법으로 글자색과 크기를 동시에 바꿀 수도 있습니다.