-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
70 lines (66 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Kestt</title>
<link rel="stylesheet" href="assets/stylesheets/main.css">
</head>
<body>
<header>
<div class="logo" data-href="index.html" ></div>
<nav>
<a href="#" class="trigger">
<span></span>
<span></span>
<span></span>
</a>
<ul>
<li><a href="#">Language</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="midia.html">Mídia</a></li>
<li class="active"><a href="contato.html">Contato</a></li>
<li class="login"><a href="entrar.html">Entrar</a></li>
</ul>
<!-- <a href="#" class="login"> Entrar </a> -->
</nav>
</header>
<section class="contact">
<h1>contato</h1>
<div class="container">
<div class="column">
<form action="/" method="post" accept-charset="utf8">
<input type="text" placeholder="Nome">
<input type="text" placeholder="E-Mail">
<input type="text" placeholder="Telefone">
<textarea placeholder="Mensagem"></textarea>
<button type="submit"> enviar </button>
</form>
</div>
<div class="column">
<ul class="contact-info">
<li><i class="icon pin"></i><span>Endereço</span></li>
<li><i class="icon phone"></i><span>telefone</span></li>
<li><i class="icon email"></i><span>email</span></li>
</ul>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="logo" data-href="index.html" ></div>
<span class="copyright">
© 2016
</span>
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
</footer>
<script src="assets/scripts/jquery.js" charset="utf-8"></script>
<script src="assets/scripts/main.js" charset="utf-8"></script>
<script src="https://use.fontawesome.com/2ca130448b.js"></script>
</body>
</html>