-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (61 loc) · 2.09 KB
/
index.html
File metadata and controls
88 lines (61 loc) · 2.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<script src="js/jquery-3.7.1.js"></script>
<script src="js/script.js"></script>
<title>calculator</title>
</head>
<body>
<button class="btn start">Martic calculator <span id="show">Click to show</span> <span id="hide">Click to
hide</span></button>
<div class="hide-cal">
<div class="cal-body">
<div>
<input class="screen" value="0" id="fvalue">
</div>
<div class="mn-btn">
<div class="button-div">
<button class="btns num1">5</button>
<button class="btns num2">
<p>10</p>
</button>
<button class="btns num3">
<p>15</p>
</button>
<button class="btns num4">
<p>20</p>
</button>
<button class="btns num5">
<p>25</p>
</button>
<button class="btns num6">
<p>30</p>
</button>
<button class="btns num7">
<p>-5</p>
</button>
<button class="btns num8">
<p>-10</p>
</button>
<button class="btns num9">
<p>-15</p>
</button>
<button class="btns num10">
<p>-20</p>
</button>
<button class="btns num11">
<p>-25</p>
</button>
<button class="btns num12">
<p>-30</p>
</button>
</div>
<button id="clear">C</button>
</div>
</div>
</div>
</body>
</html>