-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Expense Manager</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<div id="content">
<div id="head">
<div id="title">
<h2>Expense Manager</h2>
</div>
<div id="login">
<h6>Sign in</h6>
</div>
</div>
<div id="main">
<div id="balance">
<h3 id="bal">BALANCE</h3>
<h3 id="balam">0.00</h3>
</div>
<div id="expinc">
<div id="income">
<h3 id="inc">INCOME</h3>
<h1 id="incam">0.00</h1>
</div>
<div id="expense">
<h3 id="exp">EXPENSE</h3>
<h1 id="expam">0.00</h1>
</div>
</div>
<div id="history">
<div id="historyname">History</div>
<div id="historylist">
<div class="listind">
<div class="historynm"></div>
<div class="historyamount"></div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="trans">Transactions</div>
<select id="ty" class="trs">
<option value="expense" selected="selected">Expense</option>
<option value="income" selet="selected">Income</option>
</select>
<input id="inp" class="trs" type="text" placeholder="Category"/>
<input id="aminp" class="trs" type="number" placeholder="amount"/>
<button id="submitbt">submit</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>