-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 2.03 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 2.03 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Calculator v2.0.0</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<table border="10">
<thead>
<tr>
<th colspan="4" id="table__thead__screen">0</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="button" id="sqrt" class="horizontalButton button" value="sqrt"></td>
<td><input type="button" id="pow" class="horizontalButton button" value="pow"></td>
<td><input type="button" id="/" class="horizontalButton button operands" value="/"></td>
<td><input type="button" id="*" class="cornerButton button operands" value="*"></td>
</tr>
<tr>
<td><input type="button" id="7" class="numberButton button" value="7"></td>
<td><input type="button" id="8" class="numberButton button" value="8"></td>
<td><input type="button" id="9" class="numberButton button" value="9"></td>
<td><input type="button" id="-" class="verticalButton button operands" value="-"></td>
</tr>
<tr>
<td><input type="button" id="4" class="numberButton button" value="4"></td>
<td><input type="button" id="5" class="numberButton button" value="5"></td>
<td><input type="button" id="6" class="numberButton button" value="6"></td>
<td><input type="button" id="+" class="verticalButton button operands" value="+"></td>
</tr>
<tr>
<td><input type="button" id="1" class="numberButton button" value="1"></td>
<td><input type="button" id="2" class="numberButton button" value="2"></td>
<td><input type="button" id="3" class="numberButton button" value="3"></td>
<td rowspan="2"><input type="button" id="equalsButton" class="button" value="="></td>
</tr>
<tr>
<td><input type="button" id="C" class="button" value="C"></td>
<td><input type="button" id="zeroButton" class="numberButton button" value="0"></td>
<td><input type="button" id="decimalButton" class="button" value="."></td>
</tr>
</tbody>
</table>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>