-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 2.36 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>Calculator</title>
<link rel="stylesheet" href="style.css">
<!-- <script src="script.js" defer></script> -->
<script src="script1.js" defer></script>
</head>
<body>
<div class="container">
<div class="calculator">
<form>
<div class="display">
<input type="text" id="display" placeholder="0">
</div>
<div>
<input type="button" value="AC" onclick="clearAll();" class="operator">
<input type="button" value="DE" onclick="deleteValue();" class="operator">
<input type="button" value="." onclick="" class="operator">
<input type="button" value="/" onclick="operHand('/');" class="operator">
</div>
<div>
<input type="button" value="7" onclick="getValue('7');">
<input type="button" value="8" onclick="getValue('8');">
<input type="button" value="9" onclick="getValue('9');">
<input type="button" value="*" onclick="operHand('*');" class="operator">
</div>
<div>
<input type="button" value="4" onclick="getValue('4');">
<input type="button" value="5" onclick="getValue('5');">
<input type="button" value="6" onclick="getValue('6');">
<input type="button" value="-" onclick="operHand('-');" class="operator">
</div>
<div>
<input type="button" value="1" onclick="getValue('1');">
<input type="button" value="2" onclick="getValue('2');">
<input type="button" value="3" onclick="getValue('3');">
<input type="button" value="+" onclick="operHand('+');" class="operator">
</div>
<div>
<input type="button" value="00" onclick="getValue('00');">
<input type="button" value="0" onclick="getValue('0');">
<input type="button" value="=" onclick="handleEqual();" class="equal">
</div>
</form>
</div>
</div>
</body>
</html>