-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (31 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<title>Formulário de Contato - Fernanda Paulo Ramos</title>
</head>
<body>
<nav>
<div class="nav-wrapper blue darken-4">
<h3 class="brand-logo center" style="margin-bottom: 10px">Formulário de contato</h3><Br><Br>
</div>
</nav><br><Br>
<div class="container">
<form action="https://formspree.io/mnqgalwg" method="POST">
<label for="nome">Nome:</label><br>
<input type="text" id="nome" name="name" placeholder="Informe seu Nome" required><br>
<label for="_replyto">E-mail:</label><br>
<input type="email" id="email" name="_replyto" placeholder="Informe seu E-mail" required><br>
<input type="hidden" name="_subject" value="[Site Fernanda Ramos] - Contato pelo formulário" />
<input type="hidden" name="_next" value="//fernandaramos84.github.io/formContato/obrigada.html" />
<label for="message">Mensagem:</label><br>
<textarea name="message" rows="10" cols="100" maxlength="2500" placeholder="Informe sua mensagem" required></textarea>
<input type="text" name="_gotcha" style="display:none" /><Br>
<input class="button" type="submit" value="Enviar" title="Clique aqui para enviar sua mensagem">
</form>
</div>
</body>
</html>