-
Notifications
You must be signed in to change notification settings - Fork 1
/
Index.html
27 lines (27 loc) · 1021 Bytes
/
Index.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
<!DOCTYPE HTML>
<meta charset="UTF-8">
<html>
<head>
<title>NanoQES-JS</title>
<link rel="stylesheet" href="Style.css">
<script src="Main.js"></script>
<script src="Lang.js"></script>
</head>
<body>
<div id="line"></div>
<div id="uimain">
<div id="solved" class="text"></div>
<div id="info" class="text">NanoQES-JS v1.1.0 by <a id="gitlink" href="https://github.com/MasterDevX/">MasterDevX</a></div>
<div id="btneng" class="btnlng" onclick="SetENG()">ENG</div>
<div id="btnukr" class="btnlng" onclick="SetUKR()">UKR</div><br><br>
<div id="inside"><p class="text" id="equationview">ax²+bx+c=0</p></div>
<label class="text" id="label_a"></label><br>
<input id="input_a" type="number"><br>
<label class="text" id="label_b"></label><br>
<input id="input_b" type="number"><br>
<label class="text" id="label_c"></label><br>
<input id="input_c" type="number"><br><br>
<div id="solvebutton" onclick="SolveEquation()"></div>
</div>
</body>
</html>