Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/08/2007, 19:44
hispamaster
 
Fecha de Ingreso: octubre-2005
Mensajes: 50
Antigüedad: 18 años, 6 meses
Puntos: 0
Re: Links Personalizados

La mejor forma de solucionar eso es usar css, con html no puedes, también podrías utilizar javascript pero insisto la mejor solución es css, aquí te dejo un ejemplo:

Código HTML:
<html>
<head>
<script>
</script>
<style type="text/css">
a.enlaces{  
 font-family: "Arial";
 font-size: 9pt; 
 text-decoration: none;  
 }
a.enlaces:hover {
 text-decoration: underline;
 font-weight: bold;
} 
 
</style>
</head>
<body>
  <a href="" class="enlaces" style="color: green;">Enlace 1</a><br />
  <a href="" class="enlaces" style="color: yellow;">Enlace 2</a><br />
  <a href="" class="enlaces" style="color: brown;">Enlace 3</a><br />
</div>  
</body>
</html> 
Con CSS es realmente fácil!!!