-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
88 lines (87 loc) · 2.82 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculo de Economia</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<section id="wrapper">
<header>
<h1>Cálculo de Economia</h1>
</header>
<form action="#" id="calculo">
<input type="text" name="dailyMileage" placeholder="Quilometragem diária:" />
<input type="submit" value="calcular" />
</form>
<!-- Resultado: 3.000km/12k/l. -->
<div id="resultado">
Informe a sua km diária.
</div>
<section class="tables-page-section" ="service">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section_title text-center">
<h2>Tabela de Viabilidade</h2>
<div class="brand_border">
<i class="fa fa-minus" aria-hidden="true"></i>
<i class="fas fa-handshake"></i>
<i class="fa fa-minus" aria-hidden="true"></i>
</div>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. <br>Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="table-responsive">
<table class="table center-align">
<thead>
<th></th>
<th>Simulação de Economia<br>(Período de 180 dias)</th>
</thead>
<tr>
<th>1º mês</th>
<td>R$ 1.643,04</td>
</tr>
<tr>
<th>2º mês</th>
<td>R$ 1.618,39</td>
</tr>
<tr>
<th>3º mês</th>
<td>R$ 1.528,03</td>
</tr>
<tr>
<th>4º mês</th>
<td>R$ 1.470,52</td>
</tr>
<tr>
<th>5º mês</th>
<td>R$ 1.437,66</td>
</tr>
<tr>
<th>6º mês</th>
<td>R$ 1.421,23</td>
</tr>
</table>
</div>
</div>
<h4>VALORES MENSAIS</h4>
<p>VALOR MÉDIO DO ALUGUEL:<br><b>R$ 1.519,81</b>.</p>
<P>VALOR MÉDIO DA GASOLINA:<br><b>R$ 1.172,5</b>.</P>
<p>VALOR TOTAL:<br><b>R$ 2.692,31</b>.</p>
<!--<p>Valor Total:<br><b>R$ 9.118,87</b>.</p>-->
<p>Você já pensou nas vantagens de alugar um carro na Localiza? Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. <br>Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes</p>
<a href="sendmail/">O UBER ficou mais barato? Converse com a gente!</a>
</div>
</div>
</section>
</section>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>