-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>Calculador de Juros Maquininha</title>
<meta charset="utf-8">
</head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<body style="background-color: pink;">
<div class="container-fluid">
<div class="well rounded">
<div class="row">
<!-- <div class="col-xs-12"> -->
<!-- <div class="col-md-12"> -->
Valor: <input type="text" name="valor" id="valor" required>
<!-- Parcelas: <input type="text" id="parcela" name="parcela" id="parcela" required> -->
<button type="submit" id="submit">Calcular</button>
<!-- <button type="submit" id="limpar">Limpar</button> -->
<div class="table-responsive table-hover">
<table class="table" id="valores">
<thead>
<tr>
<th>Tipo</th>
<th>Parcela</th>
<th>Quantidade</th>
<th>Valor a receber</th>
<th>Diferença</th>
<th>Parcela</th>
<th>Bandeira</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<!-- </div> -->
<!-- </div> -->
</div>
</div>
</div>
<script src="manup.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/negocio.js"></script>
</body>
</html>