-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (100 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<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 href="style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Budget Calc</title>
</head>
<body>
<header class="bg-dark">
<div class="info" >
<a href="https://github.com/yashbrid03"><img src="github-logo-white (1).png" height="40px" width="40px"></a>
<a href="https://www.instagram.com/yashbrid04/"><img src="http://assets.stickpng.com/images/580b57fcd9996e24bc43c521.png" height="40px" width="40px"></a>
</div>
<h2>Budget Calc</h2>
<p>yashbrid03</p>
</header>
<div>
<section class="s1 ">
<div>
<div class="budget__title">
Available Budget in <span id="month"></span>
</div>
<div class="budget__value" id="f_scr">-0.00 Rs.</div>
<hr>
<div class="budget__income ">
<div >Income</div>
<div >
<div id="upd_inc">+ 0.00</div>
</div>
</div>
<div class="budget__expenses ">
<div >Expenses</div>
<div >
<div id="upd_exp">- 0.00</div>
<div id="exp_fperc">___</div>
</div>
</div>
</div>
</section>
<section class="split">
<section class="s2">
<form class="container split">
<select id="type">
<option value="+">+</option>
<option value="-">-</option>
</select>
<input type="text" id="desc" placeholder="Description">
<input type="number" id="val" placeholder="Value">
<button type="submit" onclick="run()">Add</button>
</form>
<div class="container">
<div class="list split">
<div class="income container">
<h2 class="icome__title">Income</h2>
<hr>
<div class="income__list" id="ilist">
<!-- <div class="item" >
<div>Salary</div>
<div class="right ">
<div>+ 2,100.00</div>
<div>
<div class="item__delete--btn"><i class="fa fa-close" ></i></div>
</div>
</div>
</div> -->
</div>
</div>
<div class="expenses container">
<h2 class="expenses__title">Expenses</h2>
<hr>
<div class="expenses__list" id="elist">
<!-- <div class="item " >
<div >Apartment rent</div>
<div class="right ">
<div >- 900</div>
<div class="item__percentage">21%</div>
<div >
<div class="item__delete--btn"><i class="fa fa-close"></i></div>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<section class="s3 container">
<div ><canvas id="chart-area"></canvas></div>
</section>
</section>
</div>
<script src="app.js"></script>
</body>
</html>