-
Notifications
You must be signed in to change notification settings - Fork 0
/
fale-conosco.php
130 lines (104 loc) · 4.27 KB
/
fale-conosco.php
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE HTML>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Entre em contato com a Smartia Seguros Online e fale conosco.</title>
<meta name="author" content="Smartia" />
<meta name="keywords" content="" />
<meta name="description" content="Querendo entrar em contato com a Smartia Seguros Online? Acesse este link e preencha o formulário para falar conosco." />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="shortcut icon" href="static/v3/images/favico.ico">
<link rel="apple-touch-icon-precomposed" href="static/v3/images/layout/icon-ios.png">
<link rel="stylesheet" href="static/v3/styles/reset.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/bootstrap.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/inside.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/common.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/header.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/footer.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/inputs.css" media="all" />
<link rel="stylesheet" href="static/v3/styles/select.css" media="all" />
<!--[if IE 8]>
<script type="text/javascript" src="static/v3/scripts/ie8.min.js"></script>
<![endif]-->
<!-- Typekit -->
<script type="text/javascript" src="//use.typekit.net/sxe8qvx.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script>
var WAIT_FONTS_INTERVAL = 10;
var WAIT_FONTS_TIMEOUT = 10000;
var WAIT_TIME = 0;
function waitFonts() {
WAIT_TIME += WAIT_FONTS_INTERVAL;
var html = document.getElementsByTagName('html')[0];
if (html.className.indexOf('wf-active') > -1 || WAIT_TIME > WAIT_FONTS_TIMEOUT) {
html.className = html.className.replace(/\bwaitfonts\b/,'');
} else {
window.setTimeout(waitFonts, WAIT_FONTS_INTERVAL);
}
}
waitFonts();
</script>
</head>
<body>
<?php include('includes/header.php'); ?>
<div class="page-title">
<div class="container single-page">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Contato</a></li>
<li class="active">Fale Conosco</li>
</ol>
<h1>Fale Conosco</h1>
<a href="#" class="big-simule-button">Simule agora seu seguro</a>
</div>
</div>
<div class="container">
<span class="double-border"></span>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<section class="page-with-aside with-padding">
<form action="" method="post">
<label for="nome">Nome completo:</label>
<input type="text" name="" />
<div class="row extra-padding">
<div class="col-md-6">
<label for="email">Email:</label>
<input type="text" name="" />
</div>
<div class="col-md-6">
<label for="telefone">Telefone:</label>
<input class="tel" type="text" name="" placeholder="Ex: (XX) 9999-9999" />
</div>
</div>
<br />
<label for="mensagem">Mensagem:</label>
<textarea></textarea>
<div class="row gray-backgound">
<div class="col-md-9 align-right small-p p-with-margin">
<span class="small-p">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque rutrum pellentesque. <br />
Nulla lacinia iaculis nulla non ptulvinar.Lorem ipsum dolor sit amet, consectetur adipiscing. <br />
Quisque rutrum pellentesque imperdiet. Nulla lacinia iaculis nulla non ptulvinar.
</span>
</div>
<div class="col-md-3 no-padding-right">
<button type="button" class="with-margin-2">Enviar »</button>
</div>
</div>
</form>
</section>
<aside class="aside-with-page">
<ul class="aside-links">
<li><a class="active" href="fale-conosco.php">Fale Conosco</a></li>
<li><a class="last" href="trabalhe-conosco.php">Trabalhe Conosco</a></li>
</ul>
</aside>
<br />
</div>
</div>
</div>
<?php include('includes/footer.php'); ?>
<?php include('includes/modal.php'); ?>
<?php include('includes/scripts.php'); ?>
</body>
</html>