Changing Text colour on Mouse over
Script for changing linked text color on mouseover:
<style
type=”text/css”> <!– A:link { text-decoration: none; color:#YourColor
} A:visited { text-decoration: none; color:#YourColor } A:hover { text-decoration:
none; color:#YourColor } –> </style>
Script for changing text color on mouseover:
<h1 onmouseover=”this.style.color = ‘red’;” onmouseout=”this.style.color = ‘green’;”>This is an example</h1>