-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (51 loc) · 2.13 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
<!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">
</head>
<body>
<div>
<table border="1">
<tr>
<td colspan="4"><input type="text" id="finaluserinput"></td>
</tr>
<tr>
<td colspan="4"><h5 id="buttonclicks"></h5></td>
</tr>
<tr>
<td><input type="button" value="AC" onclick=""></td>
<td><input type="button" value="+/-" onclick=""></td>
<td><input type="button" value="%" onclick=""></td>
<td><input type="button" value="/" onclick=""></td>
</tr>
<tr>
<td><input type="button" value="7" onclick=""></td>
<td><input type="button" value="8" onclick=""></td>
<td><input type="button" value="9" onclick=""></td>
<td><input type="button" value="x" onclick=""></td>
</tr>
<tr>
<td><input type="button" value="4" onclick=""></td>
<td><input type="button" value="5" onclick=""></td>
<td><input type="button" value="6" onclick=""></td>
<td><input type="button" value="-" onclick=""></td>
</tr>
<tr>
<td><input type="button" value="1" onclick=""></td>
<td><input type="button" value="2" onclick=""></td>
<td><input type="button" value="3" onclick=""></td>
<td><input type="button" value="+" onclick=""></td>
</tr>
<tr>
<td><input type="button" value="00" onclick=""></td>
<td><input type="button" value="0" onclick=""></td>
<td><input type="button" value="." onclick=""></td>
<td><input type="button" value="=" id="getanswer" onclick="calc()"></td>
</tr>
</table>
</div>
<script src="app.js"></script>
</body>
</html>