-
Notifications
You must be signed in to change notification settings - Fork 0
/
fifo2.html
40 lines (32 loc) · 1.47 KB
/
fifo2.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
<!DOCTYPE html>
<div class="TextSim">
<div>
<h2>
Simulation OF First In First Out :-
</h2>
<div>
</div>
</div>
<div>
<div id="Simulation">
<div id="algo">
<div class="container">
<div>
<strong>Reference String:</strong>
<input class="input" type="text" placeholder="Ex: 2 4 5 6 2 6" id="input">
</div>
<div>
<strong>Frames:</strong> <input class="input" type="number" id="frames" placeholder="Ex: 2 " style="width: 10%;" min=1>
</div>
<div>
<button class="input" id="submit">Show Output</button>
<button class="btn1" class="input" id="submit" onClick=reset()>Reset</button>
</div>
<div>
<table id="table" class="container text-center">
</table>
<div id="summary" class="d-flex justify-content-around font-weight-bold text-uppercase"> </div>
</div>
</div>
</div>
</html>