Haciendo un formulario

Crear un Formulario con el programa Sublime Text.

Crear un formulario .
Ejemplo:
<html>

    <head>
      <title>Ejemplo Formulario</title>
      
    </head>
  <body>
    <center>
     <FORM alight="center" action="http://algunsitio.com/prog/usuarionuevo" method="post">

        <LABEL for="nombre">Nombre: </LABEL>
                <INPUT type="text" id="nombre"><BR>
        <LABEL for="apellido">Apellido: </LABEL>
                <INPUT type="text" id="apellido" ><BR>
        <LABEL for="email">email: </LABEL>
                <INPUT type="text" id="email" ><BR>
        <INPUT type="radio" name="sexo" value="Hombre"> Hombre<BR>
        <INPUT type="radio" name="sexo" value="Mujer"> Mujer<BR>
        <INPUT type="submit" value="Enviar" > <INPUT type="reset" >
      
      </FORM>
    </center>

  </body>


</html>

No hay comentarios:

Publicar un comentario