Ver Mensaje Individual
  #4 (permalink)  
Antiguo 22/09/2003, 05:06
Elig
 
Fecha de Ingreso: noviembre-2002
Ubicación: Elche
Mensajes: 548
Antigüedad: 21 años, 5 meses
Puntos: 0
Pon a modo de muestra el código siguiente, practica con él mira el resultado. Creo que te servirá para soltarte. Es muy sencillo.
La dirección de correo que pongas sustituyendo al texto que te he puesto en rojo, es la que recibirá el resultado del formulario.

Te recomiendo que te leas algún tutorial de HTML, pues esto es básico.



<html>
<body>
<form name="formulario" action="mailto:pon aquí tu dirección de correo electrónico " method="post" style="margin-left:15px;font-size:12px" enctype="text/plain" >

Empresa:
<input type="text" style="background-color:#004080;color:#ffffff;font-weight:bold;font-size:9px;" name="empresa" size="30" maxlength="30" title="Empresa:">
<br>

Direcci&oacute;n:

<input type="text" style="background-color:#004080;color:#ffffff;font-weight:bold;font-size:9px;" name="direccion" size="40" maxlength="40" title="Direcci&oacute;n de la Empresa.">
<br>

C. P.:

<input type="text" style="background-color:#004080;color:#ffffff;font-weight:bold;font-size:9px;" name="Cp" size="5" maxlength="5" title="C&oacute;digo Postal.">
<br>

Ciudad: <input type="text" style="background-color:#004080;color:#ffffff;font-weight:bold;font-size:9px;" name="poblacion" size="25" maxlength="25" title="Poblaci&oacute;n.">

<br>

<input style="background:#004080;color:ffffff;font-family:tahoma,serif;font-size:12px;font-weight:bold;" type="submit" value="Enviar">

<input style="background:#004080;color:ffffff;font-family:tahoma,serif;font-size:12px;font-weight:bold;" type="reset" value="Borrar">


</form>

</body>
</html>


saludos