-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (49 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Js calculetor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="calculetorBody">
<table>
<tr>
<td colspan="4"> <input type="text" id="MyResult"></td>
</tr>
<tr>
<td> <input type="button" value="C" onClick="DeleteMe()"></td>
<td> <input type="button" value="(" onClick="calculetor('(')"></td>
<td> <input type="button" value=")" onClick="calculetor(')')"></td>
</tr>
<tr>
<td> <input type="button" value="7" onClick="calculetor('7')"></td>
<td> <input type="button" value="8" onClick="calculetor('8')"></td>
<td> <input type="button" value="9" onClick="calculetor('9')"></td>
<td> <input type="button" value="+" onClick="calculetor('+')"></td>
</tr>
<tr>
<td> <input type="button" value="4" onClick="calculetor('4')"></td>
<td> <input type="button" value="5" onClick="calculetor('5')"></td>
<td> <input type="button" value="6" onClick="calculetor('6')"></td>
<td> <input type="button" value="-" onClick="calculetor('-')"></td>
</tr>
<tr>
<td> <input type="button" value="1" onClick="calculetor('1')"></td>
<td> <input type="button" value="2" onClick="calculetor('2')"></td>
<td> <input type="button" value="3" onClick="calculetor('3')"></td>
<td> <input type="button" value="*" onClick="calculetor('*')"></td>
</tr>
<tr>
<td> <input type="button" value="0" onClick="calculetor('0')"></td>
<td> <input type="button" value="." onClick="calculetor('.')"></td>
<td> <input type="button" value="/" onClick="calculetor('/')"></td>
<td> <input type="button" value="=" onClick="Answer('=')"></td>
</tr>
</table>
</div>
<script src="main.js">
</script>
</body>
</html>