-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Enter your matrix</h1>
<form>
<div class="equation">
<input type="number" name="x11" step="any" value="0">* x<sub>1</sub> +
<input type="number" name="x12" step="any" value="0">* x<sub>2</sub> +
<input type="number" name="x13" step="any" value="0">* x<sub>3</sub> =
<input type="number" name="result1" step="any" value="0">
</div>
<div class="equation">
<input type="number" name="x21" step="any" value="0">* x<sub>1</sub> +
<input type="number" name="x22" step="any" value="0">* x<sub>2</sub> +
<input type="number" name="x23" step="any" value="0">* x<sub>3</sub> =
<input type="number" name="result2" step="any" value="0">
</div>
<div class="equation">
<input type="number" name="x31" step="any" value="0">* x<sub>1</sub> +
<input type="number" name="x32" step="any" value="0">* x<sub>2</sub> +
<input type="number" name="x33" step="any" value="0">* x<sub>3</sub> =
<input type="number" name="result3" step="any" value="0">
</div>
</form>
<div class="buttons">
<button class="default-button">Default</button>
<button class="fillzero-button">Fill with 0</button>
<button class="submit-button">Submit</button>
</div>
<div class="resultsContainer">
<div class="gaus">
<h2>Gaus method</h2>
</div>
<div class="lu">
<h2>LU method</h2>
</div>
</div>
<div class="fail">
<h1 class="failText">Invalid matrix!!!</h1>
</div>
<script src="script.js"></script>
</body>
</html>