-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
100 lines (82 loc) · 3.52 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
<!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">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Contato</title>
</head>
<body>
<header>
<div class="div_menu-box">
<h1 id="logo-menu"><img id="img_logo-menu" src="logo.png" alt="Logo da Barbearia Alura"><p id="p_title-menu"> Contato</p></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>
<label for="inp_nome-completo">Nome: </label>
<input class="input_main" type="text" id="inp_nome-completo" required placeholder="Joao da Silva">
<label for="inp_email">e-mail: </label>
<input class="input_main" type="email" id="inp_email" required placeholder="[email protected]">
<label for="inp_telefone">Telefone: </label>
<input class="input_main" type="tel" id="inp_telefone" required placeholder="(00) 9 0000-0000">
<label for="txta_mensagem">Mensagem: </label>
<textarea class="input_main" id="txta_mensagem" cols="30" rows="10" required placeholder="Escreva sua mensagem aqui">
</textarea>
</fieldset>
<fieldset>
<legend>Como prefere o nosso contato?</legend>
<label for="inpr_email"><input type="radio" name="contato" value="email" id="inpr_email"> e-mail</label>
<label for="inpr_celular"><input type="radio" name="contato" value="celular" id="inpr_celular"> SMS</label>
<label for="inpr_wpp"><input type="radio" name="contato" value="wpp" id="inpr_wpp" checked> WhatsApp</label>
</fieldset>
<fieldset>
<legend>Qual horario prefere ser atendido?</legend>
<select>
<option>Manha</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<label><input class="cbx_newsletter" type="checkbox" checked> Gostaria de receber nossas novidades por e-mail?</label>
<input class="input_send" type="submit" value="Enviar">
</form>
<table>
<thead>
<tr>
<th>Dia</th>
<th>Horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>Segunda-feira</td>
<td>8h - 20h</td>
</tr>
<tr>
<td>Quarta-feira</td>
<td>8h - 20h</td>
</tr>
<tr>
<td>Sexta-feira</td>
<td>8h - 20h</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="logo-branco.png" alt="Logo da Barbearia Alura">
<p class="copyright">© Copyright Alura - Todos os direitos reservados 2022</p>
</footer>
</body>
</html>