-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
97 lines (87 loc) · 4.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="imagem/png" href="favicon.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alânpada</title>
</head>
<!--------------------------------------------------------------------- Cabeçalho ---------------------------------------------------------------------------------->
<body>
<div id="container_geral">
<header>
<div class="container">
<div id="logo">
<a href="index.html"><img src="Logo.png" width="300px"></a>
</div>
<div id="menu">
<a href="index.html">Home</a>
<a href="contato.html">Contato</a>
<a href="sobre.html">Sobre</a>
</div>
</div>
</header>
<!------------------------------------------------------------------------ END Cabeçalho ---------------------------------------------------------------------------->
<!----------------------------------------------------------------------------- Corpo ------------------------------------------------------------------------------->
<div>
<center>
<div id="corpo_contato" class="corpo">
<div class="tela">
<h1>Fale comigo pelas redes sociais:</h1>
<a href="https://api.whatsapp.com/send?1=pt_BR&phone=5584998137303" target="_blank"><img src="whats.png" width="60px"></a>
<a href="https://www.instagram.com/alan_lm37/" target="_blank"><img src="insta.png" width="60px"></a>
<a href="https://www.facebook.com/profile.php?id=100035772861952" target="_blank"><img src="face.png" width="60px"></a>
<h1>Ou envie-me uma mensagem:</h1>
<form id="form" action="" method="post" enctype="multipart/form-data">
<div>
<label for=""></label>
<input style="margin-bottom:10px; width: 505px" class="form-control" type="text" name="nome" required="required" placeholder="Seu nome">
</div>
<div>
<label for=""></label>
<input style="margin-bottom:10px; width: 505px" class="form-control" type="text" name="email" required="required" placeholder="Seu E-mail">
</div>
<div>
<label for=""></label>
<input style="margin-bottom:10px; width: 505px" class="form-control" type="tel" name="numero" required="required" placeholder="Seu Número +55 (DDD)9xxxx-xxxx">
</div>
<div>
<label for=""></label>
<textarea style= "resize: vertical" class="form-control" name="mensagem" required="required" placeholder="Sua mensagem" cols="70" rows="20"></textarea>
</div>
<div>
<button style="background-color: green; color: white; padding: 2px; cursor: pointer" type="submit">Enviar</button>
</div>
</form>
</div>
</div>
</center>
</div>
<!------------------------------------------------------------------------ END Corpo -------------------------------------------------------------------------------->
<!--------------------------------------------------------------------------- Rodapé -------------------------------------------------------------------------------->
<footer>
<div class="container">
<center>
<div id="menu2">
<a href="index.html">Home</a>
|
<a href="contato.html">Contato</a>
|
<a href="sobre.html">Sobre</a>
</div>
<div id="contatos2">
<a href="https://api.whatsapp.com/send?1=pt_BR&phone=5584998137303" target="_blank"><img src="whatsapp.png" width="30px"></a>
<a href="https://www.instagram.com/alan_lm37/" target="_blank"><img src="instagram.png" width="30px"></a>
<a href="https://www.facebook.com/profile.php?id=100035772861952" target="_blank"><img src="facebook.png" width="30px"></a>
</div>
<div id="EJECT">
<p>ProSEmpre - EJECT © 2020 | Desenvolvido por Alan Lima</p>
</div>
</center>
</div>
</footer>
</div>
<!------------------------------------------------------------------------ END Rodapé -------------------------------------------------------------------------------->
</body>
</html>