-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (43 loc) · 1.4 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
<!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="css/style.css" />
<title>Controle de despesas</title>
</head>
<body>
<h2>Controle de despesas</h2>
<div class="container">
<h4>Saldo atual</h4>
<h1 id="balance" class="balance">R$ 0.00</h1>
<div class="inc-exp-container">
<div>
<h4>Receitas</h4>
<p id="money-plus" class="money plus">+ R$0.00</p>
</div>
<div>
<h4>Despesas</h4>
<p id="money-minus" class="money minus">- R$0.00</p>
</div>
</div>
<h3>Transações</h3>
<ul id="transactions" class="transactions"></ul>
<h3>Adicionar transação</h3>
<form id="form">
<div class="form-control">
<label for="text">Nome</label>
<input autofocus type="text" id="text" placeholder="Nome da transação" />
</div>
<div class="form-control">
<label for="amount">Valor <br />
<small>(negativo - despesas, positivo - receitas)</small>
</label>
<input type="number" id="amount" placeholder="Valor da transação" />
</div>
<button class="btn">Adicionar</button>
</form>
</div>
<script src="js/script.js"></script>
</body>
</html>