-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.html
47 lines (47 loc) · 1.58 KB
/
add.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Matrix Addition</title>
<link rel="stylesheet" href="add.css">
</head>
<body>
<div class="container">
<h1>Matrix Addition</h1>
<div class="matrix">
<h3>Matrix A</h3>
<div class="matrix-input">
<input type="number" id="A11" placeholder="0">
<input type="number" id="A12" placeholder="0">
<input type="number" id="A13" placeholder="0">
<input type="number" id="A21" placeholder="0">
<input type="number" id="A22" placeholder="0">
<input type="number" id="A23" placeholder="0">
<input type="number" id="A31" placeholder="0">
<input type="number" id="A32" placeholder="0">
<input type="number" id="A33" placeholder="0">
</div>
</div>
<div class="matrix">
<h3>Matrix B</h3>
<div class="matrix-input">
<input type="number" id="B11" placeholder="0">
<input type="number" id="B12" placeholder="0">
<input type="number" id="B13" placeholder="0">
<input type="number" id="B21" placeholder="0">
<input type="number" id="B22" placeholder="0">
<input type="number" id="B23" placeholder="0">
<input type="number" id="B31" placeholder="0">
<input type="number" id="B32" placeholder="0">
<input type="number" id="B33" placeholder="0">
</div>
</div>
<button onclick="addMatrices()">Add Matrices</button>
<div>
<h3>Result</h3>
<textarea id="result" readonly></textarea>
</div>
</div>
<script src="add.css"></script>
</body>
</html>