-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (76 loc) · 2.2 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
<!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" />
<title>Expense Tracker</title>
<link rel="stylesheet" href="style.css" />
<script src="./main.js"></script>
</head>
<body>
<div class="container">
<h1>Track Your Expense</h1>
<div class="bal-container">
<span>Balance Amount</span>
<span class="balance" id="balance">₹0.00</span>
</div>
<div class="inc-exp-container">
<div>
<span>INCOME</span>
<p id="money-plus" class="money-plus">₹0.00</p>
</div>
<div class="rule"></div>
<div>
<span>EXPENSE</span>
<p class="money-minus" id="money-minus">₹0.00</p>
</div>
</div>
<h3>History</h3>
<ul id="list" class="list"></ul>
<div class="trans-container">
<h3>Add new Transaction</h3>
<form id="form" onsubmit="onSub(event)">
<div class="form-control">
<label for="Text">Description</label>
<input
required
type="text"
id="text"
placeholder="What is this Amount"
/>
</div>
<div class="form-control">
<label for="amount">Amount</label>
<input
required
id="amount"
placeholder="Enter Amount"
type="number"
step="0.01"
/>
</div>
<div class="radio">
<input
class="rad"
type="radio"
name="Choice"
id="income"
value="income"
/>
<label class="radio_label" for="income">Income</label>
<input
class="rad"
type="radio"
name="Choice"
id="expense"
value="expense"
/>
<label class="radio_label" for="expense">Expense</label>
</div>
<button class="btn" type="submit">Add Transaction</button>
</form>
</div>
</div>
</body>
</html>