-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.html
560 lines (509 loc) · 42 KB
/
about.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OS Virtual Lab</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/about.css" type="text/css">
<!-- Footer -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/about.css">
<link rel="shortcut icon" type="image/png" href="images/website_logo1.png">
</head>
<body>
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img id="logo" src="images/website_logo1.png" alt="logo">
<div class="hover-border">OS Virtual Lab</div>
</a>
<div class="divider"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">
<div class="hover-border">Home</div>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Algorithms
</a>
<ul class="dropdown-menu dropdown-menu-dark " aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="pagereplacement_index.html">Page Replacement</a></li>
<li><a class="dropdown-item" href="diskscheduling_index.html">Disk Scheduling</a></li>
<li><a class="dropdown-item" href="#">CPU Scheduling</a></li>
<li><a class="dropdown-item" href="#">Concurrency</a></li>
</ul>
</li>
</ul>
<div class="d-flex">
<div class="dropdown">
<input id="search-input" class="form-control me-2 dropdown-toggle" data-bs-toggle="dropdown"
aria-expanded="false" placeholder="Type to search...">
<ul id="suggestions" class="dropdown-menu dropdown-menu-dark" aria-labelledby="search-button">
</ul>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
class="bi bi-search" viewBox="0 0 16 16" style="position: absolute; right: 15px;">
<path
d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" />
</svg>
</div>
</div>
</div>
</div>
</nav>
<div class="container1">
<img src="images/about_bg.jpg" style="width: 100vw; height: 100vh;" class="img1" alt="image" />
<div class="text1">
<div style="height: 60px; margin-bottom: 15px;">
<span class="t1 type-writer" data-wait="2000" data-words='["About Developers"]'
style="position: relative;">
</span>
</div>
<p class="t2">
<b>This OS Virtual Lab Website is made by PDEU students.
Each module is developed by a different team. Uptil now two modules i.e. Page Replacement
Algorithms
and Disk Scheduling Algorithms have been developed.</b>
</p>
<p>
<h5><b>Technologies Used:</b></h5>
</p>
<div class="buttons1">
<button type="button" class="btn btn-dark">HTML</button>
<button type="button" class="btn btn-dark">CSS</button>
<button type="button" class="btn btn-dark">JavaScript</button>
<button type="button" class="btn btn-dark">Bootstrap</button>
</div>
</p>
</div>
</div>
<div class="container mb-5 mt-5">
<div class="team">
Team For Disk Scheduling Algorithms
</div>
<div class="row">
<!--Card #1 -->
<div class="col-md-3" data-aos="fade-right" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/HS.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Hansal Shah
<br><br>
</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/HansalShah007" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="http://linkedin.com/in/hansalms" target="_blank" style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!--Card #2 -->
<div class="col-md-3" data-aos="fade-down" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/JP.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Jainil Patel
<br><br>
</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/Jainil102" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="https://www.linkedin.com/in/jainil-patel-453a071aa/" target="_blank"
style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!--Card #3 -->
<div class="col-md-3" data-aos="fade-up" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/DM.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Divyansh Mahida
</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/DivyanshMahida127 " target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="https://www.linkedin.com/in/divyansh-mahida-77670a1b7" target="_blank"
style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!--Card #4 -->
<div class="col-md-3" data-aos="fade-down" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/DJ.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Divyansh Jain
<br><br>
</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/DivyanshJain92" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="https://www.linkedin.com/in/DivyanshJain92/" target="_blank" style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!--Card #5 -->
<div class="col-md-3" data-aos="fade-left" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/RS.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Rushabh Shah
<br><br>
</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/rushabhshah07" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="https://www.linkedin.com/in/rushabh-shah-5a1a7018b/" target="_blank"
style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br>
<div class="container mb-5 mt-5">
<div class="team">
Team For Page Replacement Algorithms
</div>
<div class="row">
<!--Card #1 -->
<div class="col-md-3" data-aos="fade-right" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/image.jpeg" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Darshan Patel</h4>
<div style="margin-bottom: 15px;">
<a href="" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="" target="_blank" style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!--Card #2 -->
<div class="col-md-3" data-aos="fade-up" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/KK.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Kunal Kataria</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/kkataria3010" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="https://www.linkedin.com/in/kunal-k-76421b136/" target="_blank"
style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!--Card #3 -->
<div class="col-md-3" data-aos="fade-down" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/NY.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Neel Yadav</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/neelriteshyadav" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="https://www.linkedin.com/in/neelriteshyadav/
" target="_blank" style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!--Card #4 -->
<div class="col-md-3" data-aos="fade-left" data-aos-anchor-placement="top-bottom" data-aos-duration="1500">
<div class="card mt-3 h-100" style="width: 11.5rem; height: 18rem;">
<div class="align-items-center text-center">
<img src="images/AS.png" class="round" width="160">
<h4 class="card-title fw-bold fw-bold fw-bold" style="margin-top: 20px;">Aashil Shah</h4>
<div style="margin-bottom: 15px;">
<a href="https://github.com/Aashil0828" target="_blank" style="margin: 15px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
<a href="https://www.linkedin.com/in/aashil-shah-8360a0210" target="_blank"
style="margin: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="black"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="foooter">
<div class="footer-dark">
<footer>
<div id="footer-container" class="footercontainer">
<div class="footerflex-1">
<div class="footerrow">
<!-- First Panel -->
<div class="footerpanel-group" id="accordion">
<div class="panel panel-default" id="footerpanel">
<div class="footerpanel-heading">
<h4 class="footerpanel-title accordion-button" data-bs-toggle="collapse"
data-bs-target="#collapseOne,#collapseTwo,#collapseThree,#collapseFour,#collapseFive"
aria-expanded="false" aria-controls="collapseOne">OS Virtual Lab
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse" aria-labelledby="headingOne"
data-bs-parent="#accordion">
<div class="footercontent">
<ul style="list-style-type: none;">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="pagereplacement_index.html">Page Replacement</a></li>
<li><a href="diskscheduling_index.html">Disk Scheduling</a></li>
<li><a href="#CpuScheduling">CPU Scheduling</a></li>
<li><a href="#Concurrency">Concurrency</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Second Panel -->
<div class="footerpanel-group" id="accordion">
<div class="panel panel-default" id="footerpanel">
<div class="footerpanel-heading">
<h4 class="footerpanel-title accordion-button" data-bs-toggle="collapse"
data-bs-target="#collapseOne,#collapseTwo,#collapseThree,#collapseFour,#collapseFive"
aria-expanded="false" aria-controls="collapseOne">Page Replacement
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" aria-labelledby="headingOne"
data-bs-parent="#accordion">
<div class="footercontent">
<ul style="list-style-type: none;">
<li><a href="fifo.html">FIFO</a></li>
<li><a href="lifo.html">LIFO</a></li>
<li><a href="lru.html">LRU</a></li>
<li><a href="optimal.html">OPTIMAL</a></li>
<li><a href="random.html">RANDOM</a></li>
<li><a href="belady.html">BELADY</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Third Panel -->
<div class="footerpanel-group" id="accordion">
<div class="panel panel-default" id="footerpanel">
<div class="footerpanel-heading">
<h4 class="footerpanel-title accordion-button" data-bs-toggle="collapse"
data-bs-target="#collapseOne,#collapseTwo,#collapseThree,#collapseFour,#collapseFive"
aria-expanded="false" aria-controls="collapseOne">Disc Scheduling
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" aria-labelledby="headingOne"
data-bs-parent="#accordion">
<div class="footercontent">
<ul style="list-style-type: none;">
<li><a href="fcfs.html">FCFS</a></li>
<li><a href="sstf.html">SSTF</a></li>
<li><a href="scan.html">SCAN</a></li>
<li><a href="cscan.html">C-SCAN</a></li>
<li><a href="look.html">LOOK</a></li>
<li><a href="clook.html">C-LOOK</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Fourth Panel -->
<div class="footerpanel-group" id="accordion">
<div class="panel panel-default" id="footerpanel">
<div class="footerpanel-heading">
<h4 class="footerpanel-title accordion-button" data-bs-toggle="collapse"
data-bs-target="#collapseOne,#collapseTwo,#collapseThree,#collapseFour,#collapseFive"
aria-expanded="false" aria-controls="collapseOne">CPU Scheduling
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" aria-labelledby="headingOne"
data-bs-parent="#accordion">
<div class="footercontent">
<ul style="list-style-type: none;">
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Fifth Panel -->
<div class="footerpanel-group" id="accordion">
<div class="panel panel-default" id="footerpanel">
<div class="footerpanel-heading">
<h4 class="footerpanel-title accordion-button" data-bs-toggle="collapse"
data-bs-target="#collapseOne,#collapseTwo,#collapseThree,#collapseFour,#collapseFive"
aria-expanded="false" aria-controls="collapseOne">Concurrency
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse" aria-labelledby="headingOne"
data-bs-parent="#accordion">
<div class="footercontent">
<ul style="list-style-type: none;">
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="padding-top: 10px; width: 100%; display: flex; align-items: center; justify-content: center;">
<span style="margin: 20px;">
<a href="https://github.com/HansalShah007/osvirtuallab" target="_blank"
style="margin: 10px;"><svg xmlns="http://www.w3.org/2000/svg" width="35" height="35"
fill="white" class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg></a>
<a href="https://www.youtube.com/watch?v=JBle9-W1g8M&t=369s" target="_blank" style="margin: 10px;"><svg xmlns="http://www.w3.org/2000/svg"
width="35" height="35" fill="white" class="bi bi-youtube" viewBox="0 0 16 16">
<path
d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z" />
</svg></a>
</span>
<span style="font-size: 2.5rem; margin: 20px 0px 20px 0px; ">|</span>
<span class="copyright" style="margin: 20px; display: flex; justify-content: center; align-items: center; padding: 0px;">OS Project © Team 15</span>
</div>
</div>
</footer>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="js/search.js"></script>
<script src="js/typewriter.js"></script>
</body>
</html>