Change <a> color with mouse event - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:a

Description

Change <a> color with mouse event

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body> 
  <a href="#" style="color: LIGHTGRAY;" onmouseover="this.style.color='GRAY'" onmouseout="this.style.color='LIGHTGRAY'">admin</a>  
 </body><!--   ww w  .  j ava  2  s . co  m-->
</html>

Related Tutorials