-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulacao.html
143 lines (125 loc) · 5.05 KB
/
simulacao.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<html lang="pt-br">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<title>Simulação</title>
</head>
<style>
.titulo {
background-color: #66b2ff;
padding: 15px;
}
.texto {
color: white;
/* max-width: 0vw; */
margin: auto;
font-size: 1.80rem;
}
body {
background-color: gainsboro;
}
.fa {
font-size: 60px;
opacity: 0.5;
color: black;
}
.col-centered {
float: none;
margin: 0 auto;
}
.pesquisar{
border-radius: 15px;
font-size: 20px;
}
</style>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo01"
aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Alterna navegação">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">
<img class="d-inline-block align-top" width="30" src="./img/logo.png">
</a>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Perfil</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Simulação</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Sair</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row titulo text-center">
<div class="col-2 float-left">
<a href="">
<i class="fa fa-angle-left"></i>
</a>
</div>
<div class="col-9 float-right mt-2">
<h3 class="texto">Simulação</h3>
</div>
</div>
<div class="row cadastro mt-4">
<div class="col-sm-12 col-md-6 col-lg-4 col-xl-3 col-centered text-center">
<form>
<div class="form-group">
<input type="number" class="form-control" placeholder="Qual a sua renda?"
placeholder="Nome Completo">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Quanto dará de entrada?">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Qual o ano/modelo do veículo?">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Qual a sua marca favorita?">
</div>
<div class="col-6 float-left mt-3">
<div class="form-check">
<input type="checkbox" class="form-check-input">
<label class="form-check-label">Novo/0 km</label>
</div>
</div>
<div class="col-6 float-right mt-3">
<div class="form-check">
<input type="checkbox" class="form-check-input">
<label class="form-check-label">Seminovo</label>
</div>
</div>
<div class="btn-group mt-5">
<a href="" class="btn btn-primary pesquisar">Pesquisar</a>
</div>
</form>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
</body>
</html>