-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinary.html
More file actions
90 lines (85 loc) · 4.65 KB
/
Copy pathbinary.html
File metadata and controls
90 lines (85 loc) · 4.65 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<title>Operating System Lab</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lexend&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="css/master.css">
<link rel="stylesheet" href="css/binary.css">
<link rel="icon" href="images/fevicon1.png">
</head>
<body>
<nav class="navbar navbar-dark fixed-top">
<a class="navbar-brand" href="index.html">
<img src="images/logof.png" width="35" height="30" class="d-inline-block align-top" alt="" loading="lazy">
Operating System Lab
</a>
<div class="navbar">
<li class="nav-link"><a href="index.html#HOME">HOME</a></li>
<li class="nav-link"><a href="algo.html">ALGORITHMS</a></li>
<li class="nav-link"><a href="team.html">OUR TEAM</a></li>
</div>
</nav>
<!--input-->
<div class="container mt-5 pt-5" id='process_input'>
<h2 class="c">
BINARY SEMAPHORE
</h2>
<label for="process">No. of Process:</label>
<div class="wrap-input100">
<input class="input100" type="number" id="process" placeholder="Enter the number of process">
<span class="focus-input100"></span>
</div>
</div>
<!--submit-->
<div class = 'container'>
<center><button class="bTop submit algo" onclick = "lockvari()">
<span>
SUBMIT
</span>
</button></center>
</div>
<!--table-->
<div class="contact100-form-title pt-3 pb-0" id = 'lock_state'></div>
<div class="contact100-form-title pt-3 pb-0" id = 'added_head'>Added state:</div>
<section class='border border-white'>
<div class = 'container pl-4' id='added'></div>
</section>
<div class="contact100-form-title pt-3 pb-0" id = 'entry_head'>Entry state:</div>
<section class='border border-white'>
<div class = 'container pl-4' id='entry'></div>
</section>
<div class="contact100-form-title pt-3 pb-0" id = 'cs_head'>Cs State:</div>
<section class='border border-white'>
<div class = 'container pl-4' id='cs'></div>
</section>
<div class="contact100-form-title pt-3 pb-0" id = 'exit_head'>Exit State:</div>
<section class='border border-white'>
<div class = 'container pl-4' id='exit'></div>
</section>
<div class="contact100-form-title pt-3 pb-0"></div>
<div class = 'continer pl-4'></div>
</section>
<!--button-->
<div class = 'continer pl-4' id='process_button'>
<section>
<center><section class="buttons" >
<a class="Top algo" href="#top">BACK TO TOP</a>
</section></center>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>
<script src="js/scripts.js"></script>
<script src="js/binary.js"></script>
</body>
</html>