-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>calculator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h3>* Calculator</h3>
<div class="buttons">
<button onclick="enternumber(1);">1</button>
<button onclick="enternumber(2);">2</button>
<button onclick="enternumber(3);">3</button>
<button onclick="clickOperator(' + ');">+</button>
</div>
<div class="buttons">
<button onclick="enternumber(4);">4</button>
<button onclick="enternumber(5);">5</button>
<button onclick="enternumber(6);">6</button>
<button onclick="clickOperator(' - ');">-</button>
</div>
<div class="buttons">
<button onclick="enternumber(7);">7</button>
<button onclick="enternumber(8);">8</button>
<button onclick="enternumber(9);">9</button>
<button onclick="clickOperator(' * ');">*</button>
</div>
<div class="buttons">
<button onclick="enternumber('.');">.</button>
<button onclick="enternumber(0);">0</button>
<button onclick="equals();" >=</button>
<button onclick="clickOperator(' / ');">/</button>
</div>
<div class="buttons">
<button id="deleteitems" onclick="Delete();">delete</button>
<button onclick="enternumber('(')">(</button>
<button onclick="enternumber(')')">)</button>
</div>
<div class="buttons">
<button id="clear" onclick="clearthe();">Clear all</button>
</div>
<div class="console">
<p>OutPut: </p>
<div id="consoleMessages"></div>
<div id="consoleMessages2"></div>
</div>
<script src="script.js"></script>
</body>
</html>