-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.29 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
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body class="bg-gray-100">
<div class="container mx-auto p-6">
<label for="num-process">Enter the number of processes:</label>
<input type="number" id="num-process" min="1">
<br><br>
<label for="num-res">Enter the Types of resources:</label>
<input type="number" id="num-res" min="1">
<br>
<button type="button" onclick="getmatrix()" id="btn1">Resource-instances</button>
<br>
<table id="total-res">
</table>
<p id="p1"></p>
<table id="allocation">
</table>
<p id="p2"></p>
<table id="max">
</table>
<p id="p3"></p>
<table id="need"></table>
<p id="p4"></p>
<p id="p5"></p>
<h2 id="p6"></h2>
<!-- <hr> -->
<p id="p7"></p>
<p id="p8"></p>
<p id="p9"></p>
</div>
<script src="./script.js"></script>
</body>
</html>