-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cal-1.html
85 lines (77 loc) · 3.76 KB
/
Cal-1.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="Images\icons8-math-96.png">
<link rel="stylesheet" href="Css\Cal-1.css">
<title>Scientific Calculator</title>
</head>
<body>
<div class="peel-off"></div>
<button id="popupBtn" class="popup-button">License</button>
<div id="popupOverlay" class="popup-overlay">
<div class="popup-content">
<img src="Images\3D Black.png" alt="Company Logo" class="popup-logo">
<h2>All rights reserved.</h2><br>
<p id="PL">This software is licensed under strict terms. Redistribution and use in source and binary forms, with or without modification, are strictly prohibited without express written permission from Chaudhary Abdul Rafay.</p><br>
<p>© 2024 AbdulRafay Chaudhry. </p>
<button id="closeBtn" class="close-button">Close</button>
</div>
</div>
<div class="tco">
<center>
<div class="tcon">
<div class="theme-selector">
<div class="theme-circle theme1" data-theme="Cal-1"></div>
<div class="theme-circle theme2" data-theme="Cal-2"></div>
<div class="theme-circle theme3" data-theme="Cal-3"></div>
<div class="theme-circle theme4" data-theme="Cal-4"></div>
</div>
<div class="calculator">
<div class="display">
<input type="text" id="inputbox" value="0" placeholder="0" disabled>
</div>
<div class="row">
<button type="button" class="opr">AC</button>
<button type="button" class="opr">DEL</button>
<button type="button" class="opr">%</button>
<button type="button" class="opr">/</button>
<button type="button" id="sin" class="sci">sin</button>
</div>
<div class="row">
<button type="button">7</button>
<button type="button">8</button>
<button type="button">9</button>
<button type="button" class="opr">*</button>
<button type="button" id="cos" class="sci">cos</button>
</div>
<div class="row">
<button type="button">4</button>
<button type="button">5</button>
<button type="button">6</button>
<button type="button" class="opr">+</button>
<button type="button" id="tan" class="sci">tan</button>
</div>
<div class="row">
<button type="button">1</button>
<button type="button">2</button>
<button type="button">3</button>
<button type="button" class="opr">-</button>
<button type="button" id="log" class="sci">log</button>
</div>
<div class="row">
<button type="button" id="plusMinus">±</button>
<button type="button">0</button>
<button type="button">.</button>
<button type="button" id="eqBtn">=</button>
<button type="button" id="sqrt" class="sci">√</button>
</div>
</div>
</div>
</center>
</div>
<div class="peel-off"></div>
<script src="JavaScript\app.js"></script>
</body>
</html>