-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathin.html
33 lines (32 loc) · 899 Bytes
/
in.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>
first number <input id ="numberOne">
</p>
<p>second number <input id ="numberTwo"></p>
<button onclick="add()">
add
</button>
<button onclick="sub()">
subtract
</button>
<button onclick="mul()">
divide
</button>
<button onclick="divi()">
Multiply
</button>
<p>final answer <span id = "answer"></span></p>
<p>final answer(subtraction) <span id = "answersub"></span></p>
<p>final answer(multiplication) <span id = "answermul"></span></p>
<p>final answer(divide) <span id = "answerdivi"></span></p>
</body>
<script src="./script.js"></script>
</html>