-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.html
118 lines (78 loc) · 3.52 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="formulario.css">
<title>Cadastro</title>
</head>
<body>
<div>
<h1 id="titulo">Casdastro de desenvolvedores</h1>
<p id="subtitulo">Complete suas Informações</p>
<br>
</div>
<form>
<fieldset class="group">
<div class="campo">
<label for="nome"> <strong>Nome</strong> </label>
<input type="text" name="nome" id="nome" required>
</div>
<div class="campo">
<label for="sobrenome"><strong>Sobrenome</strong></label>
<input type="text" name="sobrenome" id="sobrenome" required>
</div>
</fieldset>
<div class="campo">
<label for="email"><strong>Email</strong></label>
<input type="email" name="email" id="email" required>
</div>
<div class="campo">
<label><strong>De qual lado da aplição você desenvolve</strong></label>
<label>
<input type="radio" name="devweb" value="frontend" checked>Front-end
</label>
<label>
<input type="radio" name="devweb" value="backend">Back-end
</label>
<label>
<input type="radio" name="devweb" value="fullstack">Full-stack
</label>
</div>
<div class="campo">
<label for="senioridade"><strong>Senioridade</strong></label>
<select id="senioridade">
<option selected disabled value="">Selecione</option>
<option>Junior</option>
<option>Pleno</option>
<option>Senior</option>
</select>
</div>
<fieldset class="group">
<div id="check">
<label><strong>Selecione as Tecnologias que ultiliza</strong></label><br><br>
<input type="checkbox" id="tecnologia1" name="tecnologia1" value="HTML">
<label for="tecnologia1">HTML</label>
<input type="checkbox" id="tecnologia2" name="tecnologia2" value="CSS">
<label for="tecnologia2">CSS</label>
<input type="checkbox" id="tecnologia3" name="tecnologia3" value="Javascript">
<label for="tecnologia3">Javascript</label>
<input type="checkbox" id="tecnologia4" name="tecnologia4" value="PHP">
<label for="tecnologia4">PHP</label>
<input type="checkbox" id="tecnologia5" name="tecnologia5" value="C#">
<label for="tecnologia5">C#</label>
<input type="checkbox" id="tecnologia6" name="tecnologia6" value="Python">
<label for="tecnologia6">Pyhton</label>
<input type="checkbox" id="tecnologia7" name="tecnologia7" value="Java">
<label for="tecnologia7">Java</label>
</div>
</fieldset>
<div class="campo">
<br>
<label><strong>Conte um pouco da sua experiencia:</strong></label>
<textarea row="6" style="width: 26em" id="experiencia"></textarea>
</div>
<button class="botao" type="submit">Concluido</button>
</form>
</body>
</html>