Change the default underline style of link from underlined to non underlined.
Code:
<html> <head> <title>Change the default link style to not underline</title> <style type="text/css"> a {text-decoration: none;} a:hover {text-decoration: underline;} </style>