-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.49 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!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">
<link rel="stylesheet" href="./public/css/style.css">
<link rel="shortcut icon" href="./public/img/logo.png" type="image/png">
<title>Quadratic Equation Solver</title>
</head>
<body>
<div class="container">
<h1></h1>
<div class="box1">
<div class="formula">
</div>
<div class="equation">
<form>
<div class="inputs">
<input type="number" id="a" class="inp" placeholder="a">x<sup>2</sup> +  
<input type="number" id="b" class="inp" placeholder="b">x +  
<input type="number" id="c" class="inp" placeholder="c"> =  0
</div>
<input type="submit" value="Find Roots" id="calculateBtn">
</form>
</div>
<div class="discriminant"></div>
<div class="resultGlowBox">
<div id="realUneq" class="glowBox"></div>
<div id="realEq" class="glowBox"></div>
<div id="unreal" class="glowBox"></div>
</div>
<div class="resultBox">
</div>
</div>
</div>
<script src="./public/js/main.js"></script>
</body>
</html>