-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.67 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
<!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="style.css">
<title>Calculator</title>
</head>
<body>
<table>
<th colspan="4"><input type="text" id="Display" disabled></th>
<tr>
<td><input type="button" value="1" onclick="insertElem(1)"></td>
<td><input type="button" value="2" onclick="insertElem(2)"></td>
<td><input type="button" value="3" onclick="insertElem(3)"></td>
<td><input type="button" value="+" onclick="insertElem('+')"></td>
</tr>
<tr>
<td><input type="button" value="4" onclick="insertElem(4)"></td>
<td><input type="button" value="5" onclick="insertElem(5)"></td>
<td><input type="button" value="6" onclick="insertElem(6)"></td>
<td><input type="button" value="-" onclick="insertElem('-')"></td>
</tr>
<tr>
<td><input type="button" value="7" onclick="insertElem(7)"></td>
<td><input type="button" value="8" onclick="insertElem(8)"></td>
<td><input type="button" value="9" onclick="insertElem(9)"></td>
<td><input type="button" value="*" onclick="insertElem('*')"></td>
</tr>
<tr>
<td><input type="button" value="/" onclick="insertElem('/')"></td>
<td><input type="button" value="0" onclick="insertElem('0')"></td>
<td><input type="button" value="." onclick="insertElem('.')"></td>
<td><input type="button" value="=" onclick="Equal()"></td>
</tr>
<th colspan="4"><input type="button" value="Clear All" class="Clear" onclick="Clear()"></th>
</table>
<script src="script.js"></script>
</body>
</html>