-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreturn2.html
More file actions
35 lines (31 loc) · 1.01 KB
/
Copy pathreturn2.html
File metadata and controls
35 lines (31 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Calculating with js</title>
<meta charset="UTF-8">
<script src="return2.js"></script>
</head>
<body>
<H1 align="center" style="color:blue">Evaluate any arithmetic operation !</H1>
<table align="center">
<thead>
<tr>
<th>Operand 1</th>
<th>Operation (+, -, *,/) </th>
<th>Operand 2 </th>
<th>Click </th>
<th>Result </th>
</tr>
</thead>
<tbody>
<tr>
<td><input type=text id="operand1" align="middle" /></td>
<td><input type=text id="op" value="+" style="text-align:center" /></td>
<td><input type=text id="operand2" style="text-align:center" /></td>
<td><button onclick="compute();" align="middle">=</button></td>
<td><span id="result" style="text-align:center"> ? </span></td>
</tr>
</tbody>
</table>
</body>
</html>