-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
31 lines (28 loc) · 873 Bytes
/
index.htm
File metadata and controls
31 lines (28 loc) · 873 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>matrixSolver</title>
<link rel="stylesheet" href="./src/css/style.css" />
<script type="module" src="./src/js/controller.js"></script>
</head>
<body>
<div class="App container">
<div class="stateBtns">
<button class="inverseBtn">Inverse</button>
</div>
<h1>Matrix Solver</h1>
<form>
<input class="inputNumRows" placeholder="Row" type="text" />
<input class="inputNumCols" placeholder="Col" type="text" />
</form>
<div class="userInputs">
<ul></ul>
</div>
<div class="solution"></div>
</div>
<button class="turnOnOfInverse"
style="position: absolute; bottom: 10px; left: 10px; border: 1px solid; padding: 2px 6px;">Inverse Of</button>
</body>
</html>