-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>jscalculator</title>
<link href="index.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Exo|Supermercado+One" rel="stylesheet">
</head>
<body>
<div>
<div id="panel">
<div id="displayCalc">0</div>
<div id="displayAns">0</div>
<ul id="buttons">
<li class="first digit">1</li>
<li class="digit">2</li>
<li class="digit">3</li>
<li class="operator">/</li>
<li class="first digit">4</li>
<li class="digit">5</li>
<li class="digit">6</li>
<li class="operator">*</li>
<li class="first digit">7</li>
<li class="digit">8</li>
<li class="digit">9</li>
<li class="operator">-</li>
<li class="first digit">0</li>
<li id="decimal">.</li>
<li id="equals" >=</li>
<li class="operator">+</li>
<li id="clear" class="first" onclick="clearDisplay()">Cl</li>
<li id="back" onclick="backSpace()">B</li>
</ul>
</div>
</div>
</div>
</body>
<script src="index.js"></script>
</html>