-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
67 lines (54 loc) · 1.94 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
<!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">
<title>Açaí Puríssimo - Contato</title>
<link rel="stylesheet" href="style.css">
</head>
<header>
<nav>
<img width="142" height="46" src="logo-acai-purissimo.png" title="logo-açai-purissimo" alt="logo-açai-purissimo">
<ul>
<li><a href="index.html" class="menu-item">HOME</a></li>
<li><a href="pedido.html" class="menu-item">FAZER PEDIDO</a></li>
<li><a href="portifolio.html" class="menu-item">PORTIFÓLIO DESENVOLVEDOR</a></li>
</ul>
</nav>
</header>
<main>
<form action="http://formmail.kinghost.net/formmail.cgi" method="POST">
<input type="hidden" name="recipient" value="[email protected]"> <!-- Pode ser qualquer endereço de email -->
<input type="hidden" name="redirect" value="http://seudominio"> <!-- Após o envio, o usuário será redirecionado para a página configurada aqui -->
<input type="hidden" name="subject" value="teste de assunto"> <!-- Assunto da mensagem -->
<input type="hidden" name="email" value="email@doseudominio"> <!-- Deve ser uma conta de email ativa em seu domínio -->
<p>
Nome:<br />
<input type="text" size="30" name="nome">
</p>
<p>
E-mail:<br />
<input type="text" size="30" name="replyto">
</p>
<p>
Comentários:<br />
<input type="text" size="35" name="Comentarios">
</p>
<p>
<input type="submit" name="BTEnvia" value="Enviar">
<input type="reset" name="BTApaga" value="Apagar"> </p>
</form>
</main>
<br>
<br>
<br>
<br>
<br>
<footer id="rodape">
<img width="142" height="46" src="logo-acai-purissimo-branca.png" alt="">
<br>
<p>TODOS OS DIREITOS RESERVADOS © AÇAÍ PURÍSSIMO</p>
</footer>
</body>
</html>