-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.html
35 lines (34 loc) · 1.5 KB
/
formulario.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>ÚNETE A NUESTRA TRIPULACIÓN</title>
</head>
<body>
<form action="enviar.php" method="POST" name="registro">
<fieldset id= "ingreso" class="formulario">
<p>
<label>Nombre:</label><br>
<input type="text" placeholder="Introduce tu nombre" id="usuario" autofocus>
</p>
<p>
<label>Dínos con qué te identificas:</label>
<input type="radio" name="formulario" value="chico" id="sexo"> Hombre.
<input type="radio" name="formulario" value="chica" id="sexo">Mujer.
<input type="radio" name="formulario" value="chiques" id="sexo">Persona no binaria.
</p>
<!-- NOTA 2: Nunca consigo que con el tabulador se pueda pasar de una opción a otra dentro del checkbox. -->
<p>
<label>¿Hablas en el lenguaje de la metaficción? </label>
<input type="checkbox" name="sí" value="afirmación"> Claro, carajo.
<input type="checkbox" name="no" value="negación"> En absoluto.
<input type="checkbox" name="indefinición" value="indefinición"> WTF?
</p>
<a href="#" class="botonFormulario">ENVIAR</a>
<href></href>
</fieldset>
</form>
</body>
</html>