This repository was archived by the owner on May 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
49 lines (49 loc) · 1.92 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>
<head>
<meta charset="UTF-8">
<title>Basic Calculator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="calculator">
<div class="screen">
<div class="result2nd"></div>
<div class="result"></div>
</div>
<div class="button-row">
<button class="button" id="all-clear" value="AC">AC</button>
<button class="button" id="delete" value="DEL">DEL</button>
</div>
<div class="button-row">
<button class="button button-number" value="7">7</button>
<button class="button button-number" value="8">8</button>
<button class="button button-number" value="9">9</button>
<button class="button button-operation" value="/">/</button>
</div>
<div class="button-row">
<button class="button button-number" value="4">4</button>
<button class="button button-number" value="5">5</button>
<button class="button button-number" value="6">6</button>
<button class="button button-operation" value="*">*</button>
</div>
<div class="button-row">
<button class="button button-number" value="1">1</button>
<button class="button button-number" value="2">2</button>
<button class="button button-number" value="3">3</button>
<button class="button button-operation" value="-">-</button>
</div>
<div class="button-row">
<button class="button button-number" value="0">0</button>
<button class="button button-number" value=".">.</button>
<button class="button button-operation" value="^">^</button>
<button class="button button-operation" value="+">+</button>
</div>
<div class="button-row">
<button class="button button-operation" value="√">√</button>
<button class="button" value="=" id="equals">=</button>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>