-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (76 loc) · 2.29 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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" />
<title>expenses calculator</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
</head>
<body>
<h1 class="heading"> Expenses calculator</h1>
<div class="form">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Name</label>
<input
type="text"
class="form-control input1"
id="exampleInputEmail1"
aria-describedby="emailHelp"
/>
</div>
<div class="form2">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Date</label>
<input
type="date"
class="form-control input2"
id="exampleInputEmail1"
aria-describedby="emailHelp"
/>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Amount</label>
<input
type="number"
class="form-control input3"
id="exampleInputEmail1"
aria-describedby="emailHelp"
/>
</div>
</div>
<button id="btn" class="btn btn-primary">Submit</button>
</div>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Date</th>
<th scope="col">Amount</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody class="tabledata">
</tbody>
<tr>
<th scope="row">total</th>
<td></td>
<td></td>
<td class="total">0</td>
</tr>
</table>
</body>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"
></script>
<script src="calci.js"></script>
</html>