-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 2.71 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Money Tracker - Ravindra</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;1,400;1,500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Concert+One&family=Grandstander:ital,wght@0,300;0,500;0,800;1,300&display=swap" rel="stylesheet">
<link rel='stylesheet' href="bootstrap.min.css">
</head>
<body style="background-color: rgba(255, 166, 0, 0.822);">
<div class="container1" >
<h1 id="header" data-aos="fade-down" data-aos-easing="linear" data-aos-duration="700">Money Tracker</h1>
<h4 id="closing">Available 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 value for income, negative value for expense)</label><br>
<div class="input-group">
<input type="number" class="form-control" id="input">
<span class="sideicon">.00</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='script.js'></script>
</html>