-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.html
39 lines (37 loc) · 1.25 KB
/
email.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
<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>Formulário de Contato</title>
<link rel="icon" href="./assets/ico.ico">
<link rel="stylesheet" href="./styles/email.css">
</head>
<body>
<body>
<h1 class="formulario">Formulário de Contato</h1>
<form
action="https://formsubmit.co/jpgercc@gmail.com"
method="POST"
class="form"
>
<label for="name">Nome</label>
<input type="text" name="name" id="name" required />
<label for="email">E-mail</label>
<input type="email" name="email" id="email" required />
<label for="message">Mensagem</label>
<textarea name="message" id="message" required></textarea>
<input type="hidden" name="_captcha" value="false" />
<input
type="hidden"
name="_next"
value="https://jpgercc.github.io/portfolio/obrigado.html"
/>
<button type="submit">Enviar</button>
</form>
<footer class="rodape">
<p>Site em desenvolvimento por:</p>
<p> João Pedro Gershenson Costa.</p>
</footer>
</body>
</html>