-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
111 lines (80 loc) · 2.68 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Barbearia Alura</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>;
<body>
<header>
<div class="caixa">
<h1><img src="imagens/logo.png" alt="Logo da Barbearia Alura"></h1>,
<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>
<li><a href="sons.html">Bateria</a></li>
</ul>
</nav>
</div>
</header>
<main class="contato-margem">
<form>
<label for="nomesobrenome">Nome e Sobrenome</label>
<input type="text" id="nomesobrenome" class="input-padrao" required>
<label for="email">E-mail</label>
<input type="email" id="email" class="input-padrao" required placeholder="seuemail@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"></textarea required>
<fieldset>
<legend class="como">Como Prefere 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="telefone" id="radio-whatsApp" checked>WhatsApp</label>
</fieldset>
<fieldset>
<legend class="como">Qual horário prefere ser atendido</p>
<select>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<label class="checkbox" checked><input type="checkbox">
Gostaria de Receber nossas novidades por e-mail ?</label>
<input type="submit" value="Enviar Formuário" class="enviar">
</form>
<table>
<thead>
<tr>
<th>Dia</td>
<th>Horário</td>
</tr>
</th>
<tbody>
<tr>
<td>Terça as Quinta </td>
<td>8hr ~ 16hr</td>
</tr>
<tr>
<td>Sextas e Sabados </td>
<td>8hr ~ 20hr</td>
</tr>
<tr>
<td>Domingo e Feriados</td>
<td>8hr ~ 12hr</td>
</tr>
</tbody>
</table>
</main>
<footer style="padding: 40px;">
<img src="imagens/logo-branco.png" alt="Logo da Barbearia Alura">
<p class="copyright">© Copyright Barbearia - 2019</p>
</footer>
</body>
</html>
</html>