-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<script src="script.js" defer async></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Calculator</h1>
<div id="result">0</div>
<form>
<button type="button" id="1" class="cbutton">1</button>
<button type="button" id="2" class="cbutton">2</button>
<button type="button" id="3" class="cbutton">3</button>
<button type="button" id="+" class="cbutton">+</button>
<br>
<button type="button" id="4" class="cbutton">4</button>
<button type="button" id="5" class="cbutton">5</button>
<button type="button" id="6" class="cbutton">6</button>
<button type="button" id="-" class="cbutton">-</button>
<br>
<button type="button" id="7" class="cbutton">7</button>
<button type="button" id="8" class="cbutton">8</button>
<button type="button" id="9" class="cbutton">9</button>
<button type="button" id="x" class="cbutton">×</button> <!--u+00d7, not x-->
<br>
<button type="button" id="C" class="cbutton">C</button>
<button type="button" id="0" class="cbutton">0</button>
<button type="button" id="AC" class="cbutton">AC</button>
<button type="button" id="/" class="cbutton">÷</button>
<br>
<button type="button" id="=" class="cbutton">=</button>
<button type="button" id="Ans" class="cbutton">Ans</button>
<button type="button" id="^" class="cbutton">^</button>
</form>
<div id="history"></div>
</body>
</html>