-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (52 loc) · 2.01 KB
/
Copy pathindex.html
File metadata and controls
58 lines (52 loc) · 2.01 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
52
53
54
55
56
57
58
<!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="styles.css" />
<script src="app.js" defer></script>
<title>Calculator</title>
</head>
<body>
<div class="main-container">
<div class="calc-body">
<div class="screen-container">
<h3>Calculator-3000</h3>
<div class="screen">
<div class="upper-screen"></div>
<div class="lower-screen"></div>
</div>
</div>
<div class="buttons-container">
<button id="7" class="numbers">7</button>
<button id="8" class="numbers">8</button>
<button id="9" class="numbers">9</button>
<button id="%" class="operations">%</button>
<button id="√" class="operations">√</button>
<button id="4" class="numbers">4</button>
<button id="5 " class="numbers">5</button>
<button id="6" class="numbers">6</button>
<button id="*" class="operations">×</button>
<button id="/" class="operations">÷</button>
<button id="1" class="numbers">1</button>
<button id="2" class="numbers">2</button>
<button id="3" class="numbers">3</button>
<button id="+" class="operations">+</button>
<button id="-" class="operations">-</button>
<button id="0" class="numbers">0</button>
<button id="." class="numbers">.</button>
<button id="=" class="operations">=</button>
<button id="CE-btn" class="edit">CE</button>
<button id="AC-btn" class="edit">AC</button>
</div>
</div>
</div>
<footer class="footer">
<a href="https://github.com/xandreiAThome/Calculator"
>Built by: xandreiAThome<img
src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
/></a>
</footer>
</body>
</html>