-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (49 loc) · 2.12 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">
<title>Formulário</title>
</head>
<body>
<main>
<form>
<div class="formulario">
<label for="nome">Nome</label>
<input type="text" id="nome" class="input-padrao" required>
<label for="sobrenome">Sobrenome</label>
<input type="text" id="sobrenome" class="input-padrao" required>
<label for="email">Email</label>
<input type="email" id="email" class="input-padrao" required placeholder="seumelhoremail@dominio.com">
<label for="telefone">Telefone</label>
<input type="tel" id="telefone" class="input-padrao" required placeholder="(xx) xxxxx-xxxx">
<label for="mensagem">Mensagem</label>
<textarea cols="70" rows="10" id="mensagem" class="input-padrao"></textarea>
<input type="submit" value="Enviar Formulário">
<fieldset>
<legend>Como prefere nosso contato?</legend>
<label for="radio-email"><input type="radio" name="contato" value="email" id="radio-email"> Email</label>
<label for="radio-telefone"><input type="radio" name="contato" value="telefone" id="radio-telefone"> Telefone</label>
<label for="radio-whatsapp"><input type="radio" name="contato" value="whatsapp" id="radio-whatsapp"> Whatsapp</label>
</fieldset>
<fieldset>
<legend>Qual horário prfere ser atendido?</legend>
<select>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<label class="checkbox"><input type="checkbox"
checked>Gostaria de receber nossas novidades por e-mail?</label>
<input type="submit" value="Enviar Formulário" class="enviar">
</div>
</form>
</main>
<footer>
<p class="copyright">©Copyright Formulário - 2024</p>
</footer>
</body>
</html>