-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
80 lines (73 loc) · 3.29 KB
/
contact.html
File metadata and controls
80 lines (73 loc) · 3.29 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Contato</title>
<link rel="stylesheet" href="assents/css/general.css">
<link rel="stylesheet" href="assents/css/contacts.css">
<link rel="icon" href="assents/img/favicon.png">
</head>
<body>
<div class="cabecalho">
<table>
<tr>
<th colspan="2" align="left"><a href="index.html"><img src="assents/img/Logo.png"></a></th>
<th align="right" class="reduzir_coluna"><a href="index.html">Home</a></th>
<th align="right"> | </th>
<th align="right" class="reduzir_coluna"><a href="products.html">Produtos</a></th>
<th align="right"> | </th>
<th align="right" class="reduzir_coluna"><a href="cart.html">Carrinho</a></th>
<th align="right"> | </th>
<th align="right" class="reduzir_coluna"><a href="contact.html">Contato</a></th>
</tr>
<tr>
<th colspan="2"><input type="search" style=" width: 100%; height: 30px;"></th>
<th><a href="products.html"><button style="background-color: var(--cor-terciaria); color: var(--cor-secundaria); border-radius: 5px;">🔍︎</button></a></th>
</tr>
</table>
</div>
<div class="fundo">
<h3 style="text-align: center;">Faça a sua solicitação de contato</h3>
<form action="resposta.php" method="get">
<label for="nome">Nome: </label>
<input type="text" name="nome" placeholder="Seu nome aqui">
<br>
<label for="email">E-mail: </label>
<input type="email" name="email" placeholder="Seu E-mail aqui">
<br>
<input type="radio" name="tipo_contato" id="ajuda" value="ajuda">
<label for="ajuda">Ajuda para Finalizar a compra</label>
<input type="radio" name="tipo_contato" id="elogio" value="elogio">
<label for="elogio">Elogio</label>
<input type="radio" name="tipo_contato" id="reclamacao" value="reclamacao" disabled>
<label for="reclamacao">Reclamação (Desativado)</label>
<br>
<label for="solicitacao">Solicitação: </label><br>
<textarea name="solicitacao" placeholder="Digite aqui a sua solicitação" style="width: 100%; height: 80px;"></textarea>
<br>
<button type="submit" name="enviar">Enviar</button>
</form>
</div>
</body>
<footer>
<table>
<tr>
<td>Acessibilidade</td>
<td>Contato</td>
<td>Trabalhe conosco</td>
<td>Termos e condições</td>
</tr>
<tr>
<td>Em postergação</td>
<td><a href="contact.html">Formulário</a></td>
<td>Limite do grupo atingido</td>
<td>Não reclamar do site</td>
</tr>
<tr>
<td></td>
<td>4002-8922</td>
</tr>
</table>
<p style="text-align: center; margin: 0px;">Copyright © 59ac-2026 BobblePop Store LTDA.</p>
</br>
</footer>
</html>