-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex principal.html
94 lines (85 loc) · 2.45 KB
/
index principal.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>contato e duivda</title>
<link rel="stylesheet"type="text/css" href="goetia.css">
<link rel="stylesheet"type="text/css" href="stlye.css">
</head>
<body>
<header>
<div class="caixa">
<h1> <img src="logo.png" alt="goetia principal"></<h1>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="produtos.html">produtos</a></li>
<li><a href="pagina2.html">contatos</a></li>
</ul>
</nav>
</div>
</header>
<main>
<h2> contato</h2>
<form>
<label for="email"> nome e sobrenome</label>
<input type="text" id="nomesobrenome" class="input-padrao"required>
<label for="email">email para recebo de pagamento </label>
<input type="email" id="email"class="input-padrao"required
placeholder="seumail@dominio.com">
<label for="telefone">contato para atualizações</label>
<input type="tel" id="telefone"class="input-padrao"required
placeholder="(xx) xxxxx-xxxx">
<label for="mensagem">deixa sua obs se quiser ou necessar</label>
<textarea cols="70" rows="10" cols="80" id="mensagem"class="input-padrao"
required> </textarea>
<fieldset>
<legend> voce prefere receber informações em qual app abaixo</legend>
<label for="radio-email"><input type="radio"
name="contato" value= "email" id="radio-email">
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="contato" value= "whatsapp" id="radio-whatsapp">
whatsapp</label>
</fieldset>
<fieldset>
<legend>preferencia de entregas dos itens </legend>
<select>
<OPTION> Manhã</OPTION>
<OPTION> Tarde </OPTION>
<OPTION>Noite </OPTION>
</select>
</fieldset>
<label class="checkbox"><input type="checkbox"checked>sou maior de 18 anos e tenho conciencia de meus atos </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>
<td>sexta</td>
<td>8h~20h</td>
</tbody>
</table>
</main>
<footer>
<img src="cop.png" alt="logo da barbearia alura ">
<p class="copyright">© copyright barbearia alura -2023</p>
</footer>
</body>
</html>