-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
35 lines (24 loc) · 945 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<title>Formulário</title>
</head>
<body>
<form id="formulario">
<h1>ENTRE EM CONTATO CONOSCO</h1>
<div id="campos-formulario-contato">
<input type="text" name="txtNome" id="txtNome" placeholder="Nome *" />
<input type="text" name="txtEmail" id="txtEmail" placeholder="E-mail *" />
<input type="text" name="txtTelefone" id="txtTelefone" placeholder="Telefone ou Skype" />
<textarea name="txtMensagem" id="txtMensagem" placeholder="Mensagem *" rows="4"></textarea>
<div id="botao-enviar-contato" class="botao center">ENVIAR</div>
</div>
<script src="scripts/jquery-3.2.1.js"></script>
<script src="scripts/funcoes.js"></script>
</form>
</body>
</html>