-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
105 lines (80 loc) · 3.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contato</title>
<link rel=stylesheet href="reset.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<nav>
<h1> <img src="./imagens/logo.png" alt="Logo da Barbearia Alura"></h1>
<ul>
<li> <a href="home.html"> Home </a> </li>
<li> <a href="produtos.html"> Produtos </a> </li>
<li> <a href="contato.html"> Contato </a> </li>
</ul>
</nav>
</header>
<main>
<form class="formulario">
<div class="input-padrao">
<label for="nome-sobrenome"> Nome e Sobrenome</label>
<input type="text" id="nome-sobrenome" required>
<label for="email"> Email </label>
<input type="email" id="email" required placeholder="[email protected]">
<label for="telefone"> Telefone </label>
<input type="tel" id="telefone" placeholder="(XX) XXXXX-XXXXX" required >
<label for="mensagem"> </textarea required>Mensagem</label>
<textarea id="mensagem" cols="70" rows="10"></textarea>
</div>
<fieldset class="radioType">
<legend>Como prefere o nosso contato?</legend>
<label for="radio-email"> <input id="radio-email" name="contato" type="radio" value="email"> Email</label>
<label for="radio-telefone"> <input id="radio-telefone" name="contato" type="radio" value="telefone">
Telefone</label>
<label for="radio-whatsapp"> <input id="radio-whatsapp" name="contato" type="radio" value="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" id="c" checked>Gostaria de receber nossas novidades por email?</label>
<input class="enviar" type="submit" value="Enviar Formulário">
<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>
</form>
</main>
<footer>
<img src="./imagens/logo-branco.png" alt="Logo da Barbearia Alura">
<p class="copyright">© Copyright Barbearia Alura - 2021<p>
</footer>
<script src="" async defer></script>
</body>
</html>