-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<link rel="stylesheet" href="styles.css">
<title>Calculator</title>
</head>
<body>
<section class="calculator-grid">
<div class="output">
<div id="previous" class="previous"></div>
<div id="current" class="current"></div>
</div>
<button id="all-clear" class="span-two">AC</button>
<button id="del">DEL</button>
<button id="divide" class="operation">÷</button>
<button id="one" class="number">1</button>
<button id="two" class="number">2</button>
<button id="three" class="number">3</button>
<button id="multiply" class="operation">*</button>
<button id="four" class="number">4</button>
<button id="five" class="number">5</button>
<button id="six" class="number">6</button>
<button id="plus" class="operation">+</button>
<button id="seven" class="number">7</button>
<button id="eight" class="number">8</button>
<button id="nine" class="number">9</button>
<button id="minus" class="operation">-</button>
<button id="point" class="number">.</button>
<button id="zero" class="number">0</button>
<button id="equals" class="span-two">=</button>
</section>
<footer>
Developed by <a href="http://juanportalg.com" target="_blank">Juan Portal</a>
</footer>
<script src="script.js"></script>
</body>
</html>