-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (39 loc) · 1.68 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>iOS | Calculator by Talhaoui</title>
<link href="/Images/Logo-IOS.png" rel="shortcut icon"/>
<link href="/Images/Logo-IOS.png" rel="apple-touch-icon"/>
</head>
<body oncontextmenu="return false">
<div class="container">
<div class="result">
<input id="input" disabled="disabled" value="0">
</div>
<div class="buttons">
<button class="item item1 clear ">AC</button>
<button class="item item1 sign">+/-</button>
<button class="item item1 persent ">%</button>
<button class="item item2 operation divide">÷</button>
<button class="item numbers ">7</button>
<button class="item numbers ">8</button>
<button class="item numbers ">9</button>
<button class="item item2 operation multiply">×</button>
<button class="item numbers ">4</button>
<button class="item numbers ">5</button>
<button class="item numbers ">6</button>
<button class="item item2 operation minus">-</button>
<button class="item numbers ">1</button>
<button class="item numbers ">2</button>
<button class="item numbers ">3</button>
<button class="item item2 operation plus">+</button>
<button class="item itemZero numbers ">0</button>
<button class="item comma ">,</button>
<button class="item item2 operation equal">=</button>
</div>
</div>
</body>
<script src="script.js">
</script>
</html>