-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscientific_calc.html
41 lines (33 loc) · 1.25 KB
/
scientific_calc.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/sc_calc.css">
<script src="index.js" type="text/javascript"></script>
<title>Useful Calculator</title>
</head>
<body>
<!-- <img src="images/center_img.png" alt="" class="bg"> -->
<div class="sidebar"></div>
<div class="topnav" id="myTopnav">
</div>
<img src="images/health_icon.png" alt="" class="topnav_img"></img>
<div class="topnav_heading"><b>Useful Calculator</b>
</div>
<h1>Scientific</h1>
<h1 class="h1_clac">Calculator</h1>
<form>
<label class="label1">
<input type="text" placeholder="Number" style="margin-bottom:2vw;" id="num" />
</label>
</form>
<div class="answerbox" id="answerbox"></div>
<button class="cos" onclick="cos()">Cos</button>
<button class="sin" onclick="sin()">Sin</button>
<button class="log" onclick="log()">Log</button>
<button class="sqrt" onclick="sqrt()">Square root</button>
<a href="index.html"><img src="images/bmi.png" alt="" class="bmi_img"></a>
<a href="scientific_calc.html"><img src="images/s_calc.png" alt="s_calc" class="s_calc"></a>
</body>
</html>