-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 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
45
46
47
48
49
<!DOCTYPE html>
</div>
<head>
<link href = "css.css?ver=20" rel = "stylesheet">
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
<meta charset="utf-8">
</head>
<body>
<title = "Scheduling - 5"></title>
<h id = "header">Scheduling simulator</h>
<table>
<tr>
<th id = "gantt" width = "700px" height = "50px" colspan="2">
<h>Gantt chart</h>
</th>
</tr>
<tr>
<!-- Chart -->
<td width = "500px" height = "300px">
<div id = "ganttArea" style="overflow-y:auto;height:100%;text-align:left;">
<div id = "ganttIn"></div>
<div id = 'ganttInFlag'></div>
</td>
<!-- Input -->
<td rowspan="2" height = '200px' >
<div id = "inputArea" style="overflow-y:auto;height:100%">
</div>
</td>
</tr>
<tr>
<!-- Output -->
<td height = "200px">
<div id = 'outputArea'>
</div>
</td>
</tr>
</table>
<input type = "number" id = "processes" placeholder="processes">
<input type = "button" id = "processesButton" value = "Input">
</body>
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous"></script>
<script src="js.js?ver=20"></script>
</html>