-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
44 lines (44 loc) · 1.81 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sagnik's Dynamic Calculator</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" href="styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="calculator">
<div class="display">0</div>
<div class="buttons">
<button class="operator" value="clear">C</button>
<button class="operator" value="backspace">←</button>
<button class="operator" value="%">%</button>
<button class="operator" value="/">÷</button>
<button value="9">9</button>
<button value="8">8</button>
<button value="7">7</button>
<button class="operator" value="*">×</button>
<button value="6">6</button>
<button value="5">5</button>
<button value="4">4</button>
<button class="operator" value="-">-</button>
<button value="3">3</button>
<button value="2">2</button>
<button value="1">1</button>
<button class="operator" value="+">+</button>
<button class="operator" value="+/-">±</button>
<button value="0">0</button>
<button class="operator" value=".">.</button>
<button class="operator" value="=">=</button>
</div>
</div>
</body>
<script src="script.js"></script>
</html>