-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (65 loc) · 2.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href="https://fonts.googleapis.com/css2?family=Bitter:ital@1&family=Comic+Neue&family=Montserrat:wght@100&family=Playfair+Display&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/bugget.css">
<link rel="stylesheet" href="./css/custom css.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<section class="container ">
<div class=" row-bg ">
<h4 class="text-light text-center pt-5 buget" style="font-family: 'Comic Neue', cursive;">Available Budget in 000
</h4>
<h4 class="text-light text-center mt-4 sd" style="font-family: 'Playfair Display', serif;">0</h4>
<div class="row justify-content-center input-group-prepend mt-4 " style="font-family: 'Bitter', serif;">
<button type="button" class="btn btn-danger w-25 btn-lg btn-right text-left font-size-100per ">Total Income</button>
<button type="button" class="btn btn-danger w-25 btn-left text-right total "></button>
</div>
<div class="row justify-content-center input-group-prepend mt-4 " style="font-family: 'Bitter', serif;">
<button type="button" class="btn btn-warning w-25 btn-lg btn-right text-left font-size-100per ">Total Income</button>
<button type="button" class="btn btn-warning w-25 btn-left text-right z "></button>
</div>
</div>
<div>
<div class="input-group mb-3 ">
<div class="input-group-prepend">
<span class="input-group-text" id=""><select id="type1">
<option value="exp">+</option>
<option value="inc">-</option>
</select></span>
</div>
<input type="text" class="form-control" placeholder="Add description"
aria-label="Dollar amount (with dot and two decimal places)" id="input1">
<input class="form-control" placeholder="value" id="input2">
<div class="input-group-append">
<span class="input-group-text" id="click1">Click</span>
</div>
</div>
</div>
<div class="jumbotron mt-3">
<div class="row">
<div class="col-6">
<ul class="list-group exp">
</ul>
</div>
<div class="col-6">
<ul class="list-group inc">
</ul>
</div>
</div>
</div>
</section>
<script src="./css/jquery-3.4.1.slim.min.js"></script>
<script src="./css/jquery-3.4.1.slim.min.js"></script>
<script src="./css/bootstrap.min.js"></script>
<script src="./bugget.js"></script>
</body>
</html>