-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.57 KB
/
index.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
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fromulario de Registro</title>
<link href="https://fonts.googleapis.com/css2?family=Slabo+27px&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="contenedor">
<form action="" class="formulario" id="formulario" name="formulario">
<div class="contenedor-inputs">
<input type="text" name="nombre" placeholder="Nombre">
<input type="email" name="correo" placeholder="Correo">
<div class="sexo">
<input type="radio" name="sexo" id="hombre" value="hombre">
<label class="label-radio hombre" for="hombre">Hombre</label>
<input type="radio" name="sexo" id="mujer" value="mujer">
<label class="label-radio mujer" for="mujer">Mujer</label>
<input type="radio" name="sexo" id="otro" value="otro">
<label class="label-radio otro" for="otro">Otro</label>
</div>
<div class="terminos">
<input type="checkbox" name="terminos" id="terminos">
<label for="terminos">Acepto Terminos y Condiciones</label>
</div>
<ul class="error" id="error"></ul>
</div>
<input type="submit" class="btn" value="Registrate">
</form>
</div>
<script src="js/index.js"></script>
</body>
</html>