-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
64 lines (64 loc) · 1.95 KB
/
formulario.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
<!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>Document</title>
</head>
<body>
<h2>Introdução Html</h2>
<form action="">
<div>
<label for="">Nome: </label>
<input id="nome" type="text">
</div>
<br>
<div>
<label for="">E-mail: </label>
<input id="email" type="text">
</div>
<br>
<div>
<label for="">Texto</label>
<textarea name="corpo-email" id="corpo-email" cols="30" rows="10"></textarea>
</div>
<br>
<div>
<label for="">Profissões</label>
<select name="" id="">
<option value="">Selecione...</option>
<option value="">Programador</option>
<option value="">Médico</option>
<option value="">Policial</option>
<option value="">Dono de Bar</option>
</select>
</div>
<br>
<div>
<label for="">Profissões</label>
<br>
<input type="radio">Professor</input>
<input type="radio">Programador</input>
<input type="radio">Médico</input>
</div>
<br>
<div>
<label for="profissao">Profissões</label>
<input type="text" list="profissao" name="proffssao">
<datalist id="profissao">
<option value="Programador"></option>
<option value="Médico"></option>
<option value="Policial"></option>
</datalist>
</div>
<br>
<details>
<summary>Informações Adicionais</summary>
<p>Utilizando o details para esconder Informações!</p>
</details>
<br>
<input type="submit">
</form>
</body>
</html>