-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
105 lines (95 loc) · 4.45 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
<!DOCTYPE html>
<html lang="PT-BR">
<head>
<meta charset="UTF-8">
<link href="formulario.css" rel="stylesheet">
<title>Formulário de Cadastro</title>
</head>
<body>
<header>
<h1 id="titulo">Cadastro de Dev's</h1>
<p id="subtitulo">Complete com suas informações</p>
<br>
</header>
<main>
<form>
<fieldset class="grupo">
<div class="campo">
<label for="nome"><strong>Nome</strong></label>
<input type="text" name="nome" id="nome" placeholder="Digite seu nome" required>
</div>
<div class="campo">
<label for="sobrenome"><strong>Sobrenome</strong></label>
<input type="text" name="sobrenome" id="sobrenome" placeholder="Digite seu sobrenome" required>
</div>
<div class="campo">
<label for="email"><strong>Email</strong></label>
<input type="email" name="email" id="email" placeholder="[email protected]">
</div>
<div class="campo">
<label for="telefone"><strong>Telefone</strong></label>
<input type="tel" name="telefone" id="telefone" placeholder="(xx)xxxxxxxxx">
</div>
</fieldset>
<div class="campo">
<label><strong>De qual lado da aplicaçã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">Fullstack
</label>
</div>
<div class="campo">
<label for="senioridade"><strong>Qual é a sua senioridade?</strong></label>
<select id="senioridade">
<option selected disabled value="">Selecione</option>
<option>Júnior</option>
<option>Pleno</option>
<option>Senior</option>
</select>
</div>
<fieldset class="grupo">
<div id="check">
<label><strong>Selecione as tecnologias que você utiliza</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="java">
<label for="tecnologia4">Java</label>
<br>
<br>
<input type="checkbox" id="tecnologia5" name="tecnologia5" value="php">
<label for="tecnologia5">PHP</label>
<input type="checkbox" id="tecnologia6" name="tecnologia6" value="node.js">
<label for="tecnologia6">Node.js</label>
<input type="checkbox" id="tecnologia7" name="tecnologia7" value="reactnative">
<label for="tecnologia1">React Native</label>
<input type="checkbox" id="tecnologia8" name="tecnologia8" value="c++">
<label for="tecnologia1">C++</label>
</div>
</fieldset>
<div class="campo">
<label><strong>Conte um pouco sobre sua experiência</strong></label>
<textarea rows="6" style="width: 28em;" id="experiencia" name="experiencia" spellcheck="true" placeholder="Digite sua mensagem..."></textarea>
</div>
<button id="botao" type="submit">Concluído</button>
</form>
</main>
<footer id="rodape">
<p>
Formulário feito a partir do projeto da <a target="_blank" href="https://github.com/rafaballerini/Formulario">Rafaella Ballerini</a>
<br>
Clique <a target="_blank" href="https://youtu.be/wwqOJ2o84S4">aqui</a> para ver o vídeo sobre o projeto.
</p>
</footer>
</body>
</html>