-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCalculatorApp.html
More file actions
37 lines (33 loc) · 1.1 KB
/
CalculatorApp.html
File metadata and controls
37 lines (33 loc) · 1.1 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
<!DOCTYPE >
<html>
<head>
<title>Calculator Application</title>
<script src="CalculatorApp.js"></script>
</head>
<body onload="initializeGlobals()">
<div>
<h1>Calculate</h1>
<p>Please enter the numbers in the given boxes to see the result</p>
</div>
<div id="div1">
<table>
<tr>
<!--<th>First Number =</th>-->
<td><input type="text" id="number" /></td>
<!--<th>Second Number =</th>-->
<!--<td><input type="text" id="secondNumber" ></input></td>-->
</tr>
<tr>
<td><button id="add" onclick="addNumbers()">Add</button></td>
<td><button id="multiply" onclick="multiplyNumbers()">Multiply</button></td>
<td><button id="divide" onclick="divideNumbers()">Divide</button></td>
<td><button id="clear" onclick="clearText()">Clear</button></td>
</tr>
<tr>
<th>Result=</th>
<td><p id="result"></p></td>
</tr>
</table>
</div>
</body>
</html>