-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariableinput.html
More file actions
60 lines (59 loc) · 2.63 KB
/
Copy pathvariableinput.html
File metadata and controls
60 lines (59 loc) · 2.63 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Financial Planning and Budgeting</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head><script src="function.js"></script>
<body>
<header>
<div class="box">
<div class="header">
<h1>Monthly Expenses/Income</h1>
</div>
</div>
</header>
<main>
<div class="padding-top">
<form>
<h2 class="header2">Income</h2>
<div class="padding-bottom center-horiz">
<label class="text" for="income">Income</label>
<input class="income" type="number" id="income" name="income">
</div>
<br>
<h2 class="header2">Purchases</h2>
<div class="padding-bottom center-horiz">
<label class="text" for="rent">Rent</label>
<input class="input" type="number" id="rent" name="rent">
</div>
<div class="padding-bottom center-horiz">
<label class="text" for="food">Food</label>
<input class="input" type="number" id="food" name="food">
</div>
<div class="padding-bottom center-horiz">
<label class="text" for="freetime">Freetime</label>
<input class="input" type="number" id="freetime" name="freetime">
</div>
<div class="padding-bottom center-horiz">
<label class="text" for="clothes">Clothes</label>
<input class="input" type="number" id="clothes" name="clothes">
</div>
<div class="padding-bottom center-horiz">
<label class="text" for="Hygiene Articles">Hygiene Articles</label>
<input class="input" type="number" id="Hygiene Articles" name="Hygiene Articles">
</div>
<div class="padding-bottom center-horiz">
<label class="text" for="Others">Others</label>
<input class="input" type="number" id="Others" name="Others">
</div>
<div class="center-horiz">
<input class="send" type="submit" value="Save" id="variablesend">
</div>
</form>
</div>
</main>
<script src="function.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
</body>
</html>