-
Notifications
You must be signed in to change notification settings - Fork 0
/
spark.html
25 lines (25 loc) · 908 Bytes
/
spark.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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matrix Multiplication Calculator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Matrix Multiplication Calculator</h1>
<div id="matrixInput">
<h2>Matrix A</h2>
<textarea id="matrixA" placeholder="Enter matrix A (e.g., [[1, 2], [3, 4]])"></textarea>
<h2>Matrix B</h2>
<textarea id="matrixB" placeholder="Enter matrix B (e.g., [[1, 2], [3, 4]])"></textarea>
<button onclick="multiplyMatrices()">Calculate</button>
<body style="background-color: lightblue;">
</div>
<div id="result"></div>
</div>
<script src="script.js"></script>
</body>
</html>