-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 1.89 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
<!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 rel="stylesheet" href="style.css">
<title>Expense Tracker</title>
</head>
<body>
<h1 class="heading">
Expense Tracker
</h1>
<main>
<div class="bal">
<h3>Your Balance:</h3>
<h1 class="amount">₹0.00</h1>
</div>
<div class="income-expense">
<div class="income">
<h1>Income</h1>
<p>₹0.00</p>
</div>
<div class="expense">
<h1>Expense</h1>
<p>₹0.00</p>
</div>
</div>
<div class="history">
<h2>History</h2>
<hr>
<div class="history-list">
<!-- <div class="hist">
<h2 class="close-btn">✗</h2>
<h2>Income</h2>
<h3 class="amount">100000</h3>
</div> -->
</div>
</div>
<div class="transactions">
<h2>Add new Transaction</h2>
<hr>
<form id="form">
<div class="transaction-type">
<label for="text">Transaction Type</label>
<input type="text" id="text" placeholder="Transaction Type">
</div>
<div class="amount">
<label for="number">Amount<br><span style="font-size: 15px;">(positive for income and negative for expense)</span></label>
<input type="number" id="number" placeholder="Amount">
</div>
<button type="btn">Add Transaction</button>
</form>
</div>
</main>
<script src="script.js"></script>
</body>
</html>