-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaula337.html
92 lines (87 loc) · 2.84 KB
/
aula337.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="pt-BR">
<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>Document</title>
<style>
body {
font-family: sans-serif;
}
label {
cursor: pointer;
}
</style>
</head>
<body>
<form action="#" method="get" target="_blank" autocomplete="off">
<p>O meu formulário</p>
<p>
<label for="nome"> Nome: </label>
<input type="text" id="nome" name="nome" placeholder="Seu nome">
</p>
<p>
<label for="dev1"> Sou um dev Python</label>
<input type="checkbox" id="dev1" name="dev1" value="sim">
</p>
<p>
<label for="dev2"> Sou um dev HTML</label>
<input type="checkbox" id="dev2" name="dev2" value="sim">
</p>
<p>
<label for="dev3"> Sou um dev CSS</label>
<input type="checkbox" id="dev3" name="dev3" value="sim">
</p>
Gênero:
<p>
<label for="feminino"> feminino</label>
<input type="radio" id="feminino" name="genero" value="feminino">
</p>
<p>
<label for="masculino"> msculino</label>
<input type="radio" id="masculino" name="genero" value="masculino">
</p>
<p>
<label for="cis"> cis</label>
<input type="radio" id="cis" name="genero" value="cis">
</p>
<p>
<label for="trans"> trans</label>
<input type="radio" id="trans" name="genero" value="trans">
</p>
<p>
<label for="date"> Date: </label>
<input type="date" id="date" name="date" value="2022-03-03">
</p>
<p>
<label for="datetime"> Date: </label>
<input type="datetime-local" id="datetime" name="datetime" value="2022-03-03T15:19">
</p>
<p>
<label for="time"> Time: </label>
<input type="time" id="time" name="time" value="15:19">
</p>
<p>
<label for="cor"> Cor preferida: </label>
<input type="color" id="cor" name="cor" value="#FF0000">
</p>
<p>
<label for="email"> E-mail: </label>
<input type="email" id="email" name="email">
</p>
<p>
<label for="file"> Sua foto: </label>
<input type="file" id="file" name="file" accept=".png,.svg">
</p>
<p>
<label for="number"> Digite um número: </label>
<input type="number" id="number" name="number" min="10" max="30">
</p>
<p>
<button type="reset">Reset</button>
<button type="submit">Enviar</button>
</p>
</form>
</body>
</html>