-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (23 loc) · 819 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Budgeting App</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class = "budget-container">
<h1>Budgeting App</h1>
<div class="tile">
<!-- Input fields for income and expenses-->
<label for ="income">Income</label>
<input id="income" type="number" min = "0" placeholder="Enter your total income">
<label for = "expenses">Expenses</label>
<input id="expenses" type="number" min = "0" placeholder="Enter your total expenses">
<!-- Button to calculate the difference -->
<button id="calculate">Calculate</button>
</div>
<p id="output"></p>
</div>
<script src="app.js"></script>
</body>
</html>