-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormulario1.html
73 lines (66 loc) · 3.11 KB
/
Formulario1.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>CSS Externo - Formulário 13/04, 03/05</title>
<link rel="stylesheet" href="formulario.css">
</head>
<body>
<header> <!-- Cabeçalho -->
</header>
<main> <!-- Meio -->
<section class="box">
<form>
<fieldset>
<legend><strong>Formulário de Clientes</strong></legend>
<br>
<section class="inputBox">
<input type="text" name="nome" id="nome" class="inputUser" required>
<label for="nome" class="labelinput">Nome completo</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="email" id="email" class="inputUser" required>
<label for="email" class="labelinput">Email</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="telefone" id="telefone" class="inputUser" required>
<label for="telefone" class="labelinput">Telefone</label>
</section>
<p>Sexo</p>
<input type="radio" id="feminino" name="genero" value="feminino" required>
<label for="feminino">Feminino</label>
<br>
<input type="radio" id="masculino" name="genero" value="masculino" required>
<label for="masculino">Masculino</label>
<br>
<input type="radio" id="outro" name="genero" value="outro" required>
<label for="outro">Outro</label>
<br><br>
<label for="data_nascimento"><strong>Ano de Nascimento</strong></label>
<input type="date" name="data_nascimento" id="data_nascimento" required>
<br><br><br>
<section class="inputBox">
<input type="text" name="cidade" id="cidade" class="inputUser" required>
<label for="cidade" class="labelinput">Cidade</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="estado" id="estado" class="inputUser" required>
<label for="estado" class="labelinput">Estado</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="endereco" id="endereco" class="inputUser" required>
<label for="endereco" class="labelinput">Endereço</label>
</section>
<br><br>
<input type="submit" value="Enviar Formulário" id="enviar" </fieldset>
</form>
</section>
</main>
<footer> <!-- Rodapé -->
</footer>
</body>
</html>