Qué tal,
la respuesta de Alexiel es 'casi' correcta salvo por un detalle
<input type="text" name="nombre" value="Escribe aqui el nombre"
size="15" maxlenght="2"
style="color:6797DA"
style="font-family: verdana, arial; font size:8pt; border: 1 solid "287c50"
style="background:transparent">
sólo puede existir un atributo por tag (etiqueta). No puede haber más de un style, ni más de un class ni más de un nada.
Ponlo todo dentro del mismo atributo style y separa los valores mediante punto y coma (;)
<input type="text" name="nombre" value="Escribe aqui el nombre"
size="15" maxlenght="2"
style="color:6797DA; font-family: verdana, arial; font size:8pt; border: 1 solid 287c50; background:transparent">
un saludo