-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" type="image/png" href="imgs/UnBIcon.png"/>
<title>Calculadora de IRA UnB</title>
</head>
<body onload="checkLocalStorage();">
<h1 id="titulo">Calculadora de IRA</h1>
<div class="container" id="container">
<div id="linhaSuperior">
<button id="novoPeriodo" class="btn btn-success" onclick="criaPeriodo()">Novo Período</button>
<h3 id="ira-mp">IRA: 0.00 MP: 0.00</h3>
</div>
<div id="periodo1">
<h3>1º Período</h3>
</div>
</div>
<footer>
<p>Este não é um site oficial da Universidade de Brasília. O IRA calculado aqui não pode ser utilizado para fins de comprovação de rendimento acadêmico.</p>
</footer>
</body>
<script src="./js/functionality.js"></script>
</html>