forked from Mostafa-Ghafourian/Mostafa-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
32 lines (32 loc) · 1.04 KB
/
index.htm
File metadata and controls
32 lines (32 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style.css">
<title>Cslculator</title>
</head>
<body>
<div id="div">
<input type="text" id="input">
<br>
<button id="b1">1</button>
<button id="b2">2</button>
<button id="b3">3</button>
<button id="remover1">R</button>
<button id="b4">4</button>
<button id="b5">5</button>
<button id="b6">6</button>
<button id="clear">C</button>
<button id="b7">7</button>
<button id="b8">8</button>
<button id="b9">9</button>
<button id="b0">0</button>
<br>
<button id="bj"><span class="icon">+</span></button>
<button id="bta">-</button>
<button id="bz">*</button>
<button id="bt">/</button>
<button id="bm">=</button>
</div>
<script src="./app.js"></script>
</body>
</html>