-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculadora de Juros Compostos</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Calculadora de Juros Compostos</h1>
<label for="principal">Principal (R$):</label>
<input type="number" id="principal" step="0.01">
<label for="mensal">Depósito Mensal (R$):</label>
<input type="number" id="mensal" step="0.01">
<label for="taxa">Taxa de Juros (% ao ano):</label>
<input type="number" id="taxa" step="0.01">
<label for="tempo">Tempo (anos):</label>
<input type="number" id="tempo">
<label for="n">Número de vezes que os juros são compostos por ano:</label>
<input type="number" id="n">
<button onclick="calcularJuros()">Calcular</button>
<div id="resultado"></div><br>
<!-- Logo marca -->
<div class="logo">
<img style=" width:75px;" src="logo1.jpg">
</div>
<!-- Rodapé -->
<footer>
<div class="logo-rodape">
<p style="color: black">Construido com Javascript</p>
</div>
<b style="color: black">©Todos os direitos reservados.</b><br>
<b style="color: black">Criado por Julio Abreu ∴</b><br>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>