-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcalc.html
More file actions
28 lines (28 loc) · 736 Bytes
/
calc.html
File metadata and controls
28 lines (28 loc) · 736 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="calc.css" />
</head>
<body>
<h1 class="container">Calculator</h1>
<div class="container">
<input id="no" />
<input id="no1" />
</div>
<div class="btn">
<button id="add" onclick="add()">Add</button>
<button id="sub" onclick="sub()">Substract</button>
<button id="divi" onclick="divi()">Divide</button>
</div>
<div class="btn">
<button id="multi" onclick="multi()">Multiply</button>
</div>
<div class="btn">
<p>Result:</p>
<p id="disp"></p>
</div>
</body>
<script src="calc.js" charset="utf-8"></script>
</html>