-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (90 loc) · 3.04 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barbearia alura</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<!--<body style="background-image: url(gramado.jpg)">-->
<div class="caixa">
<h1> <img src="logoalura.jpg" alt="Logo da Barbearia alura"></h1>
<nav>
<ul>
<div class="topo">
<li><a href="pagina.html"> Home </a></li>
</div>
<div class="topo0">
<li><a href="pagina3.html"> Produtos </a></li>
</div>
<div class="topo1">
<li><a href="index.html"> Contatos </a></li>
</div>
</ul>
</nav>
</div>
</header>
<main>
<h2>Contato</h2>
<form>
<label for="nomesobrenome">Nome e Sobrenome</label>
<input type="text" id="nomesobrenome" class="input-padrao" required
placeholder="meunome sobrenome">
<label for="email">Email</label>
<input type="email" id="email" class="input-padrao" required
placeholder="Seuemail@dominio.com">
<label for="telefone">Telefone</label>
<input type="number" id="telefone" class="input-padrao" required
placeholder="(XX) XXXXX-XXXX">
<label for="mensagem">Mensagem</label>
<textarea cols="70" rows="10" id="mensagem" class="input-padrao" required
></textarea>
<fieldset>
<legend>Como prefere o nosso contato?</legend>
<label for="radio-email"><input type="radio" name="contato" value="email" id="radio-email" checked>Email</label>
<label for="radio-telefone"><input type="radio" name="contato" value="telefone" id="radio-telefone">Telefone</label>
<label for="radio-whatsapp"><input type="radio" name="cantato" value="whatsapp" id="radio-whatsapp" >WhatsApp</label>
</fieldset>
<fieldset>
<legend>Qual horário prefere ser atendido?</legend>
<select>
<option>Manha</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<label class="checkbox"><input type="checkbox">Gostariade receber nossas novidades por e-mail?</label>
<input type="submit" value="Enviar formulario" 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="logoalurabranco.jpg" alt="Logo da Barbearia Alura">
<p class="copyright">$copy; Copyrigth Barbearia Alura 2023</p>
</footer>
</body>
</html>