-
Notifications
You must be signed in to change notification settings - Fork 0
/
math.html
84 lines (82 loc) · 3.1 KB
/
math.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./src/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mafs</title>
</head>
<body>
<nav class="navbar">
<img src="./src/public/shlepa.jpg" width="60" height="60" alt="flepa">
<div style="margin: auto">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="video.html">Video</a></li>
<li><a href="audio.html">Music</a></li>
<li><a href="books.html">Book</a></li>
<li class="work"><a href="#">Work ▽</a>
<ul>
<li><a href="form.html">Form</a></li>
<li><a href="math.html">Math</a></li>
<li><a href="api.html">API</li>
</ul>
</li>
<li><a href="https://ku.edu.kz">Entry</a></li>
</ul>
</div>
<div class="burger" id="burger2">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<main class ="math">
<form>
<fieldset>
<legend>Calculation</legend>
<div class="counters">
<div>
<label for="first">First<br>number</label>
<input type ="number" id="first" name="first" placeholder="0">
</div>
<div>
<label for="second">Second<br>number</label>
<input type ="number" id="second" name="second" placeholder="0">
</div>
</div>
<div class="butcont">
<button id="butplus" >+</button>
<button id="butminus" >-</button>
<button id="butmult" >*</button>
<button id="butdiv" >/</button>
</div>
<p><span id ="result">0.00</span></p>
</fieldset>
<fieldset>
<div class="counters">
<div>
<label for="variable">Variable</label>
<input type ="number" id="variable" name="variable" placeholder="0">
</div>
<div>
<label for="value">Value</label>
<p><span id ="value">0.00</span></p>
</div>
</div>
<div class="butcont">
<button id="butsin" >sin()</button>
<button id="butcos" >cos()</button>
<button id="buttg" >tg()</button>
<button id="butctg" >ctg()</button>
</div>
</fieldset>
</form>
</main>
<footer>
<a href="http://youtube.com"><img width="60px" src="./src/public/Youtube_logo.png"></a>
<a href="https://github.com/SoB1nary/site"><img src="./src/public/GitHub-Mark-ea2971cee799.png" width="60px"></a>
</footer>
<script src="./js/scripts.js"></script>
</body>
</html>