-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Expense Tracker</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='stylesheet' type='text/css' media='screen' href='/css/main.css'>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link href="public/font.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body style="background-color: #f3e853">
<div class="container1" >
<h1 id="header" data-aos="fade-down" data-aos-easing="linear" data-aos-duration="700">Simple Expense Tracker</h1>
<h4 id="closing">Closing Balance</h4>
<h3 id="cbalance">0.00</h3>
<div class="row" id="box">
<div class="col-md-5 income" data-aos="fade-right" data-aos-duration="1500">
<span><i class="far fa-money-bill-alt" style='font-size:40px;color:black'></i></span>
<h3>Income</h3>
<h3 id="income">0.00</h3>
</div>
<div class="col-md-5 expense" data-aos="fade-left" data-aos-duration="1500">
<span><i class='fas fa-hand-holding-usd' style='font-size:42px;color:black'></i></span>
<h3>Expense</h3>
<h3 id="expense">0.00 </h3>
</div>
</div>
<div class="col-md-8 mx-auto form">
<div class="descrip">
<input type="text" id="descrip" placeholder="Type your (Expense or Income) description">
</div>
<label for="basic-url" id="form-label">Amount<br>
(positive for income, negative for expense)</label><br>
<div class="input-group">
<input type="number" class="form-control" id="input">
<span class="sideicon">Rs</span>
</div>
</div>
<div class="btn-div col-md-4">
<button class="button mx-5" type="button" id="Save" onclick="expense()">Add Transaction</button>
</div>
</div>
<div id="transaction_record">
<h2 class="tran_his">Transaction History</h2>
<h5 id="remover">Click the History to delete</h5>
</div>
</body>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src='/javas/script.js'></script>
<script>AOS.init();</script>
</html>