-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactos.html
108 lines (93 loc) · 3.85 KB
/
contactos.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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<title>Contactos - Barbearia Alura</title>
</head>
<body>
<header>
<div class="caixa">
<h1><img src="img_produtos/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="contactos.html">Contactos</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="main-contacto">
<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" placeholder="seuemail@dominio.com" id="email" class="input-padrao" required>
<label for="telefone">Telefone</label>
<input type="tel" placeholder="(xx)xxxxx-xxxx" id="telefone" class="input-padrao" required>
<label for="mensagem">Mensagem</label>
<textarea name="mensagem" id="mensagem" cols="60" rows="10" class="input-padrao" required></textarea>
<fieldset>
<legend>Como prefere o nosso contacto?</legend>
<label for="radio-email">
<input type="radio" name="contacto" value="email" id="radio-email">
Email
</label>
<label for="radio-ligacao">
<input type="radio" name="contacto" value="telefone" id="radio-ligacao">
Ligação
</label>
<label for="radio-whatsapp">
<input type="radio" name="contacto" value="whatsapp" id="radio-whatsapp" checked>
WhatsApp
</label>
</fieldset>
<fieldset>
<legend>Qual horário prefere ser atendido?</legend>
<select for="">
<option value="">Matutino</option>
<option value="">Vespertino</option>
<option value="">Noturno</option>
</select>
</fieldset>
<label class="checkbox"> <input type="checkbox" checked> Gostaria de receber nossas novidades por
email?</label><br> <br>
<input type="submit" value="Enviar formulário" class="btn-enviar">
</form>
<h2>Horário de funcionamento:</h2>
<table>
<thead>
<tr>
<th>Dias</th>
<th>Horário</th>
</tr>
</thead>
<tbody>
<tr>
<td>Segunda</td>
<td>8h ~ 18h</td>
</tr>
<tr>
<td>Quarta</td>
<td>8h ~ 18h</td>
</tr>
<tr>
<td>Sexta</td>
<td>8h ~ 18h</td>
</tr>
</tbody>
</table>
</div>
</main>
<footer>
<img src="img_produtos/logo-branco.png" alt="Logo Barbearia Alura Rodapé">
<p class="copyright"> © Copyright Barbearia Alura – 2019</p>
</footer>
</body>
</html>