-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (81 loc) · 2.97 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="JASON CALCULATOR">
<meta property="og:description" content="a scientific calculator for max precision">
<meta property="og:image" content="https://moeletsi47.github.io/Calculator/images/favicon.png">
<link rel="icon" type="image/x-icon" href="./images/favicon.png">
<title>Jason | calculator</title>
<link rel="stylesheet" href="./stylesheets/styles.css">
</head>
<body>
<!--calculator container-->
<div class="main-box">
<div class="parent">
<div class="top">
</div>
<form class="calculator">
<!--calculator-->
<!-- <div class=""> -->
<h3><i>Jason</i></h3>
<!--screen-->
<input type="text" class="screen" name="screen" disabled></input>
<!--buttons-->
<div class="buttonsContainer">
<div class="controls">
<input type="button" id="mute" value="mute"></input>
<input type="button" id="rad" value="rad" disabled></input>
<input type="button" id="deg" value="deg" disabled></input>
</div>
<div class="row">
<input type="button" value="(">
<input type="button" value=")">
<input type="button" value="pow">
<input type="button" value="exp" class="special" onclick="screen.value+='^'" disabled>
<input type="button" value="On" name="mode" class="special" id="mode">
</div>
<div class="row">
<input type="button" value=",">
<input type="button" value="sin" id="sine">
<input type="button" value="cos">
<input type="button" value="tan">
<input type="button" value="log">
</div>
<div class="row">
<input type="button" value="7">
<input type="button" value="8">
<input type="button" value="9">
<input type="button" value="DEL" id="delete" class="special">
<input type="button" value="AC" class="special" onclick="screen.value=''">
</div>
<div class="row">
<input type="button" value="4">
<input type="button" value="5">
<input type="button" value="6">
<input type="button" value="*">
<input type="button" value="/">
</div>
<div class="row">
<input type="button" value="1">
<input type="button" value="2">
<input type="button" value="3">
<input type="button" value="+">
<input type="button" value="-">
</div>
<div class="row">
<input type="button" value="0">
<input type="button" value=".">
<input type="button" value="π" class="symbol" name="pie">
<input type="button" value="Ans" id="prevAnswerButton">
<input type="button" value="=" id="result" class="special">
</div>
<!-- </div> -->
</div>
</form>
</div>
</div>
<script src="./scripts/script.js"></script>
</body>
</html>