-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
54 lines (51 loc) · 2.31 KB
/
forms.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My page ñe</title>
</head>
<body>
<h1>INGRESE MI SO</h1>
<form>
<label for="nombre">nombre</label>
<input type="text" id="username" placeholder="username"><br>
<label for="css">la madre pal que toque el botón</label><br>
<input type="radio" id="js" name= "fav language" value= "PHP">
<hr>
<input type="checkbox" id= "fulbo" name= "deporte miso" value= "fulbo">
<label for="fulbo">si le gusta el fulbo, espiche ahí bro</label><br>
<input type="checkbox" id= "baloncesto" name= "deporte miso" value= "baloncesto">
<label for="baloncesto">si le gusta el baske, espiche ahí bro</label><br>
<input type="checkbox" id= "ciclísmo" name= "deporte miso" value= "ciclísmo">
<label for="ciclísmo">si le gusta la cicla, espiche ahí bro</label><br>
<label for="cars">¿En qué se va pa la u ñero?</label>
<select id="cars" name="cars">
<option value="carros">buseto</option>
<option value="aviones">sapo</option>
<option value="motos">en el 15</option>
<option value="ciclas">en la poderosísima cicla mi so</option>
</select>
<hr>
<label for="favcolor">seleccione el color más chimba bro:</label>
<input type="color" id="favcolor" name="favcolor"><br>
<label for="birthday">one está en pumpleañero</label>
<input type="date" id="birthday" name="birthday">
<hr>
<label for="datemax">y no se le olvide entrar antes de almorzar:</label>
<input type="date" id="datemax" name="datemax" max="2021-12-31"><br>
<label for="datemin">y acá solo se entra después de comer:</label>
<input type="date" id="datemin" name="datemin" min="2021-12-31">
<br>
<label for="email">meta su correo cucho</label>
<input type="email" id="email" name="email">
</form>
<hr><hr>
<form action="https://www.google.com/search" method= "get">
<label for="q">busque oficio pa</label>
<input type="text" name="q" id="q">
<input type="submit" value="submit">
</form>
</body>
</html>