-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>expense traker</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h2>Expense Tracker</h2>
<div class="container">
<h4>Your balance</h4>
<h1 id="balance">$0.0</h1>
<div class="inc-exp-container">
<div>
<h4>income</h4>
<p id="money-plus" class="money plus">+$0.00</p>
</div>
<div>
<h4>expense</h4>
<p id="money-minus" class="money minus">-$0.00</p>
</div>
</div>
<h3>History</h3>
<ul id="list" class="list">
</ul>
<h3>add new transation</h3>
<form action="" id="form">
<div class="form-control">
<label for="text">text</label>
<input type="text" id="text" placeholder="please enter the text..." />
</div>
<div class="form-control">
<label for="amount"
>amount <br />(negtive=expense,positive=income)</label
>
<input
type="number"
id="amount"
placeholder="please enter the amount..."
/>
</div>
<button class="btn">Add transation</button>
</form>
</div>
<script src="script.js" async defer></script>
</body>
</html>