-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpag02.html
More file actions
62 lines (58 loc) · 1.68 KB
/
pag02.html
File metadata and controls
62 lines (58 loc) · 1.68 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
<!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>Fale Conosco</title>
<style>
body{
background-color: rgba(15, 16, 15, 0.891);
text-align: center;
}
h3{
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
::placeholder{
text-align: center;
}
textarea{
width: 300px;
height: 300px;
}
p > a{
color: white;
}
</style>
</head>
<body>
<h3>Fale conosco</h3>
<form target="_blank" action="https://formsubmit.co//fulldesenvolvedora76@gmail.com" method="POST">
<input type="hidden" name="_next" value="https://fuca76.github.io/Devocional/sucesso.html"/>
<input type="hidden" name="_autoresponse" value="Recebemos sua Mensagem,obrigada pelo contato!">
<div
class="form-group">
<div class="form-row">
<div class="col">
<input type="text" name="name"
class="form-control" placeholder="Nome" required
>
</div>
<div class="col">
<input type="email" name="email" class="form-control" placeholder="Email" required>
</div>
</div>
</div>
<div class="form-group"
>
<textarea placeholder="Deixe sua Mensagem!" class="form-control" name="message" cols="40" rows="10" required></textarea>
</div>
<button type="submit" class="btn btn-lg btn-dark btn-block
">Enviar
</button>
</form>
</div>
<p><a href="index.html">Voltar</a></p>
</body>
</html>