-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (55 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xpers</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/1eafa81dea.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-dark bg-dark">
<div class="container">
<span class="navbar-brand mb-0">Xpers</span>
<span class="navbar-brand mb-0" id="heading"></span>
</div>
</nav>
<!-- main body contents -->
<div class="container-fluid bg-light" style="min-height: 100vh">
<div class="container">
<!-- all input fields -->
<div class="jumbotron mt-4">
<!-- input field for amount spent -->
<div class="input-group mb-3">
<input id="inputAmount" type="text" class="form-control" placeholder="Amount spent" aria-placeholder="Amount spent" aria-describedby="spent in rupee">
<div class="input-group-append">
<span class="input-group-text" id="spent in rupee">₹</span>
</div>
</div>
<!-- input field for description -->
<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-placeholder="Spent on" aria-describedby="spent at">
<!-- add button -->
<div class="input-group-append">
<button id="btnAddExpense" class="btn btn-outline-primary" type="button">Add</button>
</div>
</div>
</div>
<!-- table -->
<div>
<ul class="list-group" id="expenseTable">
</ul>
</div>
</div>
</div>
<footer>
<p class="lead"><a href="https://codingwolf-at.github.io/" target="_blank">Made by codingWolf</a></p>
</footer>
<script src="main.js"></script>
</body>
</html>