-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
102 lines (98 loc) · 4.72 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
<!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>Contato | Barbearia Alura</title>
<link rel="stylesheet" href="reset.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/contato.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="produtos/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>
</ul>
</nav>
</div>
</header>
<main>
<form>
<fieldset class="informacoes">
<legend>Informações Pessoais</legend>
<label for="nome-sobrenome">Nome e Sobrenome</label>
<input type="text" class="input-padrao" id="nome-sobrenome" placeholder="Fulano de Tal" required>
<label for="email">Email</label>
<input type="email" class="input-padrao" id="email" placeholder="exemplo@dominio.com" required>
<div class="tel-container">
<label for="telefone">Telefone com DDD</label>
<input type="tel" id="telefone" placeholder="(XX) XXXXX-XXXX" maxlength="15" pattern="^\(\d{2}\) \d{5}-\d{4}$" required>
<label for="telefone" id="formato-aviso" style="display: none;">Formato: (12) 12345-6789</label>
</div>
</fieldset>
<label for="mensagem">Mensagem</label>
<textarea cols="70" rows="10" class="mensagem" placeholder="Digite aqui sua mensagem..." required></textarea>
<fieldset class="tipo-contato">
<legend>Como prefere o nosso contato?</legend>
<label>
<input type="radio" name="contato" value="radio-email" required>Email
</label>
<label>
<input type="radio" name="contato" value="radio-telefone">Telefone
</label>
<label>
<input type="radio" name="contato" value="radio-whatsapp" aria-checked="true" checked>WhatsApp
</label>
</fieldset>
<div class="horario-atendimento">
<label for="horario">Qual horário prefere ser atendido?</label>
<select name="horario" id="horario">
<option value="manha">Manhã</option>
<option value="tarde">Tarde</option>
<option value="noite">Noite</option>
</select>
</div>
<label class="checkbox"><input type="checkbox" aria-checked="true" checked>Deseja receber nossas novidades por email?</label>
<input type="submit" value="Enviar formulário" class="enviar">
</form>
<table>
<thead>
<tr>
<th>Dia</th>
<th>Horário</th>
</tr>
</thead>
<tbody>
<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="produtos/logo-branco.png" alt="Logo Branco da Barbearia Alura">
<p class="copyright">© Barbearia Alura - 2023</p>
<div>
<p class="desenvolvido">Desenvolvido por Victor Ferreira</p>
<a href="https://www.github.com/victor-ferreira-dev/" target="_blank" rel="noopener noreferrer"><img src="svg/icons8-github.svg" class="logo-svg" alt="Icone-Logo do GitHub"></a>
<a href="https://www.linkedin.com/in/victor-ferreira-dev/" target="_blank" rel="noopener noreferrer"><img src="svg/icons8-linkedin.svg" class="logo-svg" alt="Icone-Logo do LinkedIn"></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>