-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.html
44 lines (35 loc) · 1.33 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
<!DOCTYPE html>
<head>
<title>Calculator</title>
<meta charset="UTF-8">
<link href="calculator.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id='container'>
<div id='display'></div>
<div id='action-container'>
<button id='clear'>Clear</button>
<button id='backspace'>Delete</button>
</div>
<div id='button-area'>
<button class='digit'>7</button>
<button class='digit'>8</button>
<button class='digit'>9</button>
<button class='operation'>x</button>
<button class='digit'>4</button>
<button class='digit'>5</button>
<button class='digit'>6</button>
<button class='operation'>-</button>
<button class='digit'>1</button>
<button class='digit'>2</button>
<button class='digit'>3</button>
<button class='operation'>+</button>
<button id='dot'>.</button>
<button class='digit'>0</button>
<button id='equal'>=</button>
<button class='operation'>/</button>
</div>
</div>
</body>
</html>
<script src="calculator.js"></script>