-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 2.21 KB
/
index.html
File metadata and controls
55 lines (50 loc) · 2.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<link rel="stylesheet" href="Calculator.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<div class="calculator">
<div class="expression"></div>
<div class="row">
<button class="box" id="delete">CE</button>
<button class="box" id="percentage">%</button>
<button class="box" id="numbers">.</button>
<button class="box operator" id="numbers">/</button>
</div>
<div class="row">
<button class="box" id="numbers">7</button>
<button class="box" id="numbers">8</button>
<button class="box" id="numbers">9</button>
<button class="box operator" id="numbers">*</button>
</div>
<div class="row">
<button class="box" id="numbers">4</button>
<button class="box" id="numbers">5</button>
<button class="box" id="numbers">6</button>
<button class="box operator" id="numbers">-</button>
</div>
<div class="row">
<button class="box" id="numbers">1</button>
<button class="box" id="numbers">2</button>
<button class="box" id="numbers">3</button>
<button class="box operator" id="numbers">+</button>
</div>
<div class="row">
<button class="box" id="remove"><i class="fa-solid fa-delete-left"></i></button>
<button class="box" id="numbers">0</button>
<button class="box" id="equal">=</button>
</div>
</div>
</div>
</body>
<script src="Calculator.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/10.1.0/math.min.js"></script>
</html>