-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (80 loc) · 5.42 KB
/
index.html
File metadata and controls
113 lines (80 loc) · 5.42 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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 class="wrappe">
<div class="cal">
<h4 id="display">
</h4>
<div class="numberPad">
<div class="numberOparatort1">
<button class="c" onclick="feraser()">
<p>C</p>
</button>
<button class="c" onclick="minus()">
<p>+/-</p>
</button>
<button class="c" onclick="precentage()">
<p>%</p>
</button>
<button class="D" onclick="divi() ">
<p>/</p>
</button>
<button class="Numb" onclick="fn7()">
<p>7</p>
</button>
<button class="Numb" onclick="fn8()">
<p>8</p>
<button class="Numb" onclick="fn9()">
<p>9</p>
</button>
<button class="D" onclick="multi()">
<p>×</p>
</button>
<button class="Numb" onclick="fn4()">
<p>4</p>
</button>
<button class="Numb" onclick="fn5()">
<p>5</p>
</button>
<button class="Numb" onclick="fn6()">
<p>6</p>
</button>
<button class="D" onclick="min()">
<p>-</p>
</button>
<button class="Numb" onclick="fn1()">
<p>1</p>
</button>
<button class="Numb" onclick="fn2()">
<p>2</p>
</button>
<button class="Numb" onclick="fn3()">
<p>3</p>
</button>
<button class="D" onclick="addition()">
<p>+</p>
</button>
</div>
<div class="numberOparatort2">
<button class="Numb1" id="fn0" onclick="fn0()">
0
</button>
<button class="Numb">
<p>.</p>
</button>
<button class="D" onclick="eq() ">
<p>=</p>
</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>