-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TOP Calculator</title>
<link rel="stylesheet" href="topcalculatorstyle.css">
<script src="topcalculator.js" defer></script>
</head>
<body>
<div id="calc-wrapper">
<div class="display"></div>
<div class="button-wrapper">
<button id="clear" class="misc" type="button">AC</button>
<button id="delete" class="misc" type="button">Delete</button>
<button id="percent" class="misc" type="button">%</button>
<button id="divide" class="operator" type="button">/</button>
<button id="7" class="digit" type="button">7</button>
<button id="8" class="digit" type="button">8</button>
<button id="9" class="digit" type="button">9</button>
<button id="mult" class="operator" type="button">*</button>
<button id="4" class="digit" type="button">4</button>
<button id="5" class="digit" type="button">5</button>
<button id="6" class="digit" type="button">6</button>
<button id="sub" class="operator" type="button">-</button>
<button id="1" class="digit" type="button">1</button>
<button id="2" class="digit" type="button">2</button>
<button id="3" class="digit" type="button">3</button>
<button id="add" class="operator" type="button">+</button>
<button id="plusminus" class="plusminus" type="button">+/-</button>
<button id="0" class="digit" type="button">0</button>
<button id="decimal" class="decimal" type="button">.</button>
<button id="equal" class="equals" type="button">=</button>
</div>
</div>
</body>
</html>