-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (83 loc) · 2.69 KB
/
index.html
File metadata and controls
83 lines (83 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OnnCalculator - Shoelaze Media Team</title>
<link rel="icon" type="image/x-icon" href="/favicon.png" />
<div id="cookie" class="cookie">
<img src="cooki.png" alt="Cookie Icon" class="cicon" />
<h5>Cookie Consent</h5>
<p>This Website Uses Cookies To Enhance Your Experience</p>
<button onclick="ca()">Accept</button>
<button onclick="cd()">Decline</button>
<button onclick="cooki()">View Cookie Policy</button>
</div>
<!--bootstrap-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<!--css-->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="calculator">
<input id="userInput" placeholder="0" />
<br />
<button class="btn" onclick="press(1)">1</button>
<button class="btn" onclick="press(2)">2</button>
<button class="btn" onclick="press(3)">3</button>
<button
style="background-color: #ffb84d"
class="btn"
onclick="press('+')"
>
+
</button>
<br />
<button class="btn" onclick="press(4)">4</button>
<button class="btn" onclick="press(5)">5</button>
<button class="btn" onclick="press(6)">6</button>
<button
style="background-color: #ffee80"
class="btn"
onclick="press('-')"
>
-
</button>
<br />
<button class="btn" onclick="press(7)">7</button>
<button class="btn" onclick="press(8)">8</button>
<button class="btn" onclick="press(9)">9</button>
<button
style="background-color: #ffe0b3"
class="btn"
onclick="press('*')"
>
*
</button>
<br />
<button class="btn" onclick="press('.')">.</button>
<button class="btn" onclick="press(0)">0</button>
<button class="btn" onclick="erase()">C</button>
<button class="btn" onclick="location.assign('extra.html')">EF</button>
<button
style="background-color: #fff5e6"
class="btn"
onclick="press('/')"
>
/
</button>
<br />
<button class="btnEqual" onclick="equal()">=</button>
</div>
</div>
<!--JS-->
<script src="script.js"></script>
</body>
</html>