-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<title>Calculadora de Juros</title>
</head>
<body>
<main id="container">
<div id="calculator">
<h1>Calculadora de Juros Compostos</h1>
<div id="input_box">
<div class="input-field">
<label for="value">Aporte Financeiro <i>(Valor da Aplicação)</i> :</label>
<input type="number" id="value" />
</div>
<div class="input-field">
<label for="fee">Taxa de Juros <i>(a.m.)</i> :</label>
<input type="number" id="fee" />
</div>
<div class="input-field">
<label for="time">Tempo de Rendimento <i>(meses)</i> :</label>
<input type="number" id="time" />
</div>
</div>
<div id="result">
<h2>Resultado do Investimento</h2>
<p><i>Sua aplicação irá render</i></p>
<span id="total">R$ 0,00</span>
</div>
<button id="calculate">Calcular</button>
</div>
</main>
<footer>
<h3>Copyright © 2024 - Desenvolvido por <b><a href="https://www.linkedin.com/in/valdezjulian"
target="_blank" title="Julian Valdez | LinkedIn">Julian Valdez</a></b></h3>
</footer>
<script type="text/javascript" src="./script.js"></script>
</body>
</html>