Cambiar fuente y mañano a href

<A style="color: #0080FF;text-decoration: none;" HREF="http://www.enlace1.net">enlace</A> cual seria la sintaxis para cambiar la fuente y el tamaño dela letra del enlace?
Puedes también crearte una hoja de estilos CSS e indicar ahí fuentes, colores y estilos varios, te quedará mejor que si vas tuneando cada enlace o párrafo. El sitio web que te ha pasado mik0 es genial para ir aprendiendo. Saludos.
earthattack está baneado por "Troll"
a {
font-family: familia;
font-size: tamaño;
text-decoration:none;
color: #0080FF;
}

o alguna clase:

a.estilo1 {
font-family: familia;
font-size: tamaño;
text-decoration:none;
color: #0080FF;
}

<a href="asd" class="estilo1">enlace </a>

Chao.
3 respuestas