-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsin.html
86 lines (80 loc) · 3.26 KB
/
sin.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
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Calculator </title>
<link rel="stylesheet" href="sin.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="head">
<nav>
<div class="menu">
<input type="checkbox" id="check">
<div class="logo"><a href="#">The Calculator</a></div>
<ul>
<label class="btn cancel" for="check"><i class="fas fa-times"></i></label>
<li><a href="index.html">Home</a></li>
<li><a href="basic.html">Basic</a></li>
<li><a href="sin.html">Scientific</a></li>
<li><a href="#">Age</a></li>
<li><a href="#">Tip</a></li>
<li><a href="https://github.com/naemazam/The-Calculator">Github</a></li>
</ul>
<label for="check" class="btn bars"><i class="fas fa-bars"></i></label>
</div>
</div>
</nav>
<div class="container">
<div class="display">
<input id="screen" type="text" placeholder="0">
</div>
<div class="btns">
<div class="row">
<button id="ce" onclick="backspc()">CE</button>
<button onclick="fact()">x!</button>
<button class="btn">(</button>
<button class="btn">)</button>
<button class="btn">%</button>
<button id="ac" onclick="screen.value=''">AC</button>
</div>
<div class="row">
<button onclick="sin()">sin</button>
<button onclick="pi()">π</button>
<button class="btn">7</button>
<button class="btn">8</button>
<button class="btn">9</button>
<button class="btn">÷</button>
</div>
<div class="row">
<button onclick="cos()">cos</button>
<button onclick="log()">log</button>
<button class="btn">4</button>
<button class="btn">5</button>
<button class="btn">6</button>
<button class="btn">×</button>
</div>
<div class="row">
<button onclick="tan()">tan</button>
<button onclick="sqrt()">√</button>
<button class="btn">1</button>
<button class="btn">2</button>
<button class="btn">3</button>
<button class="btn">-</button>
</div>
<div class="row">
<button onclick="e()">e</button>
<button onclick="pow()">x <sup>x</sup> </button>
<button class="btn">0</button>
<button class="btn">.</button>
<button id="eval" onclick="screen.value=eval(screen.value)">=</button>
<button class="btn">+</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>