-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calculator.html
48 lines (48 loc) · 1.76 KB
/
Calculator.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<script src="Content/App.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
<link href="Content/App.css" rel="stylesheet" />
</head>
<body>
<div class="calculatorFrame">
<div class="screenFrame">
<div screen class="calculatorScreen" data-screen="00000000000000000000">
<div id="answer" class="ScreenResult">
00000000000000000000
</div>
</div>
<div class="screenBottom"></div>
</div>
<div class="buttonFrame">
<button class="red" value="ac">AC</button>
<button class="red" value="ce">CE</button>
<button value="/">÷</button>
<button value="*">x</button>
<button value="7">7</button>
<button value="8">8</button>
<button value="9">9</button>
<button value="-">-</button>
<button value="4">4</button>
<button value="5">5</button>
<button value="6">6</button>
<button value="+">+</button>
<button value="1">1</button>
<button value="2">2</button>
<button value="3">3</button>
<button class="invisible">N</button>
<button id="zeroButton" value="0">0</button>
<button value=".">.</button>
<button id="equalButton" value="=">=</button>
</div>
</div>
<script type="text/javascript">
var calc = new calculator()
</script>
</body>
</html>