forked from facn5/ObaydaHananCl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.43 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">
<title>Calculator</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<body>
<div class="calc">
<div><h2 id="title">HananObaydahCal</h2></div>
<div class="window"></div>
<div class="buttons">
<button class="btn ce">CE</button>
<button class="btn" id="square">^</button>
<button class="btn" id="divide">÷</button>
<button class="btn" >7</button>
<button class="btn" >8</button>
<button class="btn" >9</button>
<button class="btn" id="multiply">×</button>
<button class="btn" >4</button>
<button class="btn">5</button>
<button class="btn">6</button>
<button class="btn" id="plus">+</button>
<button class="btn">1</button>
<button class="btn">2</button>
<button class="btn">3</button>
<button class="btn" id="minus">-</button>
<button class="btn">0</button>
<button class="btn">.</button>
<button class="btn" id="equals">=</button>
</div>
</div>
</body>
<script src="app.js"></script>
</html>