-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopcao-profissional.php
More file actions
87 lines (78 loc) · 4.2 KB
/
opcao-profissional.php
File metadata and controls
87 lines (78 loc) · 4.2 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>servClick</title>
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/lightbox.css" rel="stylesheet">
<link href="assets/css/animate.min.css" rel="stylesheet">
<link href="assets/css/main.css" rel="stylesheet">
<link href="assets/css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="assets/images/ico/favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/images/ico/apple-touch-icon-57-precomposed.png">
<script type="text/javascript">var switchTo5x=true;</script>
<!--
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "7e8eb33b-fbe0-4915-9b93-09490e3d10df", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>
-->
</head>
<body>
<header id="header">
<div class="navbar navbar-inverse" role="banner">
<div class="container">
<div class="navbar-header mt0">
<div class="topo">
<a class="arrow" href="javascript:history.back()"><i class="fa fa-arrow-left fa-3x"></i></a>
<div class="topo-arrow">
<label>
<?php
$titulo=explode('/', ucfirst($_SERVER['REQUEST_URI']) ) ;
$titulo=explode('.php',end($titulo));
$titulo = explode('-', $titulo[0]);
$titulo = implode(" ",$titulo);
$titulo = ucwords($titulo);
echo $titulo;
?>
</label>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="services">
<div class="container pt15">
<div class="row">
<div class="col-sm-4 text-center padding wow fadeIn" data-wow-duration="1000ms" data-wow-delay="300ms" style="padding: 5px;">
<div class="single-service">
<div class="wow scaleIn" data-wow-duration="500ms" data-wow-delay="300ms">
<img src="assets/images/profissional/fisico.png" alt="">
</div>
<a class="btn btn-btn btn-default" href="view/fisico/cadastro.php">Profissional Pessoa Física</a>
<p>Para você que é qualificado e atua por conta própria.</p>
</div>
</div>
<div class="col-sm-4 text-center padding wow fadeIn" data-wow-duration="1000ms" data-wow-delay="600ms" style="padding: 5px;">
<div class="single-service">
<div class="wow scaleIn" data-wow-duration="500ms" data-wow-delay="600ms">
<img src="assets/images/profissional/juridico.png" alt="">
</div>
<a class="btn btn-btn btn-default" href="view/juridico/cadastro.php">Profissional Pessoa Jurídica</a>
<p>Para empresas atuantes e com ótimos profissionais dedicados.</p>
</div>
</div>
</div>
</div>
</section>
<?php require_once 'footer.php'; ?>