-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercicio2.html
More file actions
executable file
·77 lines (77 loc) · 3.26 KB
/
Copy pathexercicio2.html
File metadata and controls
executable file
·77 lines (77 loc) · 3.26 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Instituto de Computação
</title>
</head>
<body>
<h1> Formulário de Contato</h1>
<p> Por favor, preencha o formumário abaixo e clique no botão Enviar Mensagem. Agradecemos por seu contato </p>
<form id="login" method = "GET" action = "login.php">
<fieldset>
<legend>Dados Básicos</legend>
Nome: <input type="text" name="nome" id="nome" /><br/>
<!--<input type = "text" value = "" name ="nome" id = "nome" /> -->
<label for = "email"> E-mail </label>
<input type ="email" name ="email" id="email" required placeholder="seunome@dominio.com.br">
</fieldset>
<fieldset>
<legend>Seu curso no Instituto de Computação</legend>
<input type="radio" name ="curso" value ="cc" id="cc">
<label for ="cc">Ciência da Computação</label><br>
<input type="radio" name ="curso" value ="cc" id="si">
<label for ="si">Sistema de Informação</label><br>
<input type="radio" name ="curso" value ="ec" id="cc">
<label for ="ec">Engenharia da Computação</label><br>
</fieldset>
<fieldset>
<legend>Assinale as linguagens já usadas por você</legend>
<label for ="java">Java</label>
<input type="checkbox" name="ling" id"java" value="java">
<label for ="c">C</label>
<input type="checkbox" name="ling" id"c" value="c">
<label for ="cpp">C++</label>
<input type="checkbox" name="ling" id"cpp" value="cpp">
<label for ="perl">Perl</label>
<input type="checkbox" name="ling" id"perl" value="perl">
<label for ="python">Python</label>
<input type="checkbox" name="ling" id"python" value="python">
<label for ="js">JavaScript</label>
<input type="checkbox" name="ling" id"js" value="js">
</fieldset>
<fieldset>
<legend>Dados Complementares</legend>
Cor Favortia:<input type="color" name="favcolor"><br>
<label for ="nascimento">Data de Nascimento</label>
<input type="date" name="nascimento" id="nascimento"><br>
<label for="ano">Ano de Entrada em seu curso do Icomp </label>
<input type="number" name ="ano" min="1980" max "2016" step ="1" value "2000" id="ano"><br>
Nota para este site:<input type="range" name="points" min="0" max="10">
</fieldset>
<fieldset>
<legend>Área de atuação</legend>
<select name ="area" id="area">
<option value ="1">Banco de Dados </option>
<option value ="2">Educação a Distância </option>
<option value ="3">Engenharia de Software </option>
<option value ="4">Otimização </option>
<option value ="5">Programação para Web </option>
<option value ="6">Recuperação de Informação </option>
<option value ="7">Redes de Computadores </option>
</select>
<fieldset>
<legend>Submeta seu curriculum vitae</legend>
<input type ="file" name ="curriculo">
</fieldset>
<fieldset>
<legend>Digite sua Mensagem</legend>
<textarea name ="mensagem" row ="4" cols ="50">
Este é o valor padrão!
</textarea>
</fieldset><br>
<input type = "reset" value="Resetar Dados" />
<input type="submit" name ="submit" value= "Enviar Mensagem" />
</form>
</body>
</html