-
Notifications
You must be signed in to change notification settings - Fork 1
/
Page1.html
45 lines (36 loc) · 1.3 KB
/
Page1.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
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<head>
<!-- CSS Files -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<!-- JavaScript Files -->
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/typeit.js"></script>
<script src="js/MVT.js"></script>
<script src="js/typed.js"></script>
<title>
Multiprogramming with Variable Number of Tasks
</title>
</head>
<body>
<div id = "data-input-content-1">
<h2 style="text-align: center"> Enter the following details: </h2> </br>
<form class = "form-horizontal">
<div class = "form-group">
<label class = "control-label col-sm-2" for = "memorySize"> Total Memory: </label>
<div class = "col-sm-4">
<input type = "number" class = "form-control" id = "memory" placeholder = "Enter total memory size in bytes" required min="1">
</div>
</div>
<div class = "form-group">
<button id = "input-memory-submit" value = "next" class = "btn btn-default" >Next</button>
</div>
</form>
</div>
</body>
</html>