forked from 0xvashishth/CalcHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (72 loc) · 2.24 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Matrix Calculator</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<center>
<h2>Matrix Adjoint and Inverse Calculator</h2>
<div class="matrixform">
<p>ENTER THE MATRIX </p>
<br>
<input id="num11" type="number" name="" placeholder="0" >
<input id="num12" type="number" name="" placeholder="0" >
<input id="num13" type="number" name="" placeholder="0" >
<br>
<input id="num21" type="number" name="" placeholder="0" >
<input id="num22"type="number" name="" placeholder="0" >
<input id="num23" type="number" name="" placeholder="0" >
<br>
<input id="num31" type="number" name="" placeholder="0" >
<input id="num32" type="number" name="" placeholder="0" >
<input id="num33" type="number" name="" placeholder="0" >
<br>
<button id = "bts">Calculate</button>
</div>
<div class="box">
<div class="result">
<br>
<h3>Result </h3>
<div id="det"></div>
<hr>
<br>
<br>
<br>
<div id="adj"></div>
<br>
<p class="block" id="a1"></p>
<p class="block" id="a2"></p>
<p class="block" id="a3"></p>
<br>
<p class="block" id="a4"></p>
<p class="block" id="a5"></p>
<p class="block" id="a6"></p>
<br>
<p class="block" id="a7"></p>
<p class="block" id="a8"></p>
<p class="block" id="a9"></p>
<hr>
<br>
<br>
<div id="inv"></div>
<p class="block" id="1"></p>
<p class="block" id="2"></p>
<p class="block" id="3"></p>
<br>
<p class="block" id="4"></p>
<p class="block" id="5"></p>
<p class="block" id="6"></p>
<br>
<p class="block" id="7"></p>
<p class="block" id="8"></p>
<p class="block" id="9"></p>
</div>
</div>
</center>
<script src="./scripts/main.js"></script>
</body>
</html>