-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
98 lines (79 loc) · 2.8 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
<!DOCTYPE html>
<html lang="pt-bt">
<head>
<meta name = "viewport" content = "width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Contato - Barbearia Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="logo.png" alt="Logo com uma cabelo preto bonitão, e uma barba media , ambos escuros"></h1>
<nav>
<ul>
<li><a href="barbearia.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 for="nomesobrenome">Nome Completo</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="TEL">Telefone</label>
<input type="tel" id="TEL" class="input-padrao" required placeholder="(xx)xxxxx-xxxx">
<label for="mensagem">Mensagem</label>
<textarea cols="70" rows="10" id="mensagem" class="input-padrao" required></textarea>
<fieldset>
<legend>Como prefere ser contactado?</legend>
<label for="radio-email"><input type="radio" name="contato" value="radio" id="radio-email">Email</label>
<label for="radio-whats"><input type="radio" name="contato"value="radio-whats" id="radio-whats"checked>WhatsApp</label>
<label for="radio-liga"><input type="radio" name="contato" value="liga"id="radio-liga">Ligações</label>
</fieldset>
<fieldset>
<legend>Que horarios prefere ser atendido?</legend>
<label><select >
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
<label class="checkbox"><input type="checkbox"checked>Gostaria de receber nossas novidades por email?</label>
<input type="submit" value="Enviar Formulario" class="enviar">
</fieldset>
</form>
<table>
<thead>
<tr>
<th>Dia</th>
<th>Horário</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="5">Rio de Janeiro</td>
<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="logo-branco.png"alt="Logo com uma cabelo preto bonitão, e uma barba media , ambos brancos">
<p class="copyright">©Barbearia Alura 2021</p>
</footer>
</body>
</html>