-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
96 lines (82 loc) · 3.2 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Produtos - 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="img/logo.png" alt="Logo 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>
</ul>
</nav>
</div>
</header>
<main>
<form action="">
<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" placeholder="(XX) XXXX-XXXX" required>
<label for="mensagem">Mensagem</label>
<textarea name="" id="mensagem" cols="70" rows="10" required></textarea>
<fieldset>
<legend>Como prefere nosso contato</legend>
<label for="radio-email" id="motivo-contato"><input type="radio" name="contato" value="email" id="radio-email">Email</label>
<label for="radio-telefone" id="motivo-contato"><input type="radio" name="contato" value="telefone" id="radio-telefone">Telefone</label>
<label for="radio-whatsapp" id="motivo-contato"><input type="radio" name="contato" value="Whatsaap" id="radio-whatsapp" checked>Whatsaap</label>
</fieldset>
<fieldset>
<legend>Qual Horário Prefere ser atendido?</legend>
<select name="" id="horario">
<option value="manha">Manhã</option>
<option value="tarde">Tarde</option>
<option value="moite">Noite</option>
</select>
</fieldset>
<label > <input type="checkbox" required class="checkbox">Gostaria de receber nossas novidades por email?</label>
<input type="submit" value="Enviar Formulario" class="enviar">
</form>
<hr>
<table>
<thead> <!--Tag de header da tabela-->
<tr>
<th>Dia</th>
<th>Horario</th>
</tr>
</thead>
<tbody> <!--Tag de body da tabela-->
<tr>
<td>Segunda</td>
<td>8h ~ 20h</td>
</tr>
<tr>
<td>Quarta</td>
<td>8h ~ 20h</td>
</tr>
<tr>
<td>Sexta</td>
<td>8h ~ 20h</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="img/logo-branco.png" alt="">
<p class="copyright"> © Cpyright Barbearia Alura 2019</p>
</footer>
</body>
</html>