-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario CSS_08_05_2023.html
87 lines (66 loc) · 3.5 KB
/
formulario CSS_08_05_2023.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
<!DOCTYPE html">
<html Lang="pt-br">
<head>
<meta charset="UTF-8">
<title>CSS externo - Formulario 08/05/2023</title>
</head>
<body>
<header><!--cabecalho-->
</header>
<main> <!--meio-->
<section class="box"></section>
<form>
<fieldset>
<legend><strong>Formulario de Clientes</strong></legend>
<br>
<section class="inputBox">
<input type="text" name="nome" id="nome" class="inputUser" required>
<label for="nome" class="labeinput">Nome completo</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="email" id="email" class="inputUser" required placeholder="seuemail@dominio.com">
<label for="email" class="labelinput">Email</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="telefone" id="telefone" class="inputUser" required placeholder="(XX) XXXXX-XXXX">
<label for="telefone" class="labeinput">Telefone</label>
</section>
<p>Sexo</p>
<input type="radio" name="genero" id="feminino" value="feminino" required>
<label for="feminino">Feminino</label>
<br>
<input type="radio" name="genero" id="masculino" value="masculino" required>
<label for="masculino">Masculino</label>
<br>
<input type="radio" name="genero" id="outro" value="outro" required>
<label for="outro">Outro</label>
<br><br>
<label for="data_nascimento"><strong>Data 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="endereço" id="endereço" class="inputUser" required>
<label for="cidade" class="labelinput">Endereço</label>
</section>
<br><br>
<input type="submit" value="Enviar formulário" id="enviar">
</fieldset>
</form>
</section>
</main>
<footer><!--rodape-->
</footer>
</body>
</html>