-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
45 lines (33 loc) · 1.32 KB
/
forms.html
File metadata and controls
45 lines (33 loc) · 1.32 KB
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
<!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>FORMULARIO</title>
</head>
<body>
<div>
<fieldset>
<legend>FORMULARIO DE ENTREVISTA DE EMPREGO</legend>
<div>
Nome: <input type="text" id="name" name="name" minlength="4" maxlength="8" size="20" placeholder="Digite seu nome" required> </br></br>
E-mail: <input type="email" id="email" name="email" placeholder="Digite seu e-mail"> </br></br></div>
<form action="/action_page.php">
<label for="cars">Selecione:</label>
<select name="cars" id="cars">
<option value="Freelance">Freelance</option>
<option value="Teletrabalho">Teletrabalho</option>
</select>
<br><br>
<div class="field">
<label for="mensagem">Sobre você:</label>
<textarea name="visões de trabalho" id="Mensagem" placeholder="visões de trabalho*" required></textarea>
</div>
<div>
<input type="reset" value="Cancelar">
<input type="submit" value="Enviar"></br>
</fieldset></a></form>
</div>
</body>
</html>