-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (26 loc) · 960 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Simple Calculator</title>
<style>
button {
cursor: pointer;
}
</style>
</head>
<body style="text-align: center">
<h1>Simple Calculator</h1>
<input type="number" name="v1" id="v1" value="0" min="0" required />
<span id="operator"></span>
<input type="number" name="v2" id="v2" value="0" min="0" required />
<span id="ans"></span>
<br /><br />
<button onclick="add()" type="button"><strong>Add (+)</strong></button>
<button onclick="substract()" type="button"><strong>Substract (-)</strong></button>
<button onclick="multiply()" type="button"><strong>Multiply (x)</strong></button>
<button onclick="divide()" type="button"><strong>Divide (÷)</strong></button>
<button onclick="c()" type="button"><strong>Clear (C)</strong></button><br />
<h3>Developer: Sajid jamali@2021<h3>
<script src="app.js"></script>
</body>
</html>