Como quitar el subrayado de los enlaces con CSS
Para quitar el subrayado que ponen los enlaces (links) por defecto, basta con poner unas líneas en nuestro código CSS:
a:link {text-decoration: none}
a:visited {text-decoration: none}
a:active {text-decoration: none}
a:hover {text-decoration: none}
Si no tenemos una hoja de estilos vinculada, pondremos el siguiente código en el HEAD de nuestra página:
<STYLE TYPE=”text/css”>
<!–
a:link {text-decoration: none}
a:visited {text-decoration: none}
a:active {text-decoration: none}
a:hover {text-decoration: none}
–>
</STYLE>