-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (70 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Calculator</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Slabo+27px&display=swap" rel="stylesheet"> </head>
<body>
<div class="container">
<form onsubmit="return false">
<div class="numbers">
<input type="text" id="txtResult" readonly />
<div>
<button id="btn-1" type="button" onclick="addNumber('btn-1')">
1
</button>
<button id="btn-2" type="button" onclick="addNumber('btn-2')">
2
</button>
<button id="btn-3" type="button" onclick="addNumber('btn-3')">
3
</button>
</div>
<div>
<button id="btn-4" type="button" onclick="addNumber('btn-4')">
4
</button>
<button id="btn-5" type="button" onclick="addNumber('btn-5')">
5
</button>
<button id="btn-6" type="button" onclick="addNumber('btn-6')">
6
</button>
</div>
<div>
<button id="btn-7" type="button" onclick="addNumber('btn-7')">
7
</button>
<button id="btn-8" type="button" onclick="addNumber('btn-8')">
8
</button>
<button id="btn-9" type="button" onclick="addNumber('btn-9')">
9
</button>
</div>
<div>
<button id="btn-0" type="button" onclick="addNumber('btn-0')">
0
</button>
<button id="btn-." type="button" onclick="addNumber('btn-.')">
.
</button>
</div>
</div>
<div class="operation">
<!-- change these buttons to submit and implement calc function in js -->
<button id="btn-+" type="button" onclick="store('+')">+</button>
<button id="btn--" type="button" onclick="store('-')">-</button>
<button id="btn-*" type="button" onclick="store('*')">*</button>
<button id="btn-/" type="button" onclick="store('/')">/</button>
<!--<button id="btn-=">=</button>-->
<input type="submit" id="btn-equal" value="=" onclick="calc()" />
</div>
</form>
</div>
<script src="main.js"></script>
</body>
</html>