-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
116 lines (103 loc) · 3.67 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="uft-8">
<title>Bikecraft - Sobre</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/produtos.css">
<link rel="stylesheet" href="css/contato.css">
<link rel="stylesheet" href="css/responsivo.css">
</head>
<body>
<header class="header">
<div class="container">
<a href="index.html" class="grid-4" >
<img src="img/bikcraft.svg" alt="Bikcraft">
</a>
<nav class="grid-12 header_menu">
<ul>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="produtos.html">Produtos</a></li>
<li><a href="portfolio.html">Portifólio</a></li>
<li><a href="contato.html" class="menu_ativo">Contato</a></li>
</ul>
</nav>
</div>
</header>
<section class="introducao-interna interna_contato">
<div class="container">
<h1>Contato</h1>
<p>tire as suas dúvidas com a gente</p>
</div>
</section>
<section class="contato container">
<form id="form_orcamento" class="contato_form grid-8">
<label for="nome">Nome</label>
<input type="text" id="nome">
<label for="email">Email</label>
<input type="text" id="email">
<label for="telefone">Telefone</label>
<input type="text" id="telefone">
<label for="espec">Especificações</label>
<textarea id="espec"></textarea>
<button type="submit" class="btn btn-preto">Enviar</button>
</form>
<div class="contato_dados grid-8">
<h3>Dados</h3>
<span>+55 21 9323 3232</span>
<span>[email protected]</span>
<span>Rua Ali Perto - Botafogo</span>
<span>Rio de Janeiro - RJ - Brasil</span>
<h3>Redes Sociais</h3>
<ul>
<li><a href="http://facebook.com" target="_blank"><img src="img/redes-sociais/facebook.svg"></a></li>
<li><a href="http://instagran.com" target="_blank"><img src="img/redes-sociais/instagram.svg"></a></li>
<li><a href="http://twtter.com" target="_blank"><img src="img/redes-sociais/twitter.svg"></a></li>
</ul>
</div>
</section>
<section class="container contato_mapa">
<a href="http://google.com" target="_blank" class="grid-16"><img src="img/endereco-bikcraft.jpg" alt="Endereço Bikcraft"></a>
</section>
<section class="quebra">
<blockquote class="quote-externo container">
<p> "O verdadeiro segredo da felicidade está em ter um genuíno interesse por todos os detahes da vida cotidiana"</p>
<cite>WILLIAM MORRIS</cite>
</blockquote>
</section>
<footer>
<div class="footer">
<div class="container">
<div class="grid-8 footer_historia" >
<h3>Nossa História</h3>
<p>"O verdadeiro segredo da felicidade está em ter um genuíno interesse por todos os detahes da vida cotidiana"</p>
</div>
<div class="grid-4 footer_contato">
<h3>Contato</h3>
<uil>
<li>21 2132-4343</li>
<li>[email protected]</li>
<li>Botafogo - RJ</li>
</uil>
</div>
<div class="grid-4 footer_redes">
<h3>Contato</h3>
<ul>
<li><a href="http://facebook.com" target="_blank"><img src="img/redes-sociais/facebook.svg"></a></li>
<li><a href="http://instagran.com" target="_blank"><img src="img/redes-sociais/instagram.svg"></a></li>
<li><a href="http://twtter.com" target="_blank"><img src="img/redes-sociais/twitter.svg"></a></li>
</ul>
</div>
</div>
</div>
<div class="copy">
<div class="container">
<p class="grid-16"> Bikcraf 2015 - Alguns direitos reservados.</p>
</div>
</div>
</footer>
</body>
</html>