-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 2.73 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 2.73 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
<!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">
<title>Calculator | Notse ! </title>
<!-- link Files -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link rel="manifest" href="./manifest.webmanifest">
</head>
<body id="calculator">
<!-- Author @Notse github.com/notse -->
<a href="https://github.com/notse" target="_blank"><header class="github-logo">Nikhil Notse <i class="fab fa-github"></i></header></a>
<!-- Display Numbers -->
<input id="display" type="text" placeholder="0" value="0">
<!-- keypad -->
<div id="keypad" class="disable-dbl-tap-zoom">
<button onclick="resetEntry()">CE</button>
<button onclick="reset()" id="Clear">C</button>
<button onclick="removeCharacter()">
<i class="fas fa-backspace"></i>
</button>
<button onclick="operators('/')" class="Special">/</button>
<button onclick="display('7')">7</button>
<button onclick="display('8')">8</button>
<button onclick="display('9')" >9</button>
<button onclick="operators('*')" class="Special">x</button>
<button onclick="display('4')">4</button>
<button onclick="display('5')">5</button>
<button onclick="display('6')">6</button>
<button onclick="operators('-')" class="Special">-</button>
<button onclick="display('1')">1</button>
<button onclick="display('2')">2</button>
<button onclick="display('3')">3</button>
<button onclick="operators('+')" class="Special">+</button>
<button onclick="operators('+/-')">±</button>
<button onclick="display('0')">0</button>
<button onclick="operators('.')">.</button>
<button onclick="calculate()" id="equal">=</button>
</div>
</body>
<script src="script.js"></script>
</html>