-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
48 lines (44 loc) · 1.31 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
<!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="index.css">
<title>Document</title>
</head>
<body>
<h1>BUDGET LISTING</h1>
<div id="budget">
<table class="entry">
<thead>
<tr>
<td><b>Date</b></td>
<td><b>Title</b></td>
<td><b>Cost</b></td>
</tr>
</thead>
<tbody>
<tr>
<td>
<input id="date-entry" type="date" placeholder="DD/MM/YYYY">
</td>
<td>
<input id="Title-entry" type="text" placeholder="(e.g Bills,wages,households)">
</td>
<td>
<input id="cost-entry" type="number" placeholder="Rs.120,Rs.4000">
</td>
</tr>
</tbody>
<div id="msg">
<pre></pre>
</div>
</table>
<button id="save" onclick="saving()">Save</button>
<button id="clear" onclick="cleared()">Clear</button>
<button id="calculate" onclick="calcu()">Calculate</button>
</div>
<script src="index.js"></script>
</body>
</html>