-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.38 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculator TOP Project</title>
<link rel="stylesheet" href="assets/Css/reset.css" />
<link rel="stylesheet" href="assets/Css/style.css" />
</head>
<body>
<div class="calculator-grid">
<div class="output">
<div class="previous-operand"></div>
<div class="current-operand">0</div>
</div>
<button class="span-two all-clear">AC</button>
<button class="del-button">DEL</button>
<button class="data-operation">÷</button>
<button class="data-number">7</button>
<button class="data-number">8</button>
<button class="data-number">9</button>
<button class="data-operation">*</button>
<button class="data-number">4</button>
<button class="data-number">5</button>
<button class="data-number">6</button>
<button class="data-operation">-</button>
<button class="data-number">1</button>
<button class="data-number">2</button>
<button class="data-number">3</button>
<button class="data-operation">+</button>
<button class="data-number">0</button>
<button class="data-number">.</button>
<button class="span-two data-equal">=</button>
</div>
<script src="./assets/JS/index.js"></script>
</body>
</html>