forked from ShoroukAziz/notion_widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
financial-goals.html
70 lines (61 loc) · 1.52 KB
/
financial-goals.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/js/all.min.js"></script>
<title>Document</title>
<style>
body{
background-color: white;
}
.box{
background-color: mediumseagreen;
width: 160px;
padding: 15px;
border-radius: 10px;
text-align: center;
color: aliceblue;
font-family: monospace;
display: inline-block;
margin: 10px;
}
.box2{
background-color: chocolate;
}
.box:hover{
background-color: #E91E63;
}
.header{
font-size: 50px;
font-family: fantasy;
}
.header2{
font-size: 40px;
}
</style>
</head>
<body>
<div class="box">
<div class="header"> <i class="fas fa-coins"></i><br>
300% </div>
of sallary is available as a liqued asset
</div>
<div class="box">
<div class="header"> <i class="fas fa-funnel-dollar"></i><br>
30% </div>
of sallary goes to savings (investment certificate)
</div>
<br>
<div class="box box2">
<div class="header header2"> <i class="fas fa-coins"></i><br>
24000 LE </div>
Goal
</div>
<div class="box box2" >
<div class="header header2"> <i class="fas fa-funnel-dollar"></i><br>
5600 LE </div>
per month
</div>
</body>
</html>