-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (93 loc) · 4.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Finanças Checklist</title>
</head>
<body>
<!-- Form as a checklist -->
<section class="container">
<header>
<div class="container-title">
<img class="img-title" src="images/img01.gif" alt="Imagem animada de uma mão com moedas">
<h1 id="title">Checklist da Saúde Financeira</h1>
</div>
</header>
<form action="">
<!-- Images' credits to: http://www.freepik.com -->
<div class="inbox">
<div class="item">
<input id="checkbox-01" class="checkbox" type="checkbox" autofocus>
<label for="checkbox-01">Gasto menos do que eu ganho!</label>
<img src="images/icon-01.png" class="icon" alt="Imagem de uma pessoa frente a um gráfico multidimensional representando a divisão da sua renda por setor">
</div>
<div class="item">
<input id="checkbox-02" class="checkbox" type="checkbox">
<label for="checkbox-02">Controlo meu dinheiro e não compro por impulso!</label>
</div>
<div class="item">
<input id="checkbox-03" class="checkbox" type="checkbox">
<label for="checkbox-03">Rastreio os meus gastos diariamente!</label>
<img src="images/icon-02.png" class="icon" alt="Imagem de uma pessoa segurando uma lupa frente a notas e moedas, ao lado há uma seta apontado para cima">
</div>
<div class="item">
<input id="checkbox-04" class="checkbox" type="checkbox">
<label for="checkbox-04">Tenho metas financeiras claras e bem planejadas!</label>
</div>
<div class="item">
<input id="checkbox-05" class="checkbox" type="checkbox">
<label for="checkbox-05">Mantenho uma reserva de emergência!</label>
<img src="images/icon-03.png" class="icon" alt="Imagem de um pote com moedas e uma mão depositando mais moedas nele">
</div>
<div class="item">
<input id="checkbox-06" class="checkbox" type="checkbox">
<label for="checkbox-06">Faço uso inteligente do cartão de crédito!</label>
</div>
<div class="item">
<input id="checkbox-07" class="checkbox" type="checkbox">
<label for="checkbox-07">Nunca contraio empréstimos pessoais!</label>
<img src="images/icon-04.png" class="icon" alt="Imagem de uma pessoa segurando um tablet e analisando um montante de dinheiro à sua frente">
</div>
<div class="item">
<input id="checkbox-08" class="checkbox" type="checkbox">
<label for="checkbox-08">Possuo investimentos variados e que valem a pena!</label>
</div>
<div class="item">
<input id="checkbox-09" class="checkbox" type="checkbox">
<label for="checkbox-09">Cultivo cada dia uma mente investidora!</label>
<img src="images/icon-05.png" class="icon" alt="Imagem de uma pessoa com os braços para cima comemorando em meio a uma seta apontando para cima e moedas flutuando">
</div>
</div>
</form>
</section>
<div class="button">
<button id="btn-result">Descubra o resultado!</button>
</div>
<section class="box">
<!-- Content from the first result in JS -->
<div>
<img id="img01" src="">
<h2 id="result-a"></h2>
</div>
<!-- Content from the second result in JS -->
<div>
<img id="img02" src="">
<h2 id="result-b"></h2>
</div>
<!-- Content from the third result in JS -->
</div>
<img id="img03" src="">
<h2 id="result-c"></h2>
</div>
</section>
<!-- Footer -->
<footer>
<p class="box-footer">Page created with 💙 by © Josie Lima 2022</p>
</footer>
<script src="script.js"></script>
</body>
</html>