-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmathfunction.html
More file actions
90 lines (78 loc) · 3.08 KB
/
mathfunction.html
File metadata and controls
90 lines (78 loc) · 3.08 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
84
85
86
87
88
89
90
<!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>MathFunction</title>
<link rel="stylesheet" href="./style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" rel="stylesheet">
<link rel="icon" href="./images/MathFunction.jpg" />
</head>
<body>
<!--header-->
<div class="header" >
<div class="button">
<button class="nav-btn open-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="logo1">
<img src="./images/logo.png" class="logo1">
</div>
<div class="toggle">
<i class="fa-solid fa-moon toggle-icon"></i>
<i class="fa-solid fa-sun toggle-icon"></i>
<div class="toggle-ball"></div>
</div>
</div>
<main class="mainBG" id="mainBG">
<div class="box">
<div class="math-info1">
<h3>Enter your problem here</h3>
</div>
<form id="form" class="form">
<input type="text" id="search-mathfun" class="search" placeholder="Search">
<button type="button" class="btn" onclick="function_math()"><i class="fa-solid fa-magnifying-glass"></i></button>
</form>
<div class="answer" id="answer-mathfun">Answer<br></div>
<div>
<p>
Other math functions like log, min, max, factorials,absolute value and many more can also be calculated.<br>
Write your question in the searchbar in the below format. <br>
Ex. log(e^2) || Answer = 2 <br>
Ex. min(5, 2, 11) || Answer = 2 <br>
Ex. max(5, 2, 11) || Answer = 11 <br>
Ex. factorial(5) || Answer = 120 <br>
Ex. abs(-x) || Answer = abs(x) <br>
</p>
</div>
</div>
</main>
<!--sidebar-->
<div class="nav nav-black">
<div class="nav nav-red">
<div class="nav nav-white">
<img
src="./images/logo.png"
alt="Logo" class="logo">
<button class="nav-btn close-btn">
<i class="fas fa-times"></i>
</button>
<ul class="list">
<li><a href="./index.html">Home</a></li>
<li><a href="./calculator.html">Calculator</a></li>
<li><a href="./trigo.html">Trigonometry</a></li>
<li><a href="./formulae.html">Formulae</a></li>
<li><a href="./calculus.html">Calculus</a></li>
<li><a href="./algebra.html">Algebra</a></li>
<li><a href="./matrix.html">Matrix</a></li>
<li><a href="./mathfunction.html">Math Functions</a></li>
</ul>
</div>
</div>
</div>
<script src="./all.min.js"></script>
<script src="./script.js"></script>
</body>
</html>