-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrigonmetry.html
74 lines (65 loc) · 2.9 KB
/
trigonmetry.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
<!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>Trigonometric Calculator</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./CSS/Trig.css">
<link rel="stylesheet" type="text/css" href="result.css">
<link rel="stylesheet" href="theme.css">
<link rel="icon" href="Image/Favicon.png">
</head>
<body>
<div class="calculator-name-header">
<span>Trigonometric Calculator</span>
</div>
<form id="calc" class="form-horizontal">
<label for="trig-calc">Tick your operations: </label><br><br>
<span class="checkbox-span">
<input type="checkbox" id="sin" name="sin" checked>
<label for="sin">sin</label>
</span>
<span class="checkbox-span">
<input type="checkbox" id="cos" name="cos">
<label for="cos">cos</label>
<spanv>
<span class="checkbox-span">
<input type="checkbox" id="tan" name="tan">
<label for="tan">tan</label>
</span>
<span class="checkbox-span">
<input type="checkbox" id="cosec" name="cosec">
<label for="cosec">cosec</label>
</span>
<span class="checkbox-span">
<input type="checkbox" id="sec" name="sec">
<label for="sec">sec</label>
</span>
<span class="checkbox-span">
<input type="checkbox" id="cot" name="cot">
<label for="cot">cot</label>
</span>
<br>
<br><br>
<select name="angle-type" id="angle-type">
<option value="degree" id="degree">Degree</option>
<option value="radian" id="radian">Radian</option>
</select>
<input type="number" name="angle" id="angle-value" placeholder="Angle Value"><br><br>
<button type="button" onclick="resetTrig()" id="calc1" class="button">Reset</button>
<button type="button" onclick="vallidateTrig()" class="button">Submit</button>
<br><br><br>
<div class="outterbox">
<div class="box"><span id="resultContainer"></span></div>
</div>
</form>
<a href="/home.html"><i id="home" class="fa fa-home" aria-hidden="true" style="font-size: 35px; text-decoration: none; color: aliceblue; text-align: end; "></i></a>
<script src="./Javascript/Bitwise.js"></script>
<script src="./Javascript/trigo.js"></script>
</body>
</html>