-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div id="calculator">
<h3>Calculator</h3>
<input type="text" name="output-2" id="output-2">
<input type="text" name="output-1" id="output-1">
<input type="button" value="±" class="plusminus button">
<input type="button" value="C" class="Clean button">
<input type="button" value="CE" class="backspace button">
<input type="button" value="÷" class="division button">
<input type="button" value="₪⇒$" class="trans button">
<input type="button" value="7" class="_7 button">
<input type="button" value="8" class="_8 button">
<input type="button" value="9" class="_9 button">
<input type="button" value="×" class="multiplication button">
<input type="button" value="$⇒₪" class="trans button">
<input type="button" value="4" class="button _4">
<input type="button" value="5" class="button _5">
<input type="button" value="6" class="button _6">
<input type="button" value="−" class="button subtraction">
<input type="button" value="₪⇒€" class="trans button">
<input type="button" value="1" class="button _1">
<input type="button" value="2" class="button _2">
<input type="button" value="3" class="button _3">
<input type="button" value="+" class="button Addition">
<input type="button" value="€⇒₪" class="trans button">
<input type="button" value="." class="button _dot">
<input type="button" value="0" class="button _0">
<input type="button" value="=" class="button result">
</div>
</div>
<script src="index3.js"></script>
</body>
</html>