forked from Bhumika-78/CALCULATOR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalculator.html
More file actions
51 lines (46 loc) · 1.85 KB
/
Calculator.html
File metadata and controls
51 lines (46 loc) · 1.85 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
<!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="icon" type="image/png" href="https://cdn-icons-png.flaticon.com/128/1011/1011812.png">
<link rel="stylesheet" href="Calculator.css">
</head>
<body>
<div class="background"></div>
<div class="circle c1"></div>
<div class="circle c2"></div>
<div class="circle c3"></div>
<div class="calculator-container">
<div class="calculator-title">
CALCULATOR ✖️➗➕➖
</div>
<div class="screen">
<input type="text" id="display" disabled />
</div>
<div class="buttons">
<button class="button clear" id="clear">C</button>
<button class="button operator" id="divide">/</button>
<button class="button operator" id="multiply">*</button>
<button class="button operator" id="subtract">-</button>
<button class="button" id="seven">7</button>
<button class="button" id="eight">8</button>
<button class="button" id="nine">9</button>
<button class="button operator" id="add">+</button>
<button class="button" id="four">4</button>
<button class="button" id="five">5</button>
<button class="button" id="six">6</button>
<button class="button equal" id="equal">=</button>
<button class="button" id="one">1</button>
<button class="button" id="two">2</button>
<button class="button" id="three">3</button>
<button class="button" id="zero">0</button>
</div>
<div class="footer-text">
MADE BY BHUMIKA ©
</div>
</div>
<script src="Calculator.js"></script>
</body>
</html>