-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
83 lines (64 loc) · 3.43 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
<!DOCTYPE html>
<html lang ="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Contato - Barbearia Alura</title>
<link rel="shortcut icon" href="imagens/simbolo.ico" type="image/x-icon">
<link rel="stylesheet" href="estilos/reset.css">
<link rel="stylesheet" href="estilos/padrao.css">
<link rel="stylesheet" href="estilos/contatos.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="imagens/logotipo_branco.png" alt="Logotipo da barbearia Alura contendo o símbolo da barbearia
com um homem com o rosto de lado com barba e cabelo na cor azul no centro de um círculo amarelo.
Na parte superior há os dizeres 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>
<label for="nome" class="bold">Nome</label>
<input type="text" id="nome" class="input-padrao" required>
<label for="email" class="bold">E-mail</label>
<input type="email" id="email" class="input-padrao" required placeholder="seuemail@domínio.com">
<label for="telefone" class="bold">Telefone</label>
<input type="tel" id="telefone" class="input-padrao" required placeholder="(XX)XXXXX-XXXX">
<label for="mensagem" class="bold">Mensagem</label>
<textarea cols="55" rows="10" id="mensagem" class="input-padrao" required></textarea>
<fieldset class="espacamento">
<legend>Como prefere o nosso contato?</legend>
<label for="radio-email" class="texto"><input type="radio" name="contato"
value="email" id="radio-email">E-mail</label>
<label for="radio-telefone" class="texto"><input type="radio" name=contato
value="telefone" id="radio-telefone">Telefone</label>
<label for="radio-whatsapp" class="texto"><input type="radio" name=contato
value="whatsapp" id="radio-whatsapp" checked>Whatsapp</label>
</fieldset>
<fieldset>
<legend>Qual horário prefere ser atendido?</legend>
<select>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<label class="checkbox" ><input type="checkbox" checked>Gostaria de receber nossas novidades por e-mail?</label>
<input type="submit" value="Enviar formulário" class="enviar">
</form>
</main>
<footer>
<img src="imagens/simbolo.png" alt="Símbolo da barbearia Alura com um homem de perfil
com barba e cabelo na cor azul marinho no centro de um círculo amarelo">
<p class="copyright"> © Copyright Barbearia Alura - 2023</p>
</footer>
</body>
</html>