-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.57 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculator Project</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
<link rel="icon" href="ficon.png" />
</head>
<body>
<div>
<div>
<div id="clmns">
<div id="rws">
<div>
<div class="btns">
<div>
<input type="text" name="disp" id="dis" disabled />
</div>
<div>
<button id="bn7" class="n" value="7">7</button
><button id="bn8" class="n" value="8">8</button
><button id="bn9" class="n" value="9">9</button>
</div>
<div>
<button id="bn4" class="n" value="4">4</button
><button id="bn5" class="n" value="5">5</button
><button id="bn6" class="n" value="6">6</button>
</div>
<div>
<button id="bn1" class="n" value="1">1</button
><button id="bn2" class="n" value="2">2</button
><button id="bn3" class="n" value="3">3</button>
</div>
<div>
<button id="bn0" class="n" value="0">0</button
><button id="dot" class="n dec" value=".">.</button
><button id="clear" class="n AC" value="AC">AC</button>
</div>
<div>
<button id="eq" class="" value="eq">=</button>
</div>
</div>
</div>
<div class="btns">
<p id="resP1"></p>
<button id="opA" class="n n2 opera" value="+">+</button
><button id="opS" class="n n2 opera" value="-">-</button
><button id="opM" class="n n2 opera" value="*">*</button>
<button id="opD" class="n n2 opera" value="÷">÷</button>
</div>
<div class="btns">
<p id="resP2"></p>
<button id="shToD" class="n2 cnvbtns" value="">NIS to $</button
><button id="DtoSh" class="n2 cnvbtns" value="">$ to NIS</button
><button id="shToE" class="n2 cnvbtns" value="">
NIS to Euro
</button>
<button id="EtoSh" class="n2 cnvbtns" value="">
Euro to NIS
</button>
</div>
</div>
</div>
</div>
</div>
<script src="calc.js"></script>
</body>
</html>