-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 2.14 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Calculator</title>
</head>
<body>
<main id="container">
<div id="body">
<div id="display">
</div>
<div id="buttons-container">
<button class="buttons action" id="key-acl">AC</button>
<button class="buttons action" id="key-clr">C</button>
<button class="buttons operation" id="key-div">÷</button>
<button class="buttons operation" id="key-mul">×</button>
<button class="buttons number" id="key-7">7</button>
<button class="buttons number" id="key-8">8</button>
<button class="buttons number" id="key-9">9</button>
<button class="buttons operation" id="key-sub">-</button>
<button class="buttons number" id="key-4">4</button>
<button class="buttons number" id="key-5">5</button>
<button class="buttons number" id="key-6">6</button>
<button class="buttons operation" id="key-add">+</button>
<button class="buttons number" id="key-1">1</button>
<button class="buttons number" id="key-2">2</button>
<button class="buttons number" id="key-3">3</button>
<button class="buttons action" id="key-eq">=</button>
<button class="buttons number" id="key-zr">0</button>
<button class="buttons number" id="key-dot">.</button>
</div>
</div>
</main>
<footer id="footer">
<div id="instruction">Psst... The keyboard works too :)</div>
<div id="sig">Made by <a target="_blank" href="https://github.com/dwrik">dwrik</a></div>
</footer>
<script src="scripts/script.js"></script>
</body>
</html>