-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
69 lines (35 loc) · 2.02 KB
/
app.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<!-- favicon -->
<link rel="shortcut icon" type="image/jpg" href="Img\favicon\fav.png"/>
<title>Ossama Mehmood | Calculator</title>
<link rel="stylesheet" href="app.css">
</head>
<form name="form1" class="calci" action="calculator.html" method="POST">
<input type="text" name="answer" id="display">
<br></br>
<input type="button" value="c" onclick="form1.answer.value=''" class="button">
<input type="button" class= "button"value="<" onclick="form1.answer.value=form1.answer.value.substring(0,form1.answer.value.length*1-1)" >
<input type="button" class= "button"value="00" onclick="form1.answer.value+='00'">
<input type="button" class= "operator"value="/" onclick="form1.answer.value+='/'">
<br></br>
<input type="button" class= "button" value="7" onclick="form1.answer.value+='7'">
<input type="button" class= "button"value="8" onclick="form1.answer.value+='8'">
<input type="button" class= "button"value="9" onclick="form1.answer.value+='9'">
<input type="button" class= "operator"value="*" onclick="form1.answer.value+='*'">
<br></br>
<input type="button" class= "button" value="4" onclick="form1.answer.value+='4'">
<input type="button" class= "button"value="5" onclick="form1.answer.value+='5'">
<input type="button" class= "button"value="6" onclick="form1.answer.value+='6'">
<input type="button" class= "operator"value="-" onclick="form1.answer.value+='-'">
<br></br>
<input type="button" class= "button"value="1" onclick="form1.answer.value+='1'">
<input type="button" class= "button"value="2" onclick="form1.answer.value+='2'">
<input type="button" class= "button"value="3" onclick="form1.answer.value+='3'">
<input type="button" class= "operator"value="+" onclick="form1.answer.value+='+'">
<br></br>
<input type="button" class= "button" value="0" onclick="form1.answer.value+='0'" id="zero">
<input type="button" class= "button" value="." onclick="form1.answer.value+='.'">
<input type="button" class= "operator" value="=" onclick="form1.answer.value=eval(form1.answer.value)">
</form>
</html>