-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (61 loc) · 2.52 KB
/
Copy pathindex.html
File metadata and controls
63 lines (61 loc) · 2.52 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
61
62
63
<!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="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<script defer src="https://use.fontawesome.com/releases/v5.7.2/js/all.js"
integrity="sha384-0pzryjIRos8mFBWMzSSZApWtPl/5++eIfzYmTgBBmXYdhvxPc+XcFEk+zJwDgWbP"
crossorigin="anonymous">
</script>
<title>Kaiwalya Koparkar | Personal Finance</title>
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<span class="navbar-brand mb-0 h1">ExpenseTracker</span>
<span class="navbar-brand mb-0 h1" id="headingTotal"></span>
</nav>
<div class="container-fluid bg-light" style="min-height: 100vh">
<div class="container">
<div class="jumbotron mt-4">
<div class="input-group mb-3">
<input
id="inputAmount"
type="text" class="form-control" placeholder="Amount spent"
aria-label="Amount spent"
aria-describedby="spent in rupee"
/>
<div class="input-group-append">
<span class="input-group-text" id="spent in rupee">₹</span>
</div>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="spent at">@</span>
</div>
<input
id="inputDesc"
type="text" class="form-control" placeholder="spent On"
aria-label="spent On"
aria-describedby="spent at"
/>
<div class="input-group-append">
<button
class="btn btn-outline-primary" type="button"
id="btnAddExpense"
>Add</button>
</div>
</div>
</div>
<div>
<ul class="list-group" id="expenseTable">
</ul>
</div>
</div>
</div>
</div>
<script src="scripts/main.js"></script>
</body>
</html>