This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.asp
94 lines (84 loc) · 4.02 KB
/
contato.asp
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GBPD - Grupo Brasileiro de Professores de Dentística</title>
<link href="logo.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" media="screen" href="css/gbpd-theme.css">
<!-- Bootstrap 4 -->
<link rel="stylesheet" media="screen" href="css/bootstrap.min.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/af40653a1b.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<!--#include file="menu.asp"-->
</header>
<!-- CONTATO -->
<section id="contact">
<div class="container">
<div class="row justify-content-center">
<div class="col col-sm-8">
<div class="card">
<div class="card-header">
<h4>Entre em Contato</h4>
</div>
<div class="banner-contact"></div>
<a href="https://br.freepik.com/fotos-vetores-gratis/negocio"><small>© Designed by yanalya / Freepik</small></a>
<hr>
<div class="card-body">
<form action="#" method="POST">
<div class="form-row">
<div class="col">
<div class="form-group">
<label for="nome">Nome</label>
<input type="text" class="form-control" name="nome" id="nome" placeholder="Seu nome completo">
</div>
<div class="form-group">
<label for="email">E-mail</label>
<input type="email" class="form-control" name="email" id="email" placeholder="Seu e-mail principal">
</div>
<div class="form-group">
<label for="assunto">Assunto</label>
<input type="text" class="form-control" name="assunto" id="assunto" placeholder="Assunto">
</div>
<div class="form-group">
<label for="msg">Mensagem</label>
<textarea class="form-control" name="msg" id="msg" cols="80" rows="8" placeholder="Escreva aqui a sua mensagem"></textarea>
</div>
<div class="form-group">
<button type="submit">Enviar</button>
</div>
</div>
<div class="col-sm-4">
<div class="card-body">
<h4>Grupo Brasileiro de Professores de Dentística - GBPD</h4>
<p><a href="mailto:gbpd@gbpd.com.br">gbpd@gbpd.com.br</a></p>
<p>
Para maiores esclarecimentos, preencha o formulário ao lado ou entre em contato com a Diretoria da GBPD pelo endereço:
<address>
Rua Joaquim Ferreira, 147 / 151 A - Torre Pacaembu - São Paulo - SP<br>
CEP: 05033080
</address>
</p>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<!--#include file="footer.asp"-->
</footer>
<script src="js/gbpd.js"></script>
<!-- jQuery and Bootstrap 4 -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>