-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathejemplo.html
More file actions
31 lines (26 loc) · 822 Bytes
/
ejemplo.html
File metadata and controls
31 lines (26 loc) · 822 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>formulario </title>
<form>
<h1>Formulario de registro</h1>
<label for="Nombre">Nombre:</label>
<input type="text" placeholder="Ingrese Nombre" id="Nombre" > <br><br>
<label for="Nombre">Apellidos:</label>
<input type="text" placeholder="Ingrese Apellidos" id="Nombre"><br> <br>
<label for="Nombre">Sexo:</label>
<input type="radio" name="Sexo" id="Nombre" >Hombre
<input type="radio" name="Sexo" id="Nombre">Mujer
<br> <br>
<label for="Nombre">Correo:</label>
<input type="text" placeholder="Ingrese Correo" id="Nombre" >
<br> <br>
<input type="checkbox" name="" id="">Deseo recibir información <br><br>
<input type="checkbox" name="" id="">Deseo
<br> <br>
<input type="button" value="enviar" ="">
</form>
</head>
<body>
</body>
</html>