-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (29 loc) · 914 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Binary Calci</title>
<!-- Css -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Binary Calculator</h1>
<div id="body">
<div id="res"></div>
<div id="btns">
<button class="num" id="btn0">0</button>
<button class="num" id="btn1">1</button>
<button id="btnClr">C</button>
<button id="btnEql">=</button>
<br>
<button class="operator" id="btnSum">+</button>
<button class="operator" id="btnSub">-</button>
<button class="operator" id="btnMul">×</button>
<button class="operator" id="btnDiv">÷</button>
</div>
</div>
<p>Made By ☣ Sammy</p>
<!-- Javascript -->
<script src="calci.js"></script>
</body>
</html>