39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Formularios 1</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form method="get" action="../gracias.html">
|
|
<fieldset>
|
|
<legend>Datos Personales</legend>
|
|
<label>Nombre
|
|
<input type="text" name="nombre" placeholder="Escribe tu nombre...">
|
|
</label> <br>
|
|
<label>Apellidos
|
|
<input type="text" name="apellidos" placeholder="Escribe tus apellidos...">
|
|
</label> <br>
|
|
<label>DNI
|
|
<input type="text" name="dni" placeholder="NIF">
|
|
</label> <br>
|
|
<br>
|
|
<label>Sexo</label>
|
|
<input type="radio" name="sexo" value="masculino">Masculino
|
|
<input type="radio" name="sexo" value="femenino">Femenino
|
|
<input type="radio" name="sexo" value="otro">Otros
|
|
<input type="radio" name="sexo" value="nc" checked>Prefiero no contestar
|
|
<br>
|
|
<label> Estoy de acuerdo con los terminos y condiciones
|
|
<input type="checkbox" name="condiciones">
|
|
</label> <br>
|
|
<input type="submit" name="enviar" value="Enviar" />
|
|
<input type="reset" name="limpiar" value="Limpiar formulario" />
|
|
</fieldset>
|
|
</form>
|
|
</body>
|
|
|
|
</html> |