-
Notifications
You must be signed in to change notification settings - Fork 4
/
contato.html
140 lines (128 loc) · 5.73 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!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">
<meta name="description" content="Página de contato da Barbearia Alura. Aqui você pode agendar um horário,
mandar uma mensagem e assinar nossa newsletter.">
<title>Barbearia Alura - Contato</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap">
</head>
<body>
<header>
<div class="cabecalho">
<h1>
<a href="index.html" title="Página inicial">
<img src="img/logo.png" alt="Logo da Barbearia Alura na cor preta."
width="177" height="250" id="logo">
</a>
</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>
<p>Os campos com * são obrigatórios!</p>
<label for="nomecompleto">Nome Completo*</label>
<input class="input-padrao" type="text" id="nomecompleto" required
placeholder="Nome e Sobrenome">
<label for="email">Email*</label>
<input class="input-padrao" type="email" id="email" required
placeholder="seuemail@dominio.com">
<label for="telefone">Telefone*</label>
<input class="input-padrao" type="tel" id="telefone" required
placeholder="(xx) xxxxx-xxxx">
<label for="mesagem">Mensagem</label>
<textarea cols="70" rows="5" id="mensagem"
placeholder="Ex.: Gostaria de agendar um corte de cabelo e barba para o próximo sábado."></textarea>
<fieldset>
<legend>Em qual horário prefere seu atendimento?</legend>
<select>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<fieldset>
<legend>Como prefere o nosso contato?</legend>
<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" checked>
WhatsApp
</label>
</fieldset>
<label class="checkbox">Gostaria de receber nossas novidades por email?
<input type="checkbox" checked>
</label>
<input class="enviar" type="submit" value="Enviar">
</form>
<table>
<thead>
<tr>
<th>Dias</th>
<th>Horários</th>
</tr>
</thead>
<tbody>
<tr>
<td>De Terça à Sexta</td>
<td>Das 8h às 20h</td>
</tr>
<tr>
<td>Sábados e Domingos</td>
<td>Das 9h às 18h</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">Estamos te esperando!</td>
</tr>
</tfoot>
</table>
</main>
<footer>
<div class="logo-footer">
<img src="img/logo-branco.png" alt="Logo da Barbearia Alura na cor branca."
width="177" height="250">
</div>
<div class="redes">
<a href="https://github.com/xLucaspx" title="xLucaspx | GitHub" target="_blank">
<img src="img/github-logo.png" alt="Logo do GitHub" width="45" height="45">
</a>
<a href="https://www.linkedin.com/in/xlucaspx/" title="Lucas da Paz | LinkedIn" target="_blank">
<img src="img/linkedin-logo.png" alt="Logo do LinkedIn" width="45" height="45">
</a>
<a href="https://www.instagram.com/luacspaz/" title="Luacs da Paz (@luacspaz) | Instagram" target="_blank">
<img src="img/instagram-logo.png" alt="Logo do Instagram" width="45" height="45">
</a>
</div>
<p class="copyright">Desenvolvido por Lucas da Paz</p>
<p class="copyright">© Copyright Barbearia Alura - 2022</p>
</footer>
</body>
</html>