This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.95 KB
/
index.html
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Document</title>
</head>
<body>
<div class="container">
<div class="output">
<div class='data-previous-operand class="previous-operand">123 +</div>
<div class='data-current-operand class="current-operand">123</div>
</div>
<div class="calculator-grid">
<input atr='data-all-clear' class="span-two" type='button' value='AC' id="AC">
<input class='data-delete' type='button' value='DEL' id="←">
<input class='data-operator' data-key="111" type='button' value='/' id="/">
<input class='data-number' type='button' value='7' id="7">
<input class='data-number' type='button' value='8' id="8">
<input class='data-number' type='button' value='9' id="9">
<input class='data-operator' type='button' value='*' id="*">
<input class='data-number' type='button' value='4' id="4">
<input class='data-number' type='button' value='5' id="5">
<input class='data-number' type='button' value='6' id="6">
<input class='data-operator' type='button' value='-' id="-">
<input class='data-number' type='button' value='1' id="1">
<input class='data-number' type='button' value='2' id="2">
<input class='data-number' type='button' value='3' id="3">
<input class='data-operator' type='button' value='+' id="+">
<input class='data-number' type='button' value="0" id="0">
<input class='data-number' type='button' value='.' id=".">
<input class='data-equals' class="span-two" type='button' value='=' id="=">
</div>
</body>
</html>