-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Caladea&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
<title>My Budget App</title>
</head>
<body>
<main>
<section class="main" id="monthly_budget_selection">
<h3>Monthly Budget:</h3>
<p id="monthly_budget"></p>
<form>
<input type="number" id="income_input" placeholder="Monthly Income">
<button id="update_budget">Update Budget</button>
</form>
</section>
<section class="main" id="add_expense_selection">
<h3>Add expense:</h3>
<form>
<input type="text" id="name_input" placeholder="Expense name" />
<input type="number" id="amount_input" placeholder="Expense amount" />
<button id="add_expense">Add expense</button>
</form>
</section>
<section class="main" id="expense_list_section">
<h3>Monthly expenses:</h3>
<div id="expense_list"></div>
</section>
<section class="main" id="expense_total_section">
<h3>Total expenses:</h3>
<p id="total_expenses"></p>
</section>
<section class="main" id="remaining_balance_section">
<h3>Remaining balance:</h3>
<p id="remaining_balance"></p>
</section>
</main>
<script src="script.js"></script>
</body>
</html>