etiquetas formularios html

Solutions on MaxInterview for etiquetas formularios html by the best coders in the world

showing results for - "etiquetas formularios html"
Noah
28 Mar 2016
1<form action="ejemplo.php" method="get">
2  <p>Nombre: <input type="text" name="nombre" size="40"></p>
3  <p>Año de nacimiento: <input type="number" name="nacido" min="1900"></p>
4  <p>Sexo:
5    <input type="radio" name="hm" value="h"> Hombre
6    <input type="radio" name="hm" value="m"> Mujer
7  </p>
8  <p>
9    <input type="submit" value="Enviar">
10    <input type="reset" value="Borrar">
11  </p>
12</form>
13