-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpenseTracker.html
More file actions
40 lines (34 loc) · 1.22 KB
/
Copy pathexpenseTracker.html
File metadata and controls
40 lines (34 loc) · 1.22 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Expense Tracker</title>
<link rel="stylesheet" href="styles/expense-tracker.css">
</head>
<body>
<h1>Expense Tracker</h1>
<div class="expense-input-grid">
<input type="text" placeholder="Expense Name" class="expense-input">
<input type="text" placeholder="Amount" class="amount">
<select class="expense-types">
<option>Select Category</option>
<option value="food">Food</option>
<option value="transport">Transport</option>
<option value="other">Other</option>
</select>
<input type="date" class="expense-date">
<button onclick="addExpense();" class="addBtn">Add</button>
<table>
<tr>
<th>Expense Name</th>
<th> Amount</th>
<th> Category</th>
<th> Date</th>
<th>Actions</th>
</tr>
</table>
</div>
<div class="js-expense-res expense-grid"></div>
<div class="total"></div>
<script src="./js/expense-tracker.js"></script>
</body>
</html>