Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/08/2007, 09:36
Avatar de fabriciomq
fabriciomq
 
Fecha de Ingreso: noviembre-2006
Mensajes: 3
Antigüedad: 17 años, 5 meses
Puntos: 0
Re: generar botones

Para dar color es bastante simple. Seria algo asi con css.

Código HTML:
<style type="text/css">
  .boton{
        font-size:10px;
        font-family:Verdana,Helvetica;
        font-weight:bold;
        color:white;
        background:#638cb5;
        border:0px;
        width:80px;
        height:19px;
       }
</style>
<div align="center">
  <form name="form1" action="http://www.yahoo.es" target="_blank" method="post">
    <input type="text" name="prueba"><br><br>
    <input type="submit" value="enviar" class="boton">
  </form>
</div> 

Última edición por fabriciomq; 23/08/2007 a las 10:03