-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontatos.html
86 lines (75 loc) · 3.06 KB
/
contatos.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>terceira parte</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="contato.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="imagens/logo.png" alt="Logo" class="logo"/></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="produtos.html">produto</a></li>
<li><a href="#">contato</a></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<form>
<label for="nomesobrenome"> Nome e sobrenome</label>
<input type="text" id="nomesobrenome" class="input-padrao" required>
<label for="email">Email</label>
<input type="email" id="email" class="input-padrao" required placeholder="[email protected]">
<label for="telefone">Telefone</label>
<input type="tel" id="telefone" class="input-padrao" required placeholder="(xx) xxxxx - xxxx" maxlength="11">
<label for="mensagem">Mensagem</label>
<textarea id="mensagem" rows="5" cols="73" required ></textarea>
<fieldset>
<legend>como prefere o nosso contato</p>
<label for="radio-whatsapp"><input type="radio" name="contato" value="email" id="radio-whatsapp" checked>whatsapp</label>
<label for="radio-telefone"><input type="radio" name="contato" value="email" id="radio-telefone">Telefone</label>
<label for="radio-email"><input type="radio" name="contato" value="email" id="radio-email">Email</label>
</fieldset>
<fieldset>
<legend>qual o horario prefere ser atendido</p>
<input type="date">
<select>
<option>manhão</option>
<option>tarde</option>
<option>noite</option>
</select>
</fieldset>
<label><input type="checkbox" class="checkbox" checked> gostaria de receber nossas novidades por email?</label>
<input type="submit" value="Enviar formulário" class="enviar">
</form>
<table>
<tr>
<td>Dia</td>
<td>horario</td>
</tr>
<tr>
<td>Segunda</td>
<td>08:00 as 18:00</td>
</tr>
<tr>
<td>Quarta</td>
<td>08:00 as 18:00</td>
</tr>
<tr>
<td>Sexta</td>
<td>08:00 as 18:00</td>
</tr>
</table>
</main>
<footer>
<img src="imagens/rodape.png">
<p class="copyright">© copyright Breno - 2019</p>
</footer>
</body>
</html>