-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario_CSS.html
89 lines (72 loc) · 2.85 KB
/
formulario_CSS.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
<!DOCTYPE html>
<head>
<html lang="pt-br">
<meta charset="UTF-8">
<title>CSS externo - formulário - 13, 17, 24/04</title>
<link rel="stylesheet" href="formulario.css">
</head>
<body>
<header><!--cabeçalho-->
</header>
<section class="inputBox">
<main>
<form>
<fieldset>
<legend><strong>Formulário de Cliente</strong></legend>
<br>
<section class="inputBox">
<input type="text" name="nome" id="name" class=inputUser required>
<label for="name" class="labiellinput">
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="labiellinput">
Email </label>
</section>
<br></br>
<section class="inputBox">
<input type="text" name="telefone" id="teelefone" class="inputUser" required placeholder="(XX)XXXXX-XXXX">
<label for="telefone" class="labiellinput">
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="feminino" 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>Ano de nascimento</strong></label>
<input type="date" name="data_nascimento" id="data_nascimento"requied>
<br><br><br>
<section class="inputBox">
<input type="text" name="cidade" id="cidade" class="inputuser" required>
<label for="cidade" class="labiellinput">Cidade</label>
</section><br>
<section class="inputBox">
<input type="text" name="estado" id="estado" class="inputuser" required>
<label for="estado" class="labiellinput">Estado</label>
</section><br>
<section class="inputBox">
<input type="text" name="endereco" id="endereco" class="inputuser" required>
<label for="endereco" class="labiellinput">Endereço</label>
</section>
<br><br>
<input type="submit" name="Enviar formulário" id="enviar">
</fieldset>
</form>
</section>
</main>
<footer>
<p class="copyright">© Copyright Tharso Júnior-2023</p>
</footer>
</body>
</html>