-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
104 lines (80 loc) · 2.9 KB
/
index.htm
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
<!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> Cadastro|by@designtechti</title>
<link rel="stylesheet" type="text/css" href="formulario.css" media="screen">
</head>
<body>
<div>
<h1 id="title">cadastro de DEV</h1><br>
<p id="subtitulo"><strong> Complete suas informações</strong></p>
<br>
</div>
<form>
<fieldset class="grupo">
<div class="campo">
<label for="nome" ><strong>Nome:</strong></label>
<input type="text" name="nome" size="56" maxlength="150" id="nome"required>
<br>
<label for="sobrenome" required><strong>Sobrenome:</strong></label>
<input type="text" name="sobrenome" size="50" maxlength="150" id="sobrenome"required>
</div>
<div class="campo">
<label for ="email" required><strong>Email:</strong>
<input type="text" name="email" size="57" maxlength="150" id="email"required>
</div>
<div>
<label><strong>De qual lado da aplicação você desenvolve?</strong></label><br>
<label>
<input type="radio" name="devweb" value="frontend">Front End</label>
</div>
<label>
<input type="radio" name="devweb" value="backend">Back End</label><br>
</div>
<label>
<input type="radio" name="devweb" value="fullstack">FullStack</label>
</div>
<br>
<div>
<label for="senioridade"><strong>Senioridade:</strong></label>
<select id="senioridade">
<option value="">--Selecione--</option>
<option>Junior</option>
<option>Pleno</option>
<option>Sênior</option>
</select>
</div>
<br>
<fieldset class="grupo">
<div id="checkbox">
<label><strong>Selecione as técnologias que utiliza:</strong></label>
<br>
<br>
<input type="checkbox" name="tecnologia1" id="tecnologia1" value="HTML">
<label for="tecnologia3">HTML</label>
<input type="checkbox" name="tecnologia2" id="tecnologia2" value="CSS">
<label for="tecnologia3">CSS</label>
<input type="checkbox" name="tecnologia3" id="tecnologia3" value="JavaScript">
<label for="tecnologia3">JavaScript</label>
<input type="checkbox" name="tecnologia4" id="tecnologia4" value="PHP">
<label for="tecnologia4">PHP</label>
<input type="checkbox" name="tecnologia5" id="tecnologia5" value="C#">
<label for="tecnologia5">C#</label>
<input type="checkbox" name="tecnologia6" id="tecnologia6" value="Pyton">
<label for="tecnologia6">Pyton</label>
<input type="checkbox" name="tecnologia7" id="tecnologia7" value="Java">
<label for="tecnologia7">Java</label>
</div>
</fieldset>
<div class="campo" style="margin-bottom: 15px;">
<br>
<form>
<label><strong>Conte um pouco sobre a sua experiência</strong></label>
<textarea rows="6" style="width: 26em;" size="57" maxlength="150" id="experiencia"></textarea></div>
<button class="botao" type="submit" style="margin: 0 auto">Concluído</button>
</form>
</body>
</html>