-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Budget-Expenses</title>
<link rel="shortcut icon" href="icons/icon.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="main">
<div id="box">
<div id="in">
<h1>Budget</h1>
<input id="budgetInput" required placeholder="Enter your budget" spellcheck="false" type="text"> <br><br>
<button id="button1"><span></span>Set Budget</button>
</div>
</div>
<div id="box1">
<div id="in">
<h1>Expenses</h1>
<input id="productTitleInput" placeholder="Enter Title Of Product" type="text"> <br>
<input id="productCostInput" placeholder="Enter Cost Of The Product" type="text"> <br><br>
<button id="button2"><span></span>Add amount</button>
</div>
</div>
</div>
<div id="main2">
<div id="box3">
<div id="item1">
<h1>Total Budget</h1>
<p class="totalBudget"> 0 </p>
</div>
<div id="item2">
<h1>Expenses</h1>
<p class="Expanses"> 0 </p>
</div>
<div id="item3">
<h1>Balance</h1>
<p class="Balance"> 0 </p>
</div>
</div>
</div>
<div id="main3">
<div class="hujn">
<h1> Expenses </h1>
<ol id="orderList">
</ol>
</div>
</div>
<script src="app.js"></script>
</body>
</html>