-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
122 lines (93 loc) · 3.89 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>OS-Lab</title>
<!-- favicon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!-- external css -->
<link rel="stylesheet" href="css/styles.css">
<!-- Java query for Navbar -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
<!-- Font awesome -->
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<section id="top">
<div class="padd">
<!-- navigation bar code -->
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark">
<div class="container-fluid">
<!-- company name and logo -->
<a class="navbar-brand" href="#">
<img class="title-img"src="logo.jpg" alt="" width="30" height="30" class="d-inline-block align-text-top">
<span class="title-logo">OS-LAB</span>
</a>
<!-- nav btn -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li>
<a class="nav-link active zoom" href="#">Home</a>
</li>
<li>
<a class="nav-link zoom" href="">About</a>
</li>
<li>
<a class="nav-link zoom" href="">Algorithm</a>
</li>
</ul>
</div>
</nav>
<!-- navigation bar code -->
</div>
</section>
<div class="one">
<img class="ospic1" src="one.jpg" alt="first-img">
<div class="innner">
<h1 class="title">Operation System-Lab</h1>
</div>
</div>
<section id="mid">
<h2>Page Replacement Algorithms</h2>
<div class="3algo">
<!-- <h2>Skills</h2> -->
<div class="row-algo">
<img class="fifo" src="fifo.png" >
<a href="fifo.html">
<h3>First In First Out</h3>
</a>
<p>This is the simplest page replacement algorithm. In this algorithm, the operating system keeps track of all pages in the memory in a queue, the oldest page is in the front of the queue. When a page needs to be replaced page in the front of the queue is selected for removal.</p>
</div>
<hr>
<div class="row-algo">
<img class="Opr" src="optimization.png" >
<a href="optimal.html">
<h3>Optimal Page Replacement</h3>
</a>
<p>In this algorithm, pages are replaced which would not be used for the longest duration of time in the future. </p>
</div>
<hr>
<div class="row-algo">
<img class="Lru" src="Screenshot (2050).png" >
<a href="lru.html">
<h3>Least Recently Used</h3>
<p>In this algorithm page will be replaced which is least recently used. </p>
</div>
</div>
<hr>
</section>
<footer id="last">
<h2>Virtual project created by:</h2>
<p>Kashyap Barot(19BIT059) | Aditya Bhatt(19BIT007) | Abhi Patel(19BIT003)</p>
<p>Darshit(19BIT023) | Dax(19BIT024) | Devdutt(19BIT027)</p>
</footer>
</body>
</html>