-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
58 lines (49 loc) · 1.35 KB
/
contato.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
<header>
<link rel="stylesheet" href="contato.css">
<div class="caixa">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="produtos.html">Produtos</a></li>
<li><a href="contato.html">contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
<form>
<label> Nome e Sobrenome </label>
<input type="text" id="nomesobrenome"
<label for="">Email</label>
<input type="text" id="email"
<label for="">Numero de Telefone</label>
<input type="text" id="telefone"
<div>
<p>Como prefere o nosso contato?</p>
<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>
</div>
<div>
<p>Qual horário prefere ser atendido?</p>
<select>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</div>
<label class="checkbox">
<input type="checkbox">
Gostaria de receber nossas novidades por email?
</label>
</form>
</main>