-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Arithmetic Operations</title>
</head>
<body>
<h2>Arithmetic Operations</h2>
<table>
<thead>
<tr>
<th>A</th>
<th>Operator</th>
<th>B</th>
<th>Output</th>
</tr>
</thead>
<tbody>
<tr>
<td><input id="add-a" type="number"/></td>
<td class="oper-td">-</td>
<td><input id="add-b" type="number"/></td>
<td><input id="add-out" type="number" readonly/></td>
</tr>
<tr>
<td><input id="sub-a" type="number"/></td>
<td class="oper-td">-</td>
<td><input id="sub-b" type="number"/></td>
<td><input id="sub-out" type="number" disabled/></td>
</tr>
<tr>
<td><input id="mul-a" type="number"/></td>
<td class="oper-td">*</td>
<td><input id="mul-b" type="number"/></td>
<td><input id="mul-out" type="number" disabled/></td>
</tr>
</tbody>
</table>
<!-- Stylesheets -->
<link href="css/index.css" rel="stylesheet" type="text/css">
<!-- Scripts -->
<script src="js/DOM.js"></script>
<script src="js/index.js"></script>
</body>
</html>