-
Notifications
You must be signed in to change notification settings - Fork 0
/
06-formularios.html
93 lines (71 loc) · 2.05 KB
/
06-formularios.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>HTML - Formulário Fale Conosco</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<header>
<h2>Curso Front-end - HTML</h2>
</header>
<section>
<nav>
<ul class="navegacao">
<li><a href="homepage.html">Home</a></li>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
<article>
<h1>Contato</h1>
<p>Preencha os campos abaixo</p>
<form method="post">
<div>
<label for="nome">Nome</label>
<input type="text" name="nome" id="nome" placeholder="Digite seu nome">
</div>
<div>
<label for="email">E-mail</label>
<input type="email" name="email" id="email" placeholder="Digite seu email">
</div>
<div>
<label for="mensagem">Mensagem</label>
<textarea name="mensagem" id="mensagem" rows="5"></textarea>
</div>
<div>
<p>
<label>Qual linguagem você prefere?</label>
<input type="radio" name="linguagens" value="html"> HTML
<input type="radio" name="linguagens" value="css"> CSS
<input type="radio" name="linguagens" value="javascript"> JavaScript
</p>
</div>
<div>
<p>
<label>Quais linguagens você sabe?</label>
<input type="checkbox" name="linguagens" value="html"> HTML
<input type="checkbox" name="linguagens" value="css"> CSS
<input type="checkbox" name="linguagens" value="javascript"> JavaScript
</p>
</div>
<div>
<label>Qual a sua cor favorita?</label>
<select>
<option value="Azul">Azul</option>
<option value="Verde">Verde</option>
<option value="Vermelho" selected>Vermelho</option>
</select>
</div>
<div>
<input type="submit" >
</div>
</form>
</article>
</section>
<footer>
<p>Desenvolvido por Marcelo</p>
</footer>
</body>
</html>