-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<!-- metadata elements -->
<title>Calculator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="calculator">
<div id="display">
<h3 id="display-input"></h3>
<h2 id="display-output"></h2>
</div>
<button class="button" id="clear"><p>AC</p></button>
<button class="button" id="delete"><p>Del</p></button>
<button class="button" id="equals"><b>=</b></button>
<button class="button math-operator" id="divide"><b>/</b></button>
<button class="button math-operator" id="multiply"><b>×</b></button>
<button class="button math-operator" id="add"><b>+</b></button>
<button class="button math-operator" id="subtract"><b>-</b></button>
<button class="button number" id="seven"><p>7</p></button>
<button class="button number" id="eight"><p>8</p></button>
<button class="button number" id="nine"><p>9</p></button>
<button class="button number" id="four"><p>4</p></button>
<button class="button number" id="five"><p>5</p></button>
<button class="button number" id="six"><p>6</p></button>
<button class="button number" id="one"><p>1</p></button>
<button class="button number" id="two"><p>2</p></button>
<button class="button number" id="three"><p>3</p></button>
<button class="button number" id="decimal"><p>.</p></button>
<button class="button number" id="zero"><p>0</p></button>
<button class="button bracket" id="open-bracket"><p>(</p></button>
<button class="button bracket" id="close-bracket"><p>)</p></button>
</div>
<script src="script.js"></script>
</body>
</html>