-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.23 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mi Formulario</title>
</head>
<body style="text-align: center">
<h1>Formulario de Datos</h1>
<form action="">
<div>
<label for="nombre">Nombre</label><br>
<input id="nombre" type="text" required="">
</div><br>
<div>
<label for="nombre">Apellido</label><br>
<input id="nombre" type="text" required="">
</div><br>
<div>
<label for="tel">Teléfono</label><br>
<input type="tel" pattern="[0-9]{9}" maxlength="9" required ="required">
</div><br>
<h3>Escoge tu carro para continuar</h3>
<select name="Escoge tu carro" id="" required="">
<option value="">Escoge tu carro</option>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select><br><br>
<div>
<label for="email">Email</label><br>
<input type="email" pattern="^[-\w.]+@{1}[-a-z0-9]+[.]{1}[a-z]{2,5}$" title="Escriba tu email completo(añada el dominio)"><br><br>
</div>
<label for="password">Crea tu contraseña</label><br>
<input type="password" name="" maxlength="8" title="8 o menos caracteres" required=""><br><br>
<input type="submit" name="" value="send">
</form>
</body>
</html>