-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="design.css">
<title> Calculator </title>
</head>
<body>
<div id="cal">
<form>
<input type="text" id="display" ><br>
<input type="button" value="C" id="keys" onclick="addtoscreen('C')">
<input type="button" value="<-" id="keys" onclick="backspace()">
<input type="button" value="X^3" id="keys" onclick="power(3)">
<input type="button" value="+" id="keys" onclick="addtoscreen('+')"><br>
<input type="button" value="9" id="keys" onclick="addtoscreen('9')">
<input type="button" value="8" id="keys" onclick="addtoscreen('8')">
<input type="button" value="7" id="keys" onclick="addtoscreen('7')">
<input type="button" value="-" id="keys" onclick="addtoscreen('-')"><br>
<input type="button" value="6" id="keys" onclick="addtoscreen('6')">
<input type="button" value="5" id="keys" onclick="addtoscreen('5')">
<input type="button" value="4" id="keys" onclick="addtoscreen('4')">
<input type="button" value="*" id="keys" onclick="addtoscreen('*')"><br>
<input type="button" value="3" id="keys" onclick="addtoscreen('3')">
<input type="button" value="2" id="keys" onclick="addtoscreen('2')">
<input type="button" value="1" id="keys" onclick="addtoscreen('1')">
<input type="button" value="/" id="keys" onclick="addtoscreen('/')"><br>
<input type="button" value="0" id="keys" onclick="addtoscreen('0')">
<input type="button" value="." id="keys" onclick="addtoscreen('.')">
<input type="button" value="=" id="equal" onclick="answer()">
</form>
<h5> Design by Sachin </h5>
</div>
<!-- javascript file -->
<script src="logic.js"></script>
</body>
</html>